nerfstudio icon indicating copy to clipboard operation
nerfstudio copied to clipboard

Problem with blender dataset link

Open ChemrovKirill opened this issue 1 year ago • 1 comments

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:

  1. Install latest v1.1.3 version of nerfstudio
  2. Use ns-download-data blender command
  3. See error Or
  4. Visit the link: https://drive.google.com/uc?id=18JxhpWD-4ZmuFKLzKlAw-w5PpzZxXOcG
  5. See 404 error

Additional context Guess the problem is similar to issue #3052.

ChemrovKirill avatar Aug 28 '24 08:08 ChemrovKirill

I encountered the same issue. Specifically, there is an error with nerfstudio and a NotImplementedError with the eyefultower datasets

Inc44 avatar Aug 29 '24 23:08 Inc44

Encountered the same issue here. The gdrive link is still down as 404 error

luh-j avatar Sep 11 '24 19:09 luh-j

Same here. I found both of this gdrive link and nerf's official data link are broken.

onpix avatar Sep 23 '24 12:09 onpix

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:

  1. Download Dataset from Kaggle.
  2. 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.

Inc44 avatar Oct 20 '24 14:10 Inc44