Linzhan commited on
Commit
e3bea6f
·
verified ·
1 Parent(s): 52ba04d

Add dataset card, copyright notice, indexes and tooling

Browse files
Files changed (1) hide show
  1. README.md +143 -0
README.md ADDED
@@ -0,0 +1,143 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ license_name: mixed-per-object-see-notice
4
+ license_link: https://huggingface.co/datasets/Linzhan/Objaverse-XL-Rigged-Animated/blob/main/NOTICE.md
5
+ pretty_name: Objaverse-XL Rigged & Animated Subset
6
+ language:
7
+ - en
8
+ size_categories:
9
+ - 1K<n<10K
10
+ task_categories:
11
+ - text-to-3d
12
+ tags:
13
+ - 3d
14
+ - animation
15
+ - rigging
16
+ - skeletal-animation
17
+ - motion
18
+ - objaverse
19
+ - glb
20
+ - gltf
21
+ configs:
22
+ - config_name: assets
23
+ default: true
24
+ data_files: metadata.csv
25
+ - config_name: animations
26
+ data_files: animations.csv
27
+ ---
28
+
29
+ # Objaverse-XL Rigged & Animated Subset
30
+
31
+ Every asset here carries **both a skeleton and at least one animation clip**, selected from
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
+ |---|---|
43
+ | assets | 7,373 (23 GB) |
44
+ | animation clips | 16,190 (~21.0 h) |
45
+ | assets with both rig and animation | 7,373 (100%) |
46
+ | single kinematic tree | 7,128 (96.7%) — 245 need pruning |
47
+ | joints per asset | min 3 · median 44 · p95 78 · max 344 |
48
+ | clip duration | median 2.03 s · p95 17.1 s · max 745 s |
49
+ | near-static clips (< 0.1 s) | 803 |
50
+ | vertices per asset | median 6,628 · p95 88,124 · max 1.52 M |
51
+
52
+ ## Contents
53
+
54
+ ```
55
+ glb/ 7,373 .glb assets, original filenames preserved
56
+ metadata.csv one row per asset
57
+ animations.csv one row per clip
58
+ scripts/ the glTF probe that derives both tables
59
+ ```
60
+
61
+ Filenames are unchanged, so every asset maps back to its Objaverse entry:
62
+
63
+ | pattern | count | meaning |
64
+ |---|---|---|
65
+ | `<24-hex>_{fbx,glb,gltf}.glb` | 5,305 | Objaverse-XL (GitHub); suffix is the original format |
66
+ | `<32-hex>.glb` | 2,068 | Objaverse 1.0 / Sketchfab UID |
67
+
68
+ ## metadata.csv
69
+
70
+ One row per asset, joined to `animations.csv` on `file`.
71
+
72
+ | column | meaning |
73
+ |---|---|
74
+ | `file` | path, e.g. `glb/00064e6f….glb` |
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
85
+
86
+ One row per animation, since motion datasets are counted in sequences rather than assets:
87
+ `file`, `object_id`, `clip_index`, `clip_name`, `duration_sec`, `keyframes`, `num_channels`,
88
+ `animated_nodes`, `animated_joints`, `drives_skeleton`.
89
+
90
+ `drives_skeleton` is the useful filter: **5,615 of 16,190 clips animate only non-joint nodes**
91
+ (object-level transforms rather than a character rig). Every asset has at least one clip that
92
+ does drive its skeleton.
93
+
94
+ ## Usage
95
+
96
+ ```python
97
+ from datasets import load_dataset
98
+
99
+ assets = load_dataset("Linzhan/Objaverse-XL-Rigged-Animated", "assets", split="train")
100
+ clips = load_dataset("Linzhan/Objaverse-XL-Rigged-Animated", "animations", split="train")
101
+
102
+ # assets needing no single-tree pruning, with a humanoid-scale rig
103
+ clean = assets.filter(lambda r: r["single_tree"] == "true" and 20 <= r["num_joints"] <= 100)
104
+
105
+ # clips that drive a skeleton and are not near-static
106
+ usable = clips.filter(lambda r: r["drives_skeleton"] == "true" and r["duration_sec"] >= 0.5)
107
+ ```
108
+
109
+ Both tables are derived from each file's glTF JSON chunk by `scripts/build_dataset.py`, so they
110
+ can be regenerated or extended without re-downloading anything.
111
+
112
+ ## Licensing and attribution
113
+
114
+ The assets in `glb/` were created by third parties and **retain their individual upstream
115
+ licences**, which are heterogeneous: various Creative Commons terms for Sketchfab objects, and
116
+ whatever applies to the GitHub-sourced ones. No blanket licence covers the collection and none is
117
+ asserted here — publishing them is not a licence grant. Resolve the licence for a given
118
+ `object_id` through the Objaverse-XL annotations before using or redistributing an asset.
119
+
120
+ The derived material — `metadata.csv`, `animations.csv`, `scripts/` and this card — is offered
121
+ under **ODC-BY 1.0**, matching the upstream Objaverse metadata.
122
+
123
+ Rights holders who want an asset removed can open an issue on this repository; see
124
+ [`NOTICE.md`](NOTICE.md) for the full statement and the takedown process.
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,
137
+ title = {Objaverse-XL: A Universe of 10M+ 3D Objects},
138
+ author = {Deitke, Matt and Liu, Ruoshi and Wallingford, Matthew and others},
139
+ booktitle = {Advances in Neural Information Processing Systems},
140
+ pages = {35799--35813},
141
+ year = {2023}
142
+ }
143
+ ```