首页 > 代码库 > 【caffe Net】使用举例和代码中文注释
【caffe Net】使用举例和代码中文注释
首先是Net使用的小例子:
#include <vector> #include <iostream> #include <caffe/net.hpp> using namespace std; using namespace caffe; int main() { std::string proto("./bambootry/deploy.prototxt"); Net<float> nn(proto,caffe::TEST); vector<string> bn=nn.blob_names();//获取Net中所有Blob对象名 for(int i=0;i<bn.size();i++) { cout<<"Blob #"<<i<<" : "<<bn[i]<<endl; } return 0; }
linux下编译(bambootry为自己创建的文件夹)
g++ -o ./bambootry/netapp ./bambootry/net.cpp -I ./include -D CPU_ONLY -I ./.build_release/src/ -L ./build/lib -lcaffe -lglog -lboost_system -lprotobuf
结果:
……中间省略
继续省略……
未完待续……
内容来自赵永科《深度学习 21天实战caffe》
【caffe Net】使用举例和代码中文注释
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。