I want to know where my downloaded Objects will be saved。
annotations = oxl.get_annotations(
download_dir="/media/disk3/dataset/objaverse-xl/data_downloaded" # default download directory
)
annotations
alignment_annotations = oxl.get_alignment_annotations(
download_dir="/media/disk3/dataset/objaverse-xl/data_downloaded" # default download directory
)
alignment_annotations
sampled_df = annotations.groupby('source').apply(lambda x: x.sample(25)).reset_index(drop=True)
print(sampled_df)
oxl.download_objects(
objects=sampled_df,
download_dir="/media/disk3/dataset/objaverse-xl/data_downloaded",
processes=None,
handle_found_object=None,
handle_modified_object=None,
handle_missing_object=None,
save_repo_format=None,
handle_new_object=None
)

I want to know where my downloaded Objects will be saved。
annotations = oxl.get_annotations(
download_dir="/media/disk3/dataset/objaverse-xl/data_downloaded" # default download directory
)
annotations
alignment_annotations = oxl.get_alignment_annotations(
download_dir="/media/disk3/dataset/objaverse-xl/data_downloaded" # default download directory
)
alignment_annotations
sampled_df = annotations.groupby('source').apply(lambda x: x.sample(25)).reset_index(drop=True)
print(sampled_df)
oxl.download_objects(
objects=sampled_df,
download_dir="/media/disk3/dataset/objaverse-xl/data_downloaded",
processes=None,
handle_found_object=None,
handle_modified_object=None,
handle_missing_object=None,
save_repo_format=None,
handle_new_object=None
)