├── .gitattributes ├── .gitignore ├── README.md ├── baseline ├── ActorNetwork.py ├── CriticNetwork.py ├── farm.py ├── farmer.py ├── farmlist.py ├── multi.py ├── observation_processor.py ├── pyro_helper.py ├── rpm.py ├── test.py ├── train.py └── triggerbox.py ├── demo └── hzwer-NIPS2017-LearningToRun-small.gif └── graph ├── ensample.png ├── relu-selu-20.png └── relu-selu-60.png /.gitattributes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzwer/NIPS2017-LearningToRunACE/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzwer/NIPS2017-LearningToRunACE/HEAD/README.md -------------------------------------------------------------------------------- /baseline/ActorNetwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzwer/NIPS2017-LearningToRunACE/HEAD/baseline/ActorNetwork.py -------------------------------------------------------------------------------- /baseline/CriticNetwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzwer/NIPS2017-LearningToRunACE/HEAD/baseline/CriticNetwork.py -------------------------------------------------------------------------------- /baseline/farm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzwer/NIPS2017-LearningToRunACE/HEAD/baseline/farm.py -------------------------------------------------------------------------------- /baseline/farmer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzwer/NIPS2017-LearningToRunACE/HEAD/baseline/farmer.py -------------------------------------------------------------------------------- /baseline/farmlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzwer/NIPS2017-LearningToRunACE/HEAD/baseline/farmlist.py -------------------------------------------------------------------------------- /baseline/multi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzwer/NIPS2017-LearningToRunACE/HEAD/baseline/multi.py -------------------------------------------------------------------------------- /baseline/observation_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzwer/NIPS2017-LearningToRunACE/HEAD/baseline/observation_processor.py -------------------------------------------------------------------------------- /baseline/pyro_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzwer/NIPS2017-LearningToRunACE/HEAD/baseline/pyro_helper.py -------------------------------------------------------------------------------- /baseline/rpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzwer/NIPS2017-LearningToRunACE/HEAD/baseline/rpm.py -------------------------------------------------------------------------------- /baseline/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzwer/NIPS2017-LearningToRunACE/HEAD/baseline/test.py -------------------------------------------------------------------------------- /baseline/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzwer/NIPS2017-LearningToRunACE/HEAD/baseline/train.py -------------------------------------------------------------------------------- /baseline/triggerbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzwer/NIPS2017-LearningToRunACE/HEAD/baseline/triggerbox.py -------------------------------------------------------------------------------- /demo/hzwer-NIPS2017-LearningToRun-small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzwer/NIPS2017-LearningToRunACE/HEAD/demo/hzwer-NIPS2017-LearningToRun-small.gif -------------------------------------------------------------------------------- /graph/ensample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzwer/NIPS2017-LearningToRunACE/HEAD/graph/ensample.png -------------------------------------------------------------------------------- /graph/relu-selu-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzwer/NIPS2017-LearningToRunACE/HEAD/graph/relu-selu-20.png -------------------------------------------------------------------------------- /graph/relu-selu-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hzwer/NIPS2017-LearningToRunACE/HEAD/graph/relu-selu-60.png --------------------------------------------------------------------------------