├── .gitignore ├── LICENSE ├── README.md ├── acrobot_q.py ├── cartpole_q.py ├── cliff_walking_reinforce.py ├── frozen_lake_dql.py ├── frozen_lake_dql_cnn.py ├── frozen_lake_enhanced.py ├── frozen_lake_q.py ├── frozen_lake_qe.py ├── img ├── cracked_hole.png ├── elf_down.png ├── elf_left.png ├── elf_right.png ├── elf_up.png ├── goal.png ├── hole.png ├── ice.png └── stool.png ├── mountain_car_cont_q.py ├── mountain_car_dql.py ├── mountain_car_q.py ├── pendulum_q.py ├── sb3.py ├── sb3v2.py ├── sb3v3.py └── taxi_q.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnycode8/gym_solutions/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnycode8/gym_solutions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnycode8/gym_solutions/HEAD/README.md -------------------------------------------------------------------------------- /acrobot_q.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnycode8/gym_solutions/HEAD/acrobot_q.py -------------------------------------------------------------------------------- /cartpole_q.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnycode8/gym_solutions/HEAD/cartpole_q.py -------------------------------------------------------------------------------- /cliff_walking_reinforce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnycode8/gym_solutions/HEAD/cliff_walking_reinforce.py -------------------------------------------------------------------------------- /frozen_lake_dql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnycode8/gym_solutions/HEAD/frozen_lake_dql.py -------------------------------------------------------------------------------- /frozen_lake_dql_cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnycode8/gym_solutions/HEAD/frozen_lake_dql_cnn.py -------------------------------------------------------------------------------- /frozen_lake_enhanced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnycode8/gym_solutions/HEAD/frozen_lake_enhanced.py -------------------------------------------------------------------------------- /frozen_lake_q.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnycode8/gym_solutions/HEAD/frozen_lake_q.py -------------------------------------------------------------------------------- /frozen_lake_qe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnycode8/gym_solutions/HEAD/frozen_lake_qe.py -------------------------------------------------------------------------------- /img/cracked_hole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnycode8/gym_solutions/HEAD/img/cracked_hole.png -------------------------------------------------------------------------------- /img/elf_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnycode8/gym_solutions/HEAD/img/elf_down.png -------------------------------------------------------------------------------- /img/elf_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnycode8/gym_solutions/HEAD/img/elf_left.png -------------------------------------------------------------------------------- /img/elf_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnycode8/gym_solutions/HEAD/img/elf_right.png -------------------------------------------------------------------------------- /img/elf_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnycode8/gym_solutions/HEAD/img/elf_up.png -------------------------------------------------------------------------------- /img/goal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnycode8/gym_solutions/HEAD/img/goal.png -------------------------------------------------------------------------------- /img/hole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnycode8/gym_solutions/HEAD/img/hole.png -------------------------------------------------------------------------------- /img/ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnycode8/gym_solutions/HEAD/img/ice.png -------------------------------------------------------------------------------- /img/stool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnycode8/gym_solutions/HEAD/img/stool.png -------------------------------------------------------------------------------- /mountain_car_cont_q.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnycode8/gym_solutions/HEAD/mountain_car_cont_q.py -------------------------------------------------------------------------------- /mountain_car_dql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnycode8/gym_solutions/HEAD/mountain_car_dql.py -------------------------------------------------------------------------------- /mountain_car_q.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnycode8/gym_solutions/HEAD/mountain_car_q.py -------------------------------------------------------------------------------- /pendulum_q.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnycode8/gym_solutions/HEAD/pendulum_q.py -------------------------------------------------------------------------------- /sb3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnycode8/gym_solutions/HEAD/sb3.py -------------------------------------------------------------------------------- /sb3v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnycode8/gym_solutions/HEAD/sb3v2.py -------------------------------------------------------------------------------- /sb3v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnycode8/gym_solutions/HEAD/sb3v3.py -------------------------------------------------------------------------------- /taxi_q.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnycode8/gym_solutions/HEAD/taxi_q.py --------------------------------------------------------------------------------