Problem with blender dataset link
I'm trying to download blender dataset with ns-download-data blender command. Got RetrievalError:
gdown.exceptions.FileURLRetrievalError: Failed to retrieve file url:
Cannot retrieve the public link of the file. You may need to change
the permission to 'Anyone with the link', or have had many accesses.
Check FAQ in https://github.com/wkentaro/gdown?tab=readme-ov-file#faq.
You may still be able to access the file from the browser:
https://drive.google.com/uc?id=18JxhpWD-4ZmuFKLzKlAw-w5PpzZxXOcG
but Gdown can't. Please check connections and permissions.
To Reproduce Steps to reproduce the behavior:
- Install latest v1.1.3 version of nerfstudio
- Use
ns-download-data blendercommand - See error Or
- Visit the link: https://drive.google.com/uc?id=18JxhpWD-4ZmuFKLzKlAw-w5PpzZxXOcG
- See 404 error
Additional context Guess the problem is similar to issue #3052.
I encountered the same issue. Specifically, there is an error with nerfstudio and a NotImplementedError with the eyefultower datasets
Encountered the same issue here. The gdrive link is still down as 404 error
Same here. I found both of this gdrive link and nerf's official data link are broken.
I found a solution for downloading the Blender dataset after encountering an issue with the original NeRF implementation last month (Issue). Here's how I resolved it:
- Download Dataset from Kaggle.
- Run the following commands, or perform the steps manually:
mkdir -p ~/data/blender
unzip archive.zip 'nerf_synthetic/*' -d ~/
mv ~/nerf_synthetic/* ~/data/blender/
rm -rf ~/nerf_synthetic
This process will organize the dataset into the desired directory structure.