我使用火炬构建了MNIST分类器,使用optim logger绘制了这个结果。
在绘图时,我致电trainLogger:plot()
,其中trainLogger
为trainLogger=optim.Logger('train.log')
。对于测试装置重复相同的操作。所以这给了我两个单独的图,有没有办法将这两个日志合并在一个图中?
答案 0 :(得分:0)
gnuplot
set title "Mean accuracy"
set xlabel "Epochs"
set ylabel "Accuracy (%)"
set yrange [0:100]
plot 'test.log' title "Testing" with linespoints ls 1 linetype 6,'train.log' title "Training" with linespoints ls 1 linetype 7