have trouble downloading data

#5
by muses0229 - opened

Thanks for sharing this dataset!
But when I pulling files via git lfs pull, part of resources fail to download due to XET storage redirection. Files downloaded with git lfs pull:

GIT_LFS_SKIP_SMUDGE=1 git clone https://huggingface.co/datasets/ethz-vlg/mv3dpt-datasets
cd mv3dpt-datasets

These files success:

git lfs pull --include="dex-ycb-multiview.tar.gz"
git lfs pull --include="dex-ycb-multiview--dust3r-depth.tar.gz"
git lfs pull --include="panoptic-multiview.tar.gz"
git lfs pull --include="kubric-multiview--test.tar.gz"
git lfs pull --include="kubric-multiview--test--dust3r-depth.tar.gz"
git lfs pull --include="kubric-multiview--train.micro.0900-0999.tar.gz"
git lfs pull --include="kubric-multiview--train.mini.0500-0999.tar.gz"
git lfs pull --include="kubric-multiview--train.mini.0700-0999.tar.gz"

These files fail, redirected to XET storage and inaccessible:

git lfs pull --include="kubric-multiview--train.mini.0700-0999--dust3r-depth.tar.gz"
git lfs pull --include="kubric-multiview--train.full.0031-1000.tar.gz"
git lfs pull --include="kubric-multiview--train.full.1001-2000.tar.gz"
git lfs pull --include="kubric-multiview--train.full.2001-3000.tar.gz"
git lfs pull --include="kubric-multiview--train.full.3001-4000.tar.gz"
git lfs pull --include="kubric-multiview--train.full.4001-5000.tar.gz"

Could you provide non-XET download links for these files, or any other way to solve this? "hf download" also can't work.

Computer Vision and Learning Group, ETH Zürich org
edited 11 days ago

The data is relatively large, you might be facing bandwidth limits. Have you tried setting your HF_TOKEN for example like this:

pip install -U huggingface_hub

export HF_TOKEN=YOUR_TOKEN
export HF_XET_HIGH_PERFORMANCE=1

mkdir -p datasets
hf download ethz-vlg/mv3dpt-datasets \
  kubric-multiview--train.full.0031-1000.tar.gz \
  --repo-type dataset \
  --local-dir datasets

Sign up or log in to comment