error in the last line
MustafaAlahmid opened this issue · 1 comments
MustafaAlahmid commented
print ("Score over time: " + str(sum(reward/total_test_episode)))
TypeError: 'int' object is not iterable
btyu commented
it should be print ("Score over time: " + str(sum(reward)/total_test_episode))
you see, the bracket is wrong.