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

Is Objaverse 1.0 a subset of Objaverse-XL? #16

Open dunbar12138 opened 10 months ago

dunbar12138 commented 10 months ago

If so, how could one filter those objects that are in Objaverse-XL but not in 1.0?

mattdeitke commented 10 months ago

Yes, see here: https://colab.research.google.com/drive/1NpR2MLs6ydXm4XWT_ovpM16CtzvGJVC7?usp=sharing

Basically:

from objaverse.xl import get_annotations
df = get_annotations()
new_df = df[df["source"] != "sketchfab"]