2020-09-18 17:28:16 +00:00
|
|
|
set title graph_title font "Ubuntu,24"
|
|
|
|
set xlabel "Epochs" font "Ubuntu,20"
|
|
|
|
set ylabel metric_name font "Ubuntu,20"
|
|
|
|
set key title "Legend" font "Ubuntu,20"
|
2020-09-18 16:23:51 +00:00
|
|
|
set grid
|
|
|
|
|
|
|
|
set datafile separator "\t"
|
|
|
|
set terminal png linewidth 3 size 1366,768
|
|
|
|
plot data_filename using 1:2 with lines title "Training", data_filename using 1:3 with lines title "Validation"
|