有可能得到每一个
1)层的类型(例如:卷积,内部产品,数据等)
2)c中的图层顶部标签(例如:ip1,ip2,conv1,conv2)?
我搜索了提供的示例,但我找不到任何东西.目前,我只能通过以下命令获取图层名称
cout << "Layer name:" << "'" << net_->layer_names()[layer_index]
我正在寻找像net _-> layer_type这样的命令
先感谢您!
最佳答案 Layer类有一个公共成员函数virtual const char * type()返回图层类型.于是
cout << "Layer type: " << net_->layers()[layer_index]->type();
应该做的伎俩.