1. 程式人生 > >畫caffe訓練loss曲線

畫caffe訓練loss曲線

color spa blog iter inux inf pan sin pre

Linux下操作

1. 將loss值存儲到lossInf.txt中

fName1=loss.txt cat loss.log | grep "solver.cpp:218] Iteration" | awk {print $9} > $fName1

2. Python畫出loss曲線

fName2=./loss.txt

python show_loss_curve.py $fName2 || exit 1

畫caffe訓練loss曲線