├── .gitignore ├── LICENSE ├── README.md ├── agents.py ├── asset ├── montezuma.gif └── venture.gif ├── autopep8.sh ├── config.conf ├── config.py ├── envs.py ├── eval.py ├── make_animation.py ├── model.py ├── models ├── MontezumaRevengeNoFrameskip-v4.model ├── MontezumaRevengeNoFrameskip-v4.pred ├── MontezumaRevengeNoFrameskip-v4.target ├── VentureNoFrameskip-v4.model ├── VentureNoFrameskip-v4.pred └── VentureNoFrameskip-v4.target ├── train.py ├── train.sh └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwleo/random-network-distillation-pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwleo/random-network-distillation-pytorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwleo/random-network-distillation-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwleo/random-network-distillation-pytorch/HEAD/agents.py -------------------------------------------------------------------------------- /asset/montezuma.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwleo/random-network-distillation-pytorch/HEAD/asset/montezuma.gif -------------------------------------------------------------------------------- /asset/venture.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwleo/random-network-distillation-pytorch/HEAD/asset/venture.gif -------------------------------------------------------------------------------- /autopep8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwleo/random-network-distillation-pytorch/HEAD/autopep8.sh -------------------------------------------------------------------------------- /config.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwleo/random-network-distillation-pytorch/HEAD/config.conf -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwleo/random-network-distillation-pytorch/HEAD/config.py -------------------------------------------------------------------------------- /envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwleo/random-network-distillation-pytorch/HEAD/envs.py -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwleo/random-network-distillation-pytorch/HEAD/eval.py -------------------------------------------------------------------------------- /make_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwleo/random-network-distillation-pytorch/HEAD/make_animation.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwleo/random-network-distillation-pytorch/HEAD/model.py -------------------------------------------------------------------------------- /models/MontezumaRevengeNoFrameskip-v4.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwleo/random-network-distillation-pytorch/HEAD/models/MontezumaRevengeNoFrameskip-v4.model -------------------------------------------------------------------------------- /models/MontezumaRevengeNoFrameskip-v4.pred: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwleo/random-network-distillation-pytorch/HEAD/models/MontezumaRevengeNoFrameskip-v4.pred -------------------------------------------------------------------------------- /models/MontezumaRevengeNoFrameskip-v4.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwleo/random-network-distillation-pytorch/HEAD/models/MontezumaRevengeNoFrameskip-v4.target -------------------------------------------------------------------------------- /models/VentureNoFrameskip-v4.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwleo/random-network-distillation-pytorch/HEAD/models/VentureNoFrameskip-v4.model -------------------------------------------------------------------------------- /models/VentureNoFrameskip-v4.pred: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwleo/random-network-distillation-pytorch/HEAD/models/VentureNoFrameskip-v4.pred -------------------------------------------------------------------------------- /models/VentureNoFrameskip-v4.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwleo/random-network-distillation-pytorch/HEAD/models/VentureNoFrameskip-v4.target -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwleo/random-network-distillation-pytorch/HEAD/train.py -------------------------------------------------------------------------------- /train.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | CUDA_VISIBLE_DEVICES=0 python $1 3 | -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwleo/random-network-distillation-pytorch/HEAD/utils.py --------------------------------------------------------------------------------