├── .gitignore ├── README.md ├── agents ├── actor.py └── learner.py ├── levels.py ├── main.py ├── misc ├── q_manager.py └── storage.py ├── models ├── distributions.py ├── policy.py └── utils.py ├── requirements.txt └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | results 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjungoal/IMPALA-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /agents/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjungoal/IMPALA-pytorch/HEAD/agents/actor.py -------------------------------------------------------------------------------- /agents/learner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjungoal/IMPALA-pytorch/HEAD/agents/learner.py -------------------------------------------------------------------------------- /levels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjungoal/IMPALA-pytorch/HEAD/levels.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjungoal/IMPALA-pytorch/HEAD/main.py -------------------------------------------------------------------------------- /misc/q_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjungoal/IMPALA-pytorch/HEAD/misc/q_manager.py -------------------------------------------------------------------------------- /misc/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjungoal/IMPALA-pytorch/HEAD/misc/storage.py -------------------------------------------------------------------------------- /models/distributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjungoal/IMPALA-pytorch/HEAD/models/distributions.py -------------------------------------------------------------------------------- /models/policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjungoal/IMPALA-pytorch/HEAD/models/policy.py -------------------------------------------------------------------------------- /models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjungoal/IMPALA-pytorch/HEAD/models/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjungoal/IMPALA-pytorch/HEAD/utils.py --------------------------------------------------------------------------------