Aetsam1 commited on
Commit
95e7cde
·
verified ·
1 Parent(s): 00a029e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +139 -0
README.md CHANGED
@@ -1,3 +1,142 @@
1
  ---
2
  license: cc-by-nc-4.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-nc-4.0
3
+ pretty_name: Eyes, JAPAN MoCap (Raw)
4
+ task_categories:
5
+ - other
6
+ tags:
7
+ - motion-capture
8
+ - mocap
9
+ - human-motion
10
+ - animation
11
+ - 3d
12
+ - c3d
13
+ - bvh
14
+ - fbx
15
+ - vicon
16
+ - motion-generation
17
+ size_categories:
18
+ - 1K<n<10K
19
+ language:
20
+ - en
21
+ modalities:
22
+ - 3d
23
+ - video
24
+ configs:
25
+ - config_name: default
26
+ data_files:
27
+ - split: train
28
+ path: metadata.parquet
29
+ # ---- Gated access: dataset stays public, download requires accepting terms ----
30
+ extra_gated_prompt: >-
31
+ This dataset is released under CC BY-NC 4.0 for non-commercial research and
32
+ educational use only. By requesting access you agree to (1) use it for
33
+ non-commercial purposes only, (2) credit Eyes, JAPAN in any publication or
34
+ derivative work, and (3) not redistribute the raw data outside these terms.
35
+ For commercial licensing, contact info@nowhere.co.jp.
36
+ extra_gated_fields:
37
+ Name: text
38
+ Affiliation: text
39
+ Intended use: text
40
+ I will use this dataset for non-commercial purposes only: checkbox
41
  ---
42
+
43
+ # Eyes, JAPAN MoCap Dataset (Raw)
44
+
45
+ Professional optical motion-capture data, **fully owned and copyrighted by
46
+ Eyes, JAPAN**, released free for non-commercial research and education.
47
+ Commercial use requires a separate paid license.
48
+
49
+ **4,139 clips / 10,255 files**, **45 action categories**, **57 subjects**,
50
+ delivered in multiple industry-standard formats.
51
+
52
+ - **License:** [CC BY-NC 4.0](https://creativecommons.org/licenses/by-nc/4.0/) — academic/non-commercial use is free.
53
+ - **Commercial license:** purchase required — contact `info@nowhere.co.jp`.
54
+ - **SMPL-X version:** a processed version of this data fitted to SMPL-X body models is available at [`eyesjapan/eyesjapan-mocap-smplx`](https://huggingface.co/datasets/eyesjapan/eyesjapan-mocap-smplx) (different license — see that card).
55
+
56
+ ## Dataset structure
57
+
58
+ ```
59
+ ├── README.md
60
+ ├── metadata_clips.csv # 1 row per clip (recommended entry point)
61
+ ├── metadata_files.csv # 1 row per file
62
+ └── data/
63
+ ├── free/ # 2,960 clips
64
+ │ └── <category>/<clip_id>/ e.g. free-accident-dodge-azumi/
65
+ │ ├── 00003-....bip
66
+ │ ├── 00004-....bvh
67
+ │ ├── 00005-....c3d
68
+ │ └── 00006-....fbx
69
+ └── premium/ # 1,179 clips
70
+ └── <category>/<clip_id>/...
71
+ ```
72
+
73
+ Every file has a unique zero-padded 5-digit ID; names follow
74
+ `tier-category-action-subject`.
75
+
76
+ > Cleanup before upload: remove the stray `...catwalk-NA.mnm` and
77
+ > `...hiphop-combo3-umeda.db` (a marker-name-map and a Thumbs.db-type file).
78
+
79
+ ### File formats
80
+
81
+ | Ext | Count | Description |
82
+ |---|---|---|
83
+ | `.c3d` | 3,963 | Raw optical marker data (biomechanics standard) |
84
+ | `.bip` | 1,604 | 3ds Max Character Studio Biped motion |
85
+ | `.csm` | 1,067 | Character Studio marker file |
86
+ | `.v` / `.vsk` | 886 / 255 | Vicon raw capture / skeleton calibration |
87
+ | `.bvh` | 788 | Skeletal animation (hierarchy + rotations) |
88
+ | `.fbx` | 690 | Autodesk FBX skeletal animation |
89
+ | `.mov` / `.m4v` | 886 / 116 | Reference video of the capture session |
90
+
91
+ <!-- TODO: frame rate (e.g. 120 fps), marker set, coordinate system & units,
92
+ whether root motion is included. -->
93
+
94
+ ### metadata_clips.csv columns
95
+
96
+ `clip_id`, `tier` (free/premium), `category` (45 categories), `action`
97
+ (1,624 labels), `subject` (57 subjects), `formats` (e.g. `bip,bvh,c3d,fbx`),
98
+ `n_files`, `has_video`.
99
+
100
+ ## Usage
101
+
102
+ ```python
103
+ from datasets import load_dataset
104
+ from huggingface_hub import hf_hub_download
105
+
106
+ index = load_dataset("eyesjapan/eyesjapan-mocap", split="train")
107
+ walks = index.filter(lambda x: x["category"] == "walk" and "bvh" in x["formats"])
108
+
109
+ path = hf_hub_download(
110
+ repo_id="eyesjapan/eyesjapan-mocap", repo_type="dataset",
111
+ filename="data/free/accident/free-accident-dodge-azumi/00004-free-accident-dodge-azumi.bvh",
112
+ )
113
+ ```
114
+
115
+ ## Data collection & consent
116
+
117
+ <!-- TODO: capture hardware/software, studio, subject recruitment. Reference
118
+ videos show identifiable performers — confirm all subjects consented to public
119
+ research release, or exclude the .mov/.m4v files. -->
120
+
121
+ ## Licensing
122
+
123
+ - ✅ Academic research, education, personal projects — free under CC BY-NC 4.0
124
+ - ✅ Modification & redistribution — with attribution, same non-commercial terms
125
+ - ❌ Any commercial use without a separate license from Eyes, JAPAN
126
+ - Commercial licensing: `info@nowhere.co.jp`
127
+
128
+ ## Citation
129
+
130
+ ```bibtex
131
+ @misc{eyesjapan_mocap_2026,
132
+ title = {Eyes, JAPAN MoCap Dataset (Raw)},
133
+ author = {{Eyes, JAPAN}},
134
+ year = {2026},
135
+ url = {https://huggingface.co/datasets/eyesjapan/eyesjapan-mocap}
136
+ }
137
+ ```
138
+
139
+ ## Takedown
140
+
141
+ If any content infringes your rights, contact `info@nowhere.co.jp` and we
142
+ will address it promptly.