>>>>>>> epoch 1
>>> Rollout phase
Traceback (most recent call last):
File "/usr/lib/python3.5/runpy.py", line 193, in _run_module_as_main
"__main__", mod_spec)
File "/usr/lib/python3.5/runpy.py", line 85, in _run_code
exec(code, run_globals)
File "/home/pawel/M/outrun/tensorflow-without-a-phd/tensorflow-rl-pong/trainer/task.py", line 292, in <module>
main(args)
File "/home/pawel/M/outrun/tensorflow-without-a-phd/tensorflow-rl-pong/trainer/task.py", line 204, in main
_ = raw_input('episode done, press Enter to replay')
NameError: name 'raw_input' is not defined
After the end of the 1st epoch:
raw_input()
is not supported in Python 3.As per Guido's explanation: https://docs.python.org/3/whatsnew/3.0.html https://www.python.org/dev/peps/pep-3111/
raw_input()
was renamed toinput()