You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am encountering the following warning and error when running the command:
python examples/download_mvl_data/download_and_unzip.py
The output is as follows:
/home/laplace/miniconda3/envs/mv_datasets/lib/python3.9/site-packages/hydra/_internal/config_loader_impl.py:216: UserWarning: provider=hydra.searchpath in main, path=/home/laplace/miniconda3/envs/mv_datasets/lib/python3.9/site-packages/multiview_datasets/config is not available.
warnings.warn(
In 'cfg': Could not load 'google_drive_lists_ids'.
Set the environment variable HYDRA_FULL_ERROR=1 for a complete stack trace.
It seems that the google_drive_lists_ids file cannot be loaded, and the search path does not include the required configuration. Could you please guide me on how to resolve this issue or if there's a missing setup step?
Thank you for your assistance!
The text was updated successfully, but these errors were encountered:
I'm sorry about this problem. We had some issues with our Google account, so we had to migrate to another host. The datasets you want to download are hosted in (Huggingface 🤗)](https://huggingface.co/datasets/EnriqueSolarte/mvl_datasets). For more information, you can also see multi-view datasets pkg (A new version from this REPO - v1.0.24.11.24).
To summarize, you can do the following:
# Install huggingface CLI
pip install -U "huggingface_hub[cli]"# Login to your account
huggingface-cli login
# Login to your account
huggingface-cli whoami
# To download and save the dataset in DIR_DATASET
python examples/download_mvl_data/mvl_datasets.py dir_mvl_dataset=${DIR_DATASET}# To download mp3d_fpe_mvl, hm3d_mvl, or zind_mvl
python examples/download_mvl_data/mvl_datasets.py dir_mvl_dataset=${DIR_DATASET} dataset=${DATASET_NAME}# To use the default OmegaConfig in the examples/download_mvl_data/cfg.yaml
python examples/download_mvl_data/mvl_datasets.py
# To visualize and check the data
python examples/visualizations/vis_2d_boundaries.py dir_datasets=${DIR_DATASET}
python examples/visualizations/vis_3d_boundaries.py dir_datasets=${DIR_DATASET}
Hi,
I am encountering the following warning and error when running the command:
python examples/download_mvl_data/download_and_unzip.py
The output is as follows:
/home/laplace/miniconda3/envs/mv_datasets/lib/python3.9/site-packages/hydra/_internal/config_loader_impl.py:216: UserWarning: provider=hydra.searchpath in main, path=/home/laplace/miniconda3/envs/mv_datasets/lib/python3.9/site-packages/multiview_datasets/config is not available.
warnings.warn(
In 'cfg': Could not load 'google_drive_lists_ids'.
Config search path:
provider=hydra, path=pkg://hydra.conf
provider=main, path=file:///home/laplace/multiview-datasets/examples/download_mvl_data
provider=hydra.searchpath in main, path=file:///home/laplace/miniconda3/envs/mv_datasets/lib/python3.9/site-packages/multiview_datasets/config
provider=schema, path=structured://
Set the environment variable HYDRA_FULL_ERROR=1 for a complete stack trace.
It seems that the google_drive_lists_ids file cannot be loaded, and the search path does not include the required configuration. Could you please guide me on how to resolve this issue or if there's a missing setup step?
Thank you for your assistance!
The text was updated successfully, but these errors were encountered: