Linzhan commited on
Commit
2a4a4d9
·
verified ·
1 Parent(s): da3186e

Standalone dataset card; drop constant column; clarify animated_joints

Browse files
Files changed (1) hide show
  1. README.md +18 -12
README.md CHANGED
@@ -32,11 +32,14 @@ Every asset here carries **both a skeleton and at least one animation clip**, se
32
  [Objaverse / Objaverse-XL](https://objaverse.allenai.org/). Rigs range from 3 to 344 joints and
33
  span characters as well as articulated rigid objects.
34
 
35
- This is the **raw, unprocessed** Objaverse-XL source pool behind the `UniML3D` dataset used by
36
- **UniMate** (SIGGRAPH Asia 2026), which generates articulated motion for arbitrary skeletal
37
- topologies from a text prompt. UniML3D combines this pool with Truebones and Mixamo, then applies
38
- filtering, semantic annotation and canonicalization; none of that has been applied here, so the
39
- pipeline can be reproduced or replaced.
 
 
 
40
 
41
  | | |
42
  |---|---|
@@ -75,10 +78,10 @@ One row per asset, joined to `animations.csv` on `file`.
75
  | `object_id`, `id_family` | Objaverse id and which family it came from |
76
  | `source_format` | original format before GLB conversion; empty for Sketchfab |
77
  | `num_vertices`, `num_meshes`, `num_nodes` | geometry size |
78
- | `num_skins`, `num_joints` | rig size |
79
  | `num_skeleton_roots`, `single_tree` | number of kinematic trees; `single_tree` is `false` when the asset needs single-tree pruning |
80
  | `num_animations`, `total_duration_sec`, `max_keyframes` | animation budget |
81
- | `animated_joints` | joints driven by at least one clip |
82
  | `generator` | exporter string (`Sketchfab-*`, `Khronos glTF Blender I/O *`, …) |
83
 
84
  ## animations.csv
@@ -125,12 +128,15 @@ Rights holders who want an asset removed can open an issue on this repository; s
125
 
126
  ## Citation
127
 
 
 
128
  ```bibtex
129
- @inproceedings{mou2026unimate,
130
- title = {UniMate: Topology-Aware Motion Generation for Arbitrary Skeletons},
131
- author = {Mou, Linzhan},
132
- booktitle = {SIGGRAPH Asia 2026 Conference Papers},
133
- year = {2026}
 
134
  }
135
 
136
  @inproceedings{deitke2023objaversexl,
 
32
  [Objaverse / Objaverse-XL](https://objaverse.allenai.org/). Rigs range from 3 to 344 joints and
33
  span characters as well as articulated rigid objects.
34
 
35
+ Objaverse-XL indexes over 10 million objects, but only a small fraction carry a usable rig **and**
36
+ motion on it. This subset isolates that fraction: every file was checked to contain at least one
37
+ skin with joints and at least one animation clip that actually drives them.
38
+
39
+ Assets are provided **exactly as downloaded** — no filtering, retargeting, canonicalization or
40
+ joint renaming has been applied — so you can run your own preprocessing on top. The accompanying
41
+ tables expose the structural properties needed to plan that preprocessing, such as which assets
42
+ have a disconnected skeleton or which clips are near-static.
43
 
44
  | | |
45
  |---|---|
 
78
  | `object_id`, `id_family` | Objaverse id and which family it came from |
79
  | `source_format` | original format before GLB conversion; empty for Sketchfab |
80
  | `num_vertices`, `num_meshes`, `num_nodes` | geometry size |
81
+ | `num_joints` | rig size |
82
  | `num_skeleton_roots`, `single_tree` | number of kinematic trees; `single_tree` is `false` when the asset needs single-tree pruning |
83
  | `num_animations`, `total_duration_sec`, `max_keyframes` | animation budget |
84
+ | `animated_joints` | joints driven by **any** clip the union across all of them, so it can exceed the per-clip figure in `animations.csv` |
85
  | `generator` | exporter string (`Sketchfab-*`, `Khronos glTF Blender I/O *`, …) |
86
 
87
  ## animations.csv
 
128
 
129
  ## Citation
130
 
131
+ If you use this subset, please cite Objaverse-XL as the source of the assets.
132
+
133
  ```bibtex
134
+ @misc{objaverse_xl_rigged_animated,
135
+ title = {Objaverse-XL Rigged and Animated Subset},
136
+ author = {Mou, Linzhan},
137
+ year = {2026},
138
+ url = {https://huggingface.co/datasets/Linzhan/Objaverse-XL-Rigged-Animated},
139
+ note = {Objaverse-XL assets carrying both a skeleton and animation, with derived metadata}
140
  }
141
 
142
  @inproceedings{deitke2023objaversexl,