caffe 案例测试

运行方法

VS2015打开Caffe.sln
caffe 案例测试_第1张图片

在这里插入图片描述
点击生成解决方案
caffe 案例测试_第2张图片
caffe 案例测试_第3张图片
最终,得到caffe.exe,利用它进行案例测试。最好配置到环境变量里。

案例数据准备

下载
链接:https://pan.baidu.com/s/10CmpZUdEVmma4A0mziu9dw
提取码:dmjr
复制这段内容后打开百度网盘手机App,操作更方便哦
解压后放到data/mnist

进入C:\Windows\System32\WindowsPowerShell\v1.0
管理员运行PowerShell
PS F:\caffe-windows> examples\mnist\create_mnist.ps1
生成两个目录
caffe 案例测试_第4张图片
准备完毕

案例测试 lenet.prototxt,lenet_solver.prototxt

caffe time -model examples/mnist/lenet.prototxt -iterations 10

caffe train -solver examples/mnist/lenet_solver.prototxt
python caffe train -solver examples/mnist/lenet_solver.prototxt 2>1 | tee a.log

执行命令,显示结果
caffe 案例测试_第5张图片

图例显示

python tools/extra/plot_training_log.py.example 6 plot.png a.log

python tools/extra/plot_training_log.py.example 0 plot.png a.log

python python/draw_net.py examples/mnist/lenet.prototxt aa.png --rankdir=BT LR

python3.5 安装 pydotplus,graphviz
pip install pydotplus
pip install graphviz

并下载
https://graphviz.org/download/
caffe 案例测试_第6张图片
完成后添加path,环境变量C:\Program Files\Graphviz\bin
执行python python/draw_net.py examples/mnist/lenet.prototxt aa.png --rankdir=BT,查看结构

caffe 案例测试_第7张图片

你可能感兴趣的:(python,caffe)