├── README.md ├── hiro.py ├── main.py ├── models.py ├── train_hiro.py └── utils.py /README.md: -------------------------------------------------------------------------------- 1 | # HIRO 2 | The hierarchy reinforcement learning algorithm(based on DDPG) 3 | -------------------------------------------------------------------------------- /hiro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsniper7614/HIRO/HEAD/hiro.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsniper7614/HIRO/HEAD/main.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsniper7614/HIRO/HEAD/models.py -------------------------------------------------------------------------------- /train_hiro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsniper7614/HIRO/HEAD/train_hiro.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsniper7614/HIRO/HEAD/utils.py --------------------------------------------------------------------------------