├── .gitignore ├── cifar10.py ├── cifar10b.py ├── gridworld.py ├── mnist1.py ├── mnist2.py └── open_gym ├── CartPole-v0.py ├── MountainCar-v0-DDQN-priority.py ├── MountainCar-v0.py ├── a3c_cartpole.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | MNIST_data/ 3 | *.h5 4 | _* -------------------------------------------------------------------------------- /cifar10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaromiru/ai_examples/HEAD/cifar10.py -------------------------------------------------------------------------------- /cifar10b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaromiru/ai_examples/HEAD/cifar10b.py -------------------------------------------------------------------------------- /gridworld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaromiru/ai_examples/HEAD/gridworld.py -------------------------------------------------------------------------------- /mnist1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaromiru/ai_examples/HEAD/mnist1.py -------------------------------------------------------------------------------- /mnist2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaromiru/ai_examples/HEAD/mnist2.py -------------------------------------------------------------------------------- /open_gym/CartPole-v0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaromiru/ai_examples/HEAD/open_gym/CartPole-v0.py -------------------------------------------------------------------------------- /open_gym/MountainCar-v0-DDQN-priority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaromiru/ai_examples/HEAD/open_gym/MountainCar-v0-DDQN-priority.py -------------------------------------------------------------------------------- /open_gym/MountainCar-v0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaromiru/ai_examples/HEAD/open_gym/MountainCar-v0.py -------------------------------------------------------------------------------- /open_gym/a3c_cartpole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaromiru/ai_examples/HEAD/open_gym/a3c_cartpole.py -------------------------------------------------------------------------------- /open_gym/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaromiru/ai_examples/HEAD/open_gym/utils.py --------------------------------------------------------------------------------