Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Humanoids Tutorial: ValueError: Requested RearrangeDataset config paths 'data/hab3_bench_assets/episode_datasets/small_large.json.gz' or 'data/scene_datasets' are not downloaded locally. Aborting. #2510

Open
theutsavpanchal opened this issue Nov 29, 2024 · 0 comments

Comments

@theutsavpanchal
Copy link

I have an issue while running the humanoids tutorial. I have already downloaded the hab3_bench_assets using the following command.
python -m habitat_sim.utils.datasets_download --uids hab3_bench_assets --data-path data/

I can see that the file small_large.json.gz in the directory, still the error persists.

# Define the actions

action_dict = {
    "humanoid_joint_action": HumanoidJointActionConfig()
}
env = init_rearrange_env(agent_dict, action_dict)

ValueError Traceback (most recent call last)
Cell In[4], line 6
1 # Define the actions
3 action_dict = {
4 "humanoid_joint_action": HumanoidJointActionConfig()
5 }
----> 6 env = init_rearrange_env(agent_dict, action_dict)

Cell In[2], line 46
44 hab_cfg = make_hab_cfg(agent_dict, action_dict)
45 res_cfg = OmegaConf.create(hab_cfg)
---> 46 return Env(res_cfg)

File ~/uutsav/habitat-sim/habitat-lab-main/habitat-lab/habitat/core/env.py:88, in Env.init(self, config, dataset)
86 self._dataset = dataset
87 if self._dataset is None and config.dataset.type:
---> 88 self._dataset = make_dataset(
89 id_dataset=config.dataset.type, config=config.dataset
90 )
92 self._current_episode = None
93 self._episode_iterator = None

File ~/uutsav/habitat-sim/habitat-lab-main/habitat-lab/habitat/datasets/registration.py:22, in make_dataset(id_dataset, **kwargs)
19 _dataset = registry.get_dataset(id_dataset)
...
61 )
63 check_and_gen_physics_config()
65 super().init(config)

ValueError: Requested RearrangeDataset config paths 'data/hab3_bench_assets/episode_datasets/small_large.json.gz' or 'data/scene_datasets' are not downloaded locally. Aborting.

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant