├── .gitignore ├── README.md ├── edugym ├── __init__.py ├── agents │ ├── Agent.py │ ├── DiscreteActorCriticAgent.py │ ├── DynaAgent.py │ ├── DynamicProgrammingAgent.py │ ├── ModelLearningAgent.py │ ├── PrioritizedSweepingAgent.py │ ├── QLearningAgent.py │ ├── QLearningAgentDiscretized.py │ ├── QLearningAgentFrameStacking.py │ ├── SarsaAgent.py │ └── __init__.py └── envs │ ├── __init__.py │ ├── boulder.py │ ├── catch.py │ ├── golf.py │ ├── interactive.py │ ├── memorycorridor.py │ ├── roadrunner.py │ ├── study.py │ ├── supermarket.py │ ├── tamagotchi.py │ ├── test_seeding.py │ └── trashbot.py ├── main.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLG-Leiden/edugym/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLG-Leiden/edugym/HEAD/README.md -------------------------------------------------------------------------------- /edugym/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLG-Leiden/edugym/HEAD/edugym/__init__.py -------------------------------------------------------------------------------- /edugym/agents/Agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLG-Leiden/edugym/HEAD/edugym/agents/Agent.py -------------------------------------------------------------------------------- /edugym/agents/DiscreteActorCriticAgent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLG-Leiden/edugym/HEAD/edugym/agents/DiscreteActorCriticAgent.py -------------------------------------------------------------------------------- /edugym/agents/DynaAgent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLG-Leiden/edugym/HEAD/edugym/agents/DynaAgent.py -------------------------------------------------------------------------------- /edugym/agents/DynamicProgrammingAgent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLG-Leiden/edugym/HEAD/edugym/agents/DynamicProgrammingAgent.py -------------------------------------------------------------------------------- /edugym/agents/ModelLearningAgent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLG-Leiden/edugym/HEAD/edugym/agents/ModelLearningAgent.py -------------------------------------------------------------------------------- /edugym/agents/PrioritizedSweepingAgent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLG-Leiden/edugym/HEAD/edugym/agents/PrioritizedSweepingAgent.py -------------------------------------------------------------------------------- /edugym/agents/QLearningAgent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLG-Leiden/edugym/HEAD/edugym/agents/QLearningAgent.py -------------------------------------------------------------------------------- /edugym/agents/QLearningAgentDiscretized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLG-Leiden/edugym/HEAD/edugym/agents/QLearningAgentDiscretized.py -------------------------------------------------------------------------------- /edugym/agents/QLearningAgentFrameStacking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLG-Leiden/edugym/HEAD/edugym/agents/QLearningAgentFrameStacking.py -------------------------------------------------------------------------------- /edugym/agents/SarsaAgent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLG-Leiden/edugym/HEAD/edugym/agents/SarsaAgent.py -------------------------------------------------------------------------------- /edugym/agents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLG-Leiden/edugym/HEAD/edugym/agents/__init__.py -------------------------------------------------------------------------------- /edugym/envs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLG-Leiden/edugym/HEAD/edugym/envs/__init__.py -------------------------------------------------------------------------------- /edugym/envs/boulder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLG-Leiden/edugym/HEAD/edugym/envs/boulder.py -------------------------------------------------------------------------------- /edugym/envs/catch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLG-Leiden/edugym/HEAD/edugym/envs/catch.py -------------------------------------------------------------------------------- /edugym/envs/golf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLG-Leiden/edugym/HEAD/edugym/envs/golf.py -------------------------------------------------------------------------------- /edugym/envs/interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLG-Leiden/edugym/HEAD/edugym/envs/interactive.py -------------------------------------------------------------------------------- /edugym/envs/memorycorridor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLG-Leiden/edugym/HEAD/edugym/envs/memorycorridor.py -------------------------------------------------------------------------------- /edugym/envs/roadrunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLG-Leiden/edugym/HEAD/edugym/envs/roadrunner.py -------------------------------------------------------------------------------- /edugym/envs/study.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLG-Leiden/edugym/HEAD/edugym/envs/study.py -------------------------------------------------------------------------------- /edugym/envs/supermarket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLG-Leiden/edugym/HEAD/edugym/envs/supermarket.py -------------------------------------------------------------------------------- /edugym/envs/tamagotchi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLG-Leiden/edugym/HEAD/edugym/envs/tamagotchi.py -------------------------------------------------------------------------------- /edugym/envs/test_seeding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLG-Leiden/edugym/HEAD/edugym/envs/test_seeding.py -------------------------------------------------------------------------------- /edugym/envs/trashbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLG-Leiden/edugym/HEAD/edugym/envs/trashbot.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLG-Leiden/edugym/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLG-Leiden/edugym/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLG-Leiden/edugym/HEAD/setup.py --------------------------------------------------------------------------------