allenai / objaverse-xl

🪐 Objaverse-XL is a Universe of 10M+ 3D Objects. Contains API Scripts for Downloading and Processing!
https://objaverse.allenai.org/
Apache License 2.0
704 stars 40 forks source link

Download Objects problem #6

Open huohuohuohuohuohuohuohuo opened 11 months ago

huohuohuohuohuohuohuohuo commented 11 months ago

Hi, mattdeitke While downloading, I encountered some issues. Here is the script I used:

annotations = oxl.get_annotations(download_dir="~/.objaverse" ) sampled_df = annotations.groupby('fileType').apply(lambda x: x.sample(1)).reset_index(drop=True) sampled_df = sampled_df[sampled_df['fileType'] == 'obj'].reset_index(drop=True) oxl.download_objects(download_dir='./objaverse', objects=sampled_df, processes=1)

2023-09-21 15-10-54屏幕截图

I sampled random .obj objects and It looks like successful, but I couldn't get any .obj file. Do you have any suggestions?

mattdeitke commented 11 months ago

Please read the tutorial where it mentions the handler functions and save repo format.

by default GitHub repos are not saved.

lulcai commented 5 months ago

same issue