cannot download mv-kubric dataset

#4
by LeoLopezt - opened

return with a 400 bad request. can you fix it please?

Computer Vision and Learning Group, ETH Zürich org

could you please elaborate on how you have tried to download the data? did you follow https://github.com/ethz-vlg/mvtracker?tab=readme-ov-file#datasets?

I think he's referring to the training set files (e.g., kubric-multiview--train.full.0031-1000.tar.gz). I'm having this issue too I think.

could you please elaborate on how you have tried to download the data? did you follow https://github.com/ethz-vlg/mvtracker?tab=readme-ov-file#datasets?

I'm trying to dowmload https://huggingface.co/datasets/ethz-vlg/mv3dpt-datasets/blob/main/kubric-multiview--train.full.0031-1000.tar.gz, the same as 1001-2000, 2001-3000, 3001-4000, 4001-5000

Computer Vision and Learning Group, ETH Zürich org

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