caffe 学习笔记之ubuntu下绘制loss&accuracy 曲线

ubuntu下可以使用自带的sh文件绘制曲线,
在./tools/extra/plot_training_log.py.examplesh
sh文件的参数说明为

Notes:  
    1. Supporting multiple logs.  
    2. Log file name must end with the lower-cased ".log".  
Supported chart types:  
    0: Test accuracy  vs. Iters  
    1: Test accuracy  vs. Seconds  
    2: Test loss  vs. Iters  
    3: Test loss  vs. Seconds  
    4: Train learning rate  vs. Iters  
    5: Train learning rate  vs. Seconds  
    6: Train loss  vs. Iters  
    7: Train loss  vs. Seconds

使用语法为

./tools/extra/parse_log.sh --help

使用的方法 为

参考资料:
[1] http://blog.csdn.net/u013078356/article/details/51154847

你可能感兴趣的:(caffe)