littlekoyo commited on
Commit
333b888
·
verified ·
1 Parent(s): 2e52087

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +86 -0
README.md ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - other
5
+ tags:
6
+ - 3d
7
+ - animation
8
+ - mesh
9
+ - objaverse
10
+ - 4d
11
+ size_categories:
12
+ - 10K<n<100K
13
+ ---
14
+
15
+ # DynamicObjaverseProcessed
16
+
17
+ 67,084 animated (4D) 3D meshes curated from [Objaverse-XL](https://objaverse.allenai.org/), quality-ranked by ICP-based non-rigid deformation intensity.
18
+
19
+ ## Overview
20
+
21
+ Starting from 71,104 curated UIDs, the [processing pipeline](https://github.com/ou524u/DynamicObjaverseProcessing) downloads, unifies formats to `.glb`, and classifies meshes by animation quality:
22
+
23
+ ```
24
+ 71,104 curated UIDs → 67,746 downloads → 67,639 unified .glb → 67,084 true 4D meshes
25
+ ```
26
+
27
+ All meshes are in binary glTF (`.glb`) format with embedded animations.
28
+
29
+ ## Quintile Ranking
30
+
31
+ Meshes are ranked by **ICP residual** — a measure of non-rigid deformation after factoring out rigid-body motion (translation/rotation). Higher ICP = more interesting mesh deformation (e.g., character animation, cloth simulation).
32
+
33
+ | Quintile | Files | ICP Range | Size | Description |
34
+ |----------|-------|-----------|------|-------------|
35
+ | Q1 (top) | 13,417 | 0.039 – 0.996 | 32 GB | Strongest deformation |
36
+ | Q2 (high) | 13,417 | 0.027 – 0.039 | 44 GB | |
37
+ | Q3 (mid) | 13,417 | 0.017 – 0.027 | 51 GB | |
38
+ | Q4 (low) | 13,417 | 0.003 – 0.017 | 38 GB | |
39
+ | Q5 (bottom) | 13,416 | 0.000 – 0.003 | 25 GB | Subtle / rigid-body motion |
40
+
41
+ ## Files
42
+
43
+ - `classification.jsonl` — Full manifest with per-mesh metrics (ICP residual, amplitude, quintile, rank)
44
+ - `quintile_1_top.tar` — Top 20% by deformation intensity (13,417 `.glb` files)
45
+ - `quintile_2_high.tar` — High 20%
46
+ - `quintile_3_mid.tar` — Mid 20%
47
+ - `quintile_4_low.tar` — Low 20%
48
+ - `quintile_5_bottom.tar` — Bottom 20%
49
+
50
+ ## Usage
51
+
52
+ ```python
53
+ # Download and extract a specific quintile
54
+ from huggingface_hub import hf_hub_download
55
+ import tarfile
56
+
57
+ path = hf_hub_download("littlekoyo/DynamicObjaverseProcessed", "quintile_1_top.tar", repo_type="dataset")
58
+ with tarfile.open(path) as tar:
59
+ tar.extractall("./meshes")
60
+
61
+ # Load the classification manifest
62
+ import json
63
+ path = hf_hub_download("littlekoyo/DynamicObjaverseProcessed", "classification.jsonl", repo_type="dataset")
64
+ records = [json.loads(line) for line in open(path)]
65
+ ```
66
+
67
+ ### classification.jsonl fields
68
+
69
+ | Field | Description |
70
+ |-------|-------------|
71
+ | `uid` | UUID identifier (also the filename without `.glb`) |
72
+ | `classification` | `true_4d` / `static` / `error` |
73
+ | `icp_residual_normalized` | Non-rigid deformation intensity (normalized by bbox diagonal) |
74
+ | `max_displacement_normalized` | Raw vertex displacement (including rigid motion) |
75
+ | `overall_amplitude` | Keyframe amplitude metric (supplementary) |
76
+ | `quintile` | 1–5 (1 = most deformation, 5 = least; 0 for non-4D) |
77
+ | `icp_rank` | Rank within true_4d (1 = highest ICP) |
78
+ | `source_path` | Original file path in the processing pipeline |
79
+
80
+ ## Processing Pipeline
81
+
82
+ See [DynamicObjaverseProcessing](https://github.com/ou524u/DynamicObjaverseProcessing) for the full pipeline code.
83
+
84
+ ## License
85
+
86
+ The pipeline code is MIT licensed. Mesh data is sourced from Objaverse-XL and subject to its original licenses.