├── .gitignore ├── LICENSE ├── README.md ├── configs.yaml ├── dreamer.py ├── exploration.py ├── figs ├── bank_heist_logs.png ├── dreamer-test.png ├── freeway_logs.png └── walker_walk_logs.png ├── models.py ├── networks.py ├── requirements.txt ├── tools.py └── wrappers.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsikyoon/dreamer-torch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsikyoon/dreamer-torch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsikyoon/dreamer-torch/HEAD/README.md -------------------------------------------------------------------------------- /configs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsikyoon/dreamer-torch/HEAD/configs.yaml -------------------------------------------------------------------------------- /dreamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsikyoon/dreamer-torch/HEAD/dreamer.py -------------------------------------------------------------------------------- /exploration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsikyoon/dreamer-torch/HEAD/exploration.py -------------------------------------------------------------------------------- /figs/bank_heist_logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsikyoon/dreamer-torch/HEAD/figs/bank_heist_logs.png -------------------------------------------------------------------------------- /figs/dreamer-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsikyoon/dreamer-torch/HEAD/figs/dreamer-test.png -------------------------------------------------------------------------------- /figs/freeway_logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsikyoon/dreamer-torch/HEAD/figs/freeway_logs.png -------------------------------------------------------------------------------- /figs/walker_walk_logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsikyoon/dreamer-torch/HEAD/figs/walker_walk_logs.png -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsikyoon/dreamer-torch/HEAD/models.py -------------------------------------------------------------------------------- /networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsikyoon/dreamer-torch/HEAD/networks.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsikyoon/dreamer-torch/HEAD/requirements.txt -------------------------------------------------------------------------------- /tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsikyoon/dreamer-torch/HEAD/tools.py -------------------------------------------------------------------------------- /wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsikyoon/dreamer-torch/HEAD/wrappers.py --------------------------------------------------------------------------------