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