diff options
Diffstat (limited to 'doc/array_naive_vs_episodic.gnuplot')
-rw-r--r-- | doc/array_naive_vs_episodic.gnuplot | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/array_naive_vs_episodic.gnuplot b/doc/array_naive_vs_episodic.gnuplot index ebb7408..00e9a92 100644 --- a/doc/array_naive_vs_episodic.gnuplot +++ b/doc/array_naive_vs_episodic.gnuplot @@ -1,8 +1,8 @@ set xrange [0: 1000] -plot 'logs/old.log' with lines,\ - 'logs/new.log' with lines,\ - 'logs/nn.log' using ($1,$2*20) with lines,\ - 'logs/nn2.log' using ($1,$2*20) with lines +plot 'logs/old.log' with lines title 'QArray, old textbook strategy',\ + 'logs/new.log' with lines title 'QArray, new reversed strategy',\ + 'logs/nn2.log' using ($1, $2*20) with lines title 'QNN',\ + 'logs/nn.log' using ($1, $2*20) with lines title 'QNN, friendlyness=1' pause -1 |