├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── RELEASE_NOTES.md ├── dm_fast_mapping ├── __init__.py ├── _load_environment.py ├── _version.py ├── load_from_disk_test.py └── load_from_docker_test.py ├── docs └── index.md ├── examples ├── human_agent.py └── random_agent.py └── setup.py /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/dm_fast_mapping/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/dm_fast_mapping/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/dm_fast_mapping/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/dm_fast_mapping/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /dm_fast_mapping/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/dm_fast_mapping/HEAD/dm_fast_mapping/__init__.py -------------------------------------------------------------------------------- /dm_fast_mapping/_load_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/dm_fast_mapping/HEAD/dm_fast_mapping/_load_environment.py -------------------------------------------------------------------------------- /dm_fast_mapping/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/dm_fast_mapping/HEAD/dm_fast_mapping/_version.py -------------------------------------------------------------------------------- /dm_fast_mapping/load_from_disk_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/dm_fast_mapping/HEAD/dm_fast_mapping/load_from_disk_test.py -------------------------------------------------------------------------------- /dm_fast_mapping/load_from_docker_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/dm_fast_mapping/HEAD/dm_fast_mapping/load_from_docker_test.py -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/dm_fast_mapping/HEAD/docs/index.md -------------------------------------------------------------------------------- /examples/human_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/dm_fast_mapping/HEAD/examples/human_agent.py -------------------------------------------------------------------------------- /examples/random_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/dm_fast_mapping/HEAD/examples/random_agent.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/dm_fast_mapping/HEAD/setup.py --------------------------------------------------------------------------------