objaverse-xl icon indicating copy to clipboard operation
objaverse-xl copied to clipboard

Download Objects problem

Open huohuohuohuohuohuohuohuo opened this issue 9 months ago • 2 comments

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?