sarafridov / K-Planes

Other
479 stars 45 forks source link

some wrong with training D-NeRF datasets #12

Closed Spphire closed 1 year ago

Spphire commented 1 year ago

i downloaded a D-NeRF dataset to train as monocular video. using D-NeRF/dnerf_explicit.py as config. But it said that i miss the file "poses_bounds.npy" in dataset. did i download a wrong D-NeRF dataset? What should i do?

more informations:

error: image

where i download the dataset: https://github.com/albertpumarola/D-NeRF
image

dataset construction: image information of the poses of camera is in .json files i thought

Giodiro commented 1 year ago

Hi @Spphire The dataset is not being detected correctly. The logic for detecting if it's D-NeRF or another dataset, checks whether the data directory includes the string "dnerf". If you can change your directory structure, that's the easiest fix. Otherwise you can modify the detection logic here.

Feel free to re-open the issue if this doesn't solve the error.

Spphire commented 1 year ago

Hi @Spphire The dataset is not being detected correctly. The logic for detecting if it's D-NeRF or another dataset, checks whether the data directory includes the string "dnerf". If you can change your directory structure, that's the easiest fix. Otherwise you can modify the detection logic here.

Feel free to re-open the issue if this doesn't solve the error.

make the data directory includes the string "dnerf", that works. thanks a lot!!!