summaryrefslogtreecommitdiff
path: root/doc/array_naive_vs_episodic.gnuplot
blob: 6fb191107dc3e29c2c5ff1f4c48ed7dfc2b210f4 (plain)
1
2
3
4
5
6
7
8
9
set xrange [0: 1000]

plot 'logs/old.log' with lines lt rgb 'red' title 'QArray, old textbook strategy',\
     'logs/new.log' with lines lt rgb 'green' title 'QArray, new reversed strategy',\
     'logs/nn2.log' using ($1, $2*20) with lines lt rgb 'blue' title 'QNN',\
     'logs/nn3.log' using ($1, $2*20) with lines lt rgb 'cyan' title 'QNN, randomize range 0.27',\
     'logs/nn.log' using ($1, $2*20) with lines lt rgb 'light-blue' title 'QNN, friendlyness=1'
pause -1