有可能得到每个
1)图层的类型(例如:卷积,InnerProduct,Data等)
2)C++中图层的顶部标签(例如ip1,ip2,conv1,conv2)?
我搜索了提供的示例,但找不到任何东西。目前我正在通过以下命令仅获取图层名称
cout << "Layer name:" << "'" << net_->layer_names()[layer_index]
我正在搜索一些命令,例如 net _-> layer_type
先感谢您!
最佳答案
Layer
类具有返回图层类型的公共(public)成员函数virtual const char *type()
。因此
cout << "Layer type: " << net_->layers()[layer_index]->type();
应该可以。
关于c++ - 如何在C++中获取图层类型Caffe,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46968475/