├── IQN-DQN.ipynb ├── LICENSE ├── MultiPro.py ├── README.md ├── ReplayBuffers.py ├── agent.py ├── imgs ├── Breakout_IQN.gif ├── Dueling_IQN_CP_.png ├── IQN_CP_.png └── IQN_MIQN_BREAKOUT_.png ├── model.py ├── plot.ipynb ├── run.py └── wrapper.py /IQN-DQN.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BY571/IQN-and-Extensions/HEAD/IQN-DQN.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BY571/IQN-and-Extensions/HEAD/LICENSE -------------------------------------------------------------------------------- /MultiPro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BY571/IQN-and-Extensions/HEAD/MultiPro.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BY571/IQN-and-Extensions/HEAD/README.md -------------------------------------------------------------------------------- /ReplayBuffers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BY571/IQN-and-Extensions/HEAD/ReplayBuffers.py -------------------------------------------------------------------------------- /agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BY571/IQN-and-Extensions/HEAD/agent.py -------------------------------------------------------------------------------- /imgs/Breakout_IQN.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BY571/IQN-and-Extensions/HEAD/imgs/Breakout_IQN.gif -------------------------------------------------------------------------------- /imgs/Dueling_IQN_CP_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BY571/IQN-and-Extensions/HEAD/imgs/Dueling_IQN_CP_.png -------------------------------------------------------------------------------- /imgs/IQN_CP_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BY571/IQN-and-Extensions/HEAD/imgs/IQN_CP_.png -------------------------------------------------------------------------------- /imgs/IQN_MIQN_BREAKOUT_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BY571/IQN-and-Extensions/HEAD/imgs/IQN_MIQN_BREAKOUT_.png -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BY571/IQN-and-Extensions/HEAD/model.py -------------------------------------------------------------------------------- /plot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BY571/IQN-and-Extensions/HEAD/plot.ipynb -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BY571/IQN-and-Extensions/HEAD/run.py -------------------------------------------------------------------------------- /wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BY571/IQN-and-Extensions/HEAD/wrapper.py --------------------------------------------------------------------------------