Skip to content
Merged
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions src_python/habitat_sim/utils/datasets_download.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,42 @@ def initialize_test_data_sources(data_path):
# "link": symlink to the data directory pointing to the active version directory
# "version": data version tag
# }
"hssd-hab": {
"source": "https://huggingface.co/datasets/hssd/hssd-hab.git",
"link": data_path + "scene_datasets/hssd-hab",
"version": "v0.2.3",
"requires_auth": True,
},
"hssd-raw": {
"source": "https://huggingface.co/datasets/hssd/hssd-scenes.git",
"link": data_path + "scene_datasets/hssd-scenes",
"version": "main",
"requires_auth": False,
Comment thread
mukulkhanna marked this conversation as resolved.
Outdated
},
"hssd-hab_internal": {
"source": "https://huggingface.co/datasets/fpss/fphab.git",
"link": data_path + "scene_datasets/fphab",
"version": "main",
"requires_auth": True,
},
"hssd-hab_objectnav_dataset": {
"source": "https://www.dropbox.com/s/26ribfiup5249b8/objectnav_hssd-hab_v0.2.3.zip",
"package_name": "objectnav_hssd-hab_v0.2.3.zip",
"link": data_path + "datasets/objectnav/hssd-hab",
"version": "v0.2.3",
},
"ai2thor-hab": {
"source": "https://huggingface.co/datasets/hssd/ai2thor-hab.git",
"link": data_path + "scene_datasets/ai2thor-hab",
"version": "main",
"requires_auth": True,
},
"procthor-hab_objectnav_dataset": {
"source": "https://www.dropbox.com/s/mdfpevn1srr37cr/objectnav_procthor-hab.zip",
"package_name": "objectnav_procthor-hab.zip",
"link": data_path + "datasets/objectnav/procthor-hab",
"version": "v1",
},
"habitat_test_scenes": {
"source": "https://huggingface.co/datasets/ai-habitat/habitat_test_scenes.git",
"link": data_path + "scene_datasets/habitat-test-scenes",
Expand Down