ZeyuLing commited on
Commit
132d972
·
verified ·
1 Parent(s): c5f5ebf

Add MotionFix dataset card

Browse files
Files changed (1) hide show
  1. README.md +65 -0
README.md ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - text-to-motion
5
+ - motion-editing
6
+ language:
7
+ - en
8
+ tags:
9
+ - motion
10
+ - human-motion
11
+ - text-driven-motion-editing
12
+ - smpl
13
+ - amass
14
+ pretty_name: MotionFix
15
+ ---
16
+
17
+ # MotionFix
18
+
19
+ This dataset repository mirrors the released MotionFix data artifacts used for text-driven 3D human motion editing. MotionFix contains 6,730 triplets of source motion, target motion, and edit text.
20
+
21
+ Upstream resources:
22
+
23
+ - Project page: https://motionfix.is.tue.mpg.de/
24
+ - Dataset license page: https://motionfix.is.tue.mpg.de/license.html
25
+ - Code repository: https://github.com/athn-nik/motionfix
26
+ - Paper: https://www.arxiv.org/abs/2408.00712
27
+
28
+ ## Files
29
+
30
+ | file | size | sha256 | note |
31
+ |---|---:|---|---|
32
+ | `motionfix.pth.tar` | 5379761702 | `9d2de0ef80c97f5cf0fbe0579bf58ec22f504782aceacee8d72d9cbc93f8571c` | Full MotionFix release package with 6,730 triplets. |
33
+ | `motionfix_val.pth.tar` | 263046195 | `6ec5b2da91705c32cb495be3b931d2c42136fcbcf5763eadad365052307116e7` | Validation split package, 330 triplets. |
34
+ | `motionfix_test.pth.tar` | 805265131 | `cd2c59a69f0854f5b3cffeebc026fd6df2f63b75e813f6a6151cafa96b76eaea` | Test split package, 1,013 triplets. |
35
+ | `splits.json` | 94284 | `1f91f945b76c85b2780fd9dbdce32bde1f14988a06ceecf16cb2eb4e02d0de45` | Local train/val/test split list. Contains one train id, 006722, that is absent from the full package and annotation JSON. |
36
+ | `amt_motionfix_latest.json` | 6289990 | `8d999be2bffe086cfe2816aefdba944782dc3534e1c45e3fc4dcd5ac8755d203` | MotionFix metadata/annotation JSON, 6,730 entries. |
37
+
38
+ ## Data Format
39
+
40
+ The `.pth.tar` files are Python pickle files containing dictionaries keyed by MotionFix sample id. Each item contains:
41
+
42
+ - `text`: edit instruction.
43
+ - `motion_source`: source motion dictionary.
44
+ - `motion_target`: target motion dictionary.
45
+
46
+ Each motion dictionary contains `rots` `[T, 66]`, `trans` `[T, 3]`, `joint_positions` `[T, 22, 3]`, and `timestamp`. The observed validation and test packages use 120-frame clips.
47
+
48
+ ## Split Note
49
+
50
+ `motionfix.pth.tar` contains the full 6,730-triplet release. The local `splits.json` contains 6,731 unique ids (`train=5388`, `val=330`, `test=1013`), but train id `006722` is absent from both the full package and `amt_motionfix_latest.json`. Consumers should filter missing ids when using `splits.json`.
51
+
52
+ ## License
53
+
54
+ The MotionFix dataset license page states that the dataset is released under Creative Commons Attribution 4.0 International (CC-BY-4.0). The upstream code repository has a separate software license.
55
+
56
+ ## Citation
57
+
58
+ ```bibtex
59
+ @inproceedings{athanasiou2024motionfix,
60
+ title = {{MotionFix}: Text-Driven 3D Human Motion Editing},
61
+ author = {Athanasiou, Nikos and Ceske, Alpar and Diomataris, Markos and Black, Michael J. and Varol, G{\"u}l},
62
+ booktitle = {SIGGRAPH Asia 2024 Conference Papers},
63
+ year = {2024}
64
+ }
65
+ ```