├── LICENSE ├── README.md ├── RL_Q-Learning_E1 ├── agent_brain.py ├── env.py ├── images │ ├── agent1.png │ ├── bank1.png │ ├── bank2.png │ ├── bg.png │ ├── building1.png │ ├── building2.png │ ├── flag.png │ ├── pedestrian.png │ ├── road_closed1.png │ ├── road_closed2.png │ ├── road_closed3.png │ ├── shop.png │ ├── traffic_lights.png │ ├── tree1.png │ └── tree2.png └── run_agent.py ├── RL_Q-Learning_E2 ├── agent_brain.py ├── env.py ├── images │ └── bg.png └── run_agent.py ├── RL_Q-Learning_E3 ├── agent_brain.py ├── env.py ├── images │ └── bg.png └── run_agent.py ├── RL_Sarsa_E1 ├── agent_brain.py ├── env.py ├── images │ ├── agent1.png │ ├── bank1.png │ ├── bank2.png │ ├── bg.png │ ├── building1.png │ ├── building2.png │ ├── flag.png │ ├── pedestrian.png │ ├── road_closed1.png │ ├── road_closed2.png │ ├── road_closed3.png │ ├── shop.png │ ├── traffic_lights.png │ ├── tree1.png │ └── tree2.png └── run_agent.py ├── RL_Sarsa_E2 ├── agent_brain.py ├── env.py ├── images │ └── bg.png └── run_agent.py ├── docs ├── README.md ├── _config.yml ├── _layouts │ └── default.html ├── assets │ └── css │ │ └── style.scss └── images │ ├── Charts-1.png │ ├── Charts-2.png │ ├── Environment-1.gif │ ├── Environment-1.png │ ├── Environment-2.png │ ├── Environment-3.png │ ├── Q-Table-E-1.png │ ├── Q-Table-E-2.png │ ├── Q-learning_via_Sarsa.png │ └── favicon.ico └── images ├── Charts-1.png ├── Charts-2.png ├── Environment-1.gif ├── Environment-1.png ├── Environment-2.png ├── Environment-3.png ├── Q-Table-E-1.png ├── Q-Table-E-2.png └── Q-learning_via_Sarsa.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/README.md -------------------------------------------------------------------------------- /RL_Q-Learning_E1/agent_brain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Q-Learning_E1/agent_brain.py -------------------------------------------------------------------------------- /RL_Q-Learning_E1/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Q-Learning_E1/env.py -------------------------------------------------------------------------------- /RL_Q-Learning_E1/images/agent1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Q-Learning_E1/images/agent1.png -------------------------------------------------------------------------------- /RL_Q-Learning_E1/images/bank1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Q-Learning_E1/images/bank1.png -------------------------------------------------------------------------------- /RL_Q-Learning_E1/images/bank2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Q-Learning_E1/images/bank2.png -------------------------------------------------------------------------------- /RL_Q-Learning_E1/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Q-Learning_E1/images/bg.png -------------------------------------------------------------------------------- /RL_Q-Learning_E1/images/building1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Q-Learning_E1/images/building1.png -------------------------------------------------------------------------------- /RL_Q-Learning_E1/images/building2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Q-Learning_E1/images/building2.png -------------------------------------------------------------------------------- /RL_Q-Learning_E1/images/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Q-Learning_E1/images/flag.png -------------------------------------------------------------------------------- /RL_Q-Learning_E1/images/pedestrian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Q-Learning_E1/images/pedestrian.png -------------------------------------------------------------------------------- /RL_Q-Learning_E1/images/road_closed1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Q-Learning_E1/images/road_closed1.png -------------------------------------------------------------------------------- /RL_Q-Learning_E1/images/road_closed2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Q-Learning_E1/images/road_closed2.png -------------------------------------------------------------------------------- /RL_Q-Learning_E1/images/road_closed3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Q-Learning_E1/images/road_closed3.png -------------------------------------------------------------------------------- /RL_Q-Learning_E1/images/shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Q-Learning_E1/images/shop.png -------------------------------------------------------------------------------- /RL_Q-Learning_E1/images/traffic_lights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Q-Learning_E1/images/traffic_lights.png -------------------------------------------------------------------------------- /RL_Q-Learning_E1/images/tree1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Q-Learning_E1/images/tree1.png -------------------------------------------------------------------------------- /RL_Q-Learning_E1/images/tree2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Q-Learning_E1/images/tree2.png -------------------------------------------------------------------------------- /RL_Q-Learning_E1/run_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Q-Learning_E1/run_agent.py -------------------------------------------------------------------------------- /RL_Q-Learning_E2/agent_brain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Q-Learning_E2/agent_brain.py -------------------------------------------------------------------------------- /RL_Q-Learning_E2/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Q-Learning_E2/env.py -------------------------------------------------------------------------------- /RL_Q-Learning_E2/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Q-Learning_E2/images/bg.png -------------------------------------------------------------------------------- /RL_Q-Learning_E2/run_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Q-Learning_E2/run_agent.py -------------------------------------------------------------------------------- /RL_Q-Learning_E3/agent_brain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Q-Learning_E3/agent_brain.py -------------------------------------------------------------------------------- /RL_Q-Learning_E3/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Q-Learning_E3/env.py -------------------------------------------------------------------------------- /RL_Q-Learning_E3/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Q-Learning_E3/images/bg.png -------------------------------------------------------------------------------- /RL_Q-Learning_E3/run_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Q-Learning_E3/run_agent.py -------------------------------------------------------------------------------- /RL_Sarsa_E1/agent_brain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Sarsa_E1/agent_brain.py -------------------------------------------------------------------------------- /RL_Sarsa_E1/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Sarsa_E1/env.py -------------------------------------------------------------------------------- /RL_Sarsa_E1/images/agent1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Sarsa_E1/images/agent1.png -------------------------------------------------------------------------------- /RL_Sarsa_E1/images/bank1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Sarsa_E1/images/bank1.png -------------------------------------------------------------------------------- /RL_Sarsa_E1/images/bank2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Sarsa_E1/images/bank2.png -------------------------------------------------------------------------------- /RL_Sarsa_E1/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Sarsa_E1/images/bg.png -------------------------------------------------------------------------------- /RL_Sarsa_E1/images/building1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Sarsa_E1/images/building1.png -------------------------------------------------------------------------------- /RL_Sarsa_E1/images/building2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Sarsa_E1/images/building2.png -------------------------------------------------------------------------------- /RL_Sarsa_E1/images/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Sarsa_E1/images/flag.png -------------------------------------------------------------------------------- /RL_Sarsa_E1/images/pedestrian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Sarsa_E1/images/pedestrian.png -------------------------------------------------------------------------------- /RL_Sarsa_E1/images/road_closed1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Sarsa_E1/images/road_closed1.png -------------------------------------------------------------------------------- /RL_Sarsa_E1/images/road_closed2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Sarsa_E1/images/road_closed2.png -------------------------------------------------------------------------------- /RL_Sarsa_E1/images/road_closed3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Sarsa_E1/images/road_closed3.png -------------------------------------------------------------------------------- /RL_Sarsa_E1/images/shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Sarsa_E1/images/shop.png -------------------------------------------------------------------------------- /RL_Sarsa_E1/images/traffic_lights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Sarsa_E1/images/traffic_lights.png -------------------------------------------------------------------------------- /RL_Sarsa_E1/images/tree1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Sarsa_E1/images/tree1.png -------------------------------------------------------------------------------- /RL_Sarsa_E1/images/tree2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Sarsa_E1/images/tree2.png -------------------------------------------------------------------------------- /RL_Sarsa_E1/run_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Sarsa_E1/run_agent.py -------------------------------------------------------------------------------- /RL_Sarsa_E2/agent_brain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Sarsa_E2/agent_brain.py -------------------------------------------------------------------------------- /RL_Sarsa_E2/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Sarsa_E2/env.py -------------------------------------------------------------------------------- /RL_Sarsa_E2/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Sarsa_E2/images/bg.png -------------------------------------------------------------------------------- /RL_Sarsa_E2/run_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/RL_Sarsa_E2/run_agent.py -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/docs/_layouts/default.html -------------------------------------------------------------------------------- /docs/assets/css/style.scss: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | @import "{{ site.theme }}"; 5 | -------------------------------------------------------------------------------- /docs/images/Charts-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/docs/images/Charts-1.png -------------------------------------------------------------------------------- /docs/images/Charts-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/docs/images/Charts-2.png -------------------------------------------------------------------------------- /docs/images/Environment-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/docs/images/Environment-1.gif -------------------------------------------------------------------------------- /docs/images/Environment-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/docs/images/Environment-1.png -------------------------------------------------------------------------------- /docs/images/Environment-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/docs/images/Environment-2.png -------------------------------------------------------------------------------- /docs/images/Environment-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/docs/images/Environment-3.png -------------------------------------------------------------------------------- /docs/images/Q-Table-E-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/docs/images/Q-Table-E-1.png -------------------------------------------------------------------------------- /docs/images/Q-Table-E-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/docs/images/Q-Table-E-2.png -------------------------------------------------------------------------------- /docs/images/Q-learning_via_Sarsa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/docs/images/Q-learning_via_Sarsa.png -------------------------------------------------------------------------------- /docs/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/docs/images/favicon.ico -------------------------------------------------------------------------------- /images/Charts-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/images/Charts-1.png -------------------------------------------------------------------------------- /images/Charts-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/images/Charts-2.png -------------------------------------------------------------------------------- /images/Environment-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/images/Environment-1.gif -------------------------------------------------------------------------------- /images/Environment-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/images/Environment-1.png -------------------------------------------------------------------------------- /images/Environment-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/images/Environment-2.png -------------------------------------------------------------------------------- /images/Environment-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/images/Environment-3.png -------------------------------------------------------------------------------- /images/Q-Table-E-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/images/Q-Table-E-1.png -------------------------------------------------------------------------------- /images/Q-Table-E-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/images/Q-Table-E-2.png -------------------------------------------------------------------------------- /images/Q-learning_via_Sarsa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sichkar-valentyn/Reinforcement_Learning_in_Python/HEAD/images/Q-learning_via_Sarsa.png --------------------------------------------------------------------------------