├── .gitignore ├── LICENSE ├── README.md ├── requirements.txt ├── results └── scores.json └── twm ├── actor_critic.py ├── agent.py ├── config.py ├── main.py ├── nets.py ├── play.py ├── replay_buffer.py ├── trainer.py ├── utils.py └── world_model.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrobine/twm/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrobine/twm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrobine/twm/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrobine/twm/HEAD/requirements.txt -------------------------------------------------------------------------------- /results/scores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrobine/twm/HEAD/results/scores.json -------------------------------------------------------------------------------- /twm/actor_critic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrobine/twm/HEAD/twm/actor_critic.py -------------------------------------------------------------------------------- /twm/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrobine/twm/HEAD/twm/agent.py -------------------------------------------------------------------------------- /twm/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrobine/twm/HEAD/twm/config.py -------------------------------------------------------------------------------- /twm/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrobine/twm/HEAD/twm/main.py -------------------------------------------------------------------------------- /twm/nets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrobine/twm/HEAD/twm/nets.py -------------------------------------------------------------------------------- /twm/play.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrobine/twm/HEAD/twm/play.py -------------------------------------------------------------------------------- /twm/replay_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrobine/twm/HEAD/twm/replay_buffer.py -------------------------------------------------------------------------------- /twm/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrobine/twm/HEAD/twm/trainer.py -------------------------------------------------------------------------------- /twm/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrobine/twm/HEAD/twm/utils.py -------------------------------------------------------------------------------- /twm/world_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrobine/twm/HEAD/twm/world_model.py --------------------------------------------------------------------------------