-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Camera conventions & Num objects in the processed GObjaverse #8
Comments
Thank you! Regarding the date preprocessing, we use this script to download and convert the format: prepare_dataset_objaverse. For the size, we only store RGB and normal maps, so it's a little bit smaller than the Gobjaverse. |
Thanks for prompt reply! I have downloaded the processed h5 file part 1 from the hub, but the loaded c2w are all 0s: Lines 120 to 121 in c32ae77
I have confirmed that the h5 file is not empty and containing 264755 keys, and the idx are valid integers within a reasonable range. Is there any hint on how to solve this? |
Oh, if you want to download part of the dataset, you have to download the root file "gobjaverse.h5" and the "gobjaverse_part_xx.h5". Please also refer to gobjaverse.h5 for the dataloader. The gobjaverse.h5 contains camera poses and part_xx contains rendering information. |
Yes, both are present under the ./dataset. I manually changed the range(30) inside the downloading script. The eval_all.py works fine on my own processed h5 data. But the downloaded part doesn't. |
Is it because the dataloader assumes all the meta information contained in "gobjaverse.h5" are available, which is not true when I have downloaded only partial data? |
Yes, could be, could you please try the first 10 keys of your download data? they are stored in the first part. |
I just checked there are 8275 samples in part one, please try this scenes_name = np.array(sorted(self.metas.keys()))[:8275] at here . |
I tried the first 1000 and it works. Appreciated! |
Hi, I preprocess gobj dataset by my own, and I delete all part file and only retain the merged .h5 file, is it ok for training? |
Yes, all information should already be stored in .h5 after the packing. |
Hi Anpei, thanks for the great work and your effort in processing the GOBjaverse!
I have following questions on the processed data:
Thanks!
The text was updated successfully, but these errors were encountered: