合并使用优化记录器生成的图

时间:2015-11-15 15:14:36

标签: plot lua gnuplot torch

我使用火炬构建了MNIST分类器,使用optim logger绘制了这个结果。

在绘图时,我致电trainLogger:plot(),其中trainLoggertrainLogger=optim.Logger('train.log')。对于测试装置重复相同的操作。所以这给了我两个单独的图,有没有办法将这两个日志合并在一个图中?

1 个答案:

答案 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