Files to be used in caffe/tools/extar/plot_training_log.py.example
You also need to use the caffe/tools/extarparse_log.sh and caffe/tools/extarextract_seconds.py files (if you do not remember to copy them in the current directory)
Execute command python plot_training_log.py 0 save.png My.Log
0 is to draw that kind of diagram, have the test, the training accurary and so on
Save.png is the Save image path
My.Log is the Caffe output log and must end with. log
Need to note:
1. In the file extarextract_seconds.py 56th line of code elapsed_seconds = (dt-start_datetime). Total_seconds (),
There is no total_seconds attribute under python2.6, I change this sentence to elapsed_seconds=1000
2. If the data is more than the case, set use_marker = False
3. Comment out matplotlib.markers #import matplotlib.markers as MKS under the same python2.6
Caffe drawing loss and accurary curves