├── .github └── ISSUE_TEMPLATE │ └── issue.md ├── .gitignore ├── LICENSE ├── README.md ├── dreamer.py ├── models.py ├── plotting.py ├── scores ├── baselines.json └── dreamer.json ├── tools.py └── wrappers.py /.github/ISSUE_TEMPLATE/issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danijar/dreamer/HEAD/.github/ISSUE_TEMPLATE/issue.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danijar/dreamer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danijar/dreamer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danijar/dreamer/HEAD/README.md -------------------------------------------------------------------------------- /dreamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danijar/dreamer/HEAD/dreamer.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danijar/dreamer/HEAD/models.py -------------------------------------------------------------------------------- /plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danijar/dreamer/HEAD/plotting.py -------------------------------------------------------------------------------- /scores/baselines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danijar/dreamer/HEAD/scores/baselines.json -------------------------------------------------------------------------------- /scores/dreamer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danijar/dreamer/HEAD/scores/dreamer.json -------------------------------------------------------------------------------- /tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danijar/dreamer/HEAD/tools.py -------------------------------------------------------------------------------- /wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danijar/dreamer/HEAD/wrappers.py --------------------------------------------------------------------------------