This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Solve OpenAI Gym Cartpole V0 with DQN. | |
TensorFlow code by TiehHung Chuang (imironhead), 2016-09-06 | |
tf-slim code by Jeremy Karnowski jkarnows, 2016-09-07 | |
""" | |
from __future__ import absolute_import | |
from __future__ import print_function | |
from __future__ import division |