├── .gitignore ├── DQN_MOUNTAINCAR-V0_DUELING.hd5 ├── DQN_MOUNTAINCAR-V0_DUELING_FUZZY.hd5 ├── LICENSE ├── README.md ├── __init__.py ├── agents ├── __init__.py ├── agent.py ├── dqn.py └── memory.py ├── environment.py ├── fuzzy ├── FIS.py └── __init__.py ├── globalvars.py ├── memberships.py ├── training.py └── utils ├── __init__.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doandongnguyen/FuzzyDQN/HEAD/.gitignore -------------------------------------------------------------------------------- /DQN_MOUNTAINCAR-V0_DUELING.hd5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doandongnguyen/FuzzyDQN/HEAD/DQN_MOUNTAINCAR-V0_DUELING.hd5 -------------------------------------------------------------------------------- /DQN_MOUNTAINCAR-V0_DUELING_FUZZY.hd5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doandongnguyen/FuzzyDQN/HEAD/DQN_MOUNTAINCAR-V0_DUELING_FUZZY.hd5 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doandongnguyen/FuzzyDQN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doandongnguyen/FuzzyDQN/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doandongnguyen/FuzzyDQN/HEAD/agents/agent.py -------------------------------------------------------------------------------- /agents/dqn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doandongnguyen/FuzzyDQN/HEAD/agents/dqn.py -------------------------------------------------------------------------------- /agents/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doandongnguyen/FuzzyDQN/HEAD/agents/memory.py -------------------------------------------------------------------------------- /environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doandongnguyen/FuzzyDQN/HEAD/environment.py -------------------------------------------------------------------------------- /fuzzy/FIS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doandongnguyen/FuzzyDQN/HEAD/fuzzy/FIS.py -------------------------------------------------------------------------------- /fuzzy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /globalvars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doandongnguyen/FuzzyDQN/HEAD/globalvars.py -------------------------------------------------------------------------------- /memberships.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doandongnguyen/FuzzyDQN/HEAD/memberships.py -------------------------------------------------------------------------------- /training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doandongnguyen/FuzzyDQN/HEAD/training.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doandongnguyen/FuzzyDQN/HEAD/utils/utils.py --------------------------------------------------------------------------------