mysigner commited on
Commit
39fd722
·
verified ·
1 Parent(s): 6728d42

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +102 -3
README.md CHANGED
@@ -1,3 +1,102 @@
1
- ---
2
- license: cc-by-nc-sa-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-sa-4.0
3
+ task_categories:
4
+ - other
5
+ language:
6
+ - en
7
+ - ms
8
+ tags:
9
+ - sign-language
10
+ - malaysian-sign-language
11
+ - bahasa-isyarat-malaysia
12
+ - bim
13
+ - motion-capture
14
+ - fbx
15
+ - 3d-animation
16
+ - sign-generation
17
+ - isolated-sign-language-recognition
18
+ pretty_name: "MySign: 3D Sign Generation for Bahasa Isyarat Malaysia"
19
+ size_categories:
20
+ - 1K<n<10K
21
+ configs:
22
+ - config_name: metadata
23
+ data_files:
24
+ - split: train
25
+ path: metadata.csv
26
+ ---
27
+
28
+ # MySign: A High-Fidelity Motion-Capture Dataset for 3D Sign Generation in Bahasa Isyarat Malaysia
29
+
30
+ **MySign** is a high-fidelity motion-capture dataset for 3D sign generation in
31
+ **Bahasa Isyarat Malaysia (BIM)** — Malaysian Sign Language. It contains skeletal
32
+ animations of **1,194 unique BIM vocabulary items** performed by **5 deaf signers**
33
+ (Signer001–Signer005), totalling **5,343 motion-capture clips** stored in Autodesk
34
+ FBX format.
35
+
36
+ The file name of each `.fbx` encodes the English gloss for the corresponding BIM sign.
37
+
38
+ ## Structure
39
+
40
+ ```
41
+ MySign/
42
+ ├── Signer001/{GLOSS}.fbx # ~1068 signs per signer
43
+ ├── Signer002/{GLOSS}.fbx
44
+ ├── Signer003/{GLOSS}.fbx
45
+ ├── Signer004/{GLOSS}.fbx
46
+ ├── Signer005/{GLOSS}.fbx
47
+ ├── metadata.csv # gloss / signer / take index
48
+ └── croissant.json # ML Commons Croissant metadata
49
+ ```
50
+
51
+ ## metadata.csv columns
52
+
53
+ | column | description |
54
+ |-------------|-------------------------------------------------------------------|
55
+ | file_name | Relative path of the FBX file (e.g. `Signer001/Above.fbx`) |
56
+ | gloss | English gloss label for the BIM sign; synonyms separated by ` / ` |
57
+ | signer_id | One of `Signer001` .. `Signer005` |
58
+ | take | Take number; defaults to 1 unless multiple recordings exist |
59
+
60
+ ## Loading
61
+
62
+ The FBX files are 3D motion-capture recordings and require a tool such as Blender,
63
+ Autodesk FBX SDK, or `pyfbx` to parse. The `metadata.csv` provides the mapping from
64
+ each file to its gloss label and signer.
65
+
66
+ ```python
67
+ import pandas as pd
68
+ from huggingface_hub import hf_hub_download
69
+
70
+ # Load the index
71
+ df = pd.read_csv(
72
+ hf_hub_download("mysigner/MySign", "metadata.csv", repo_type="dataset")
73
+ )
74
+
75
+ # Download a single FBX (e.g. the BIM sign for "ABOVE" by Signer001)
76
+ row = df.query("gloss == 'ABOVE' and signer_id == 'Signer001'").iloc[0]
77
+ fbx_path = hf_hub_download("mysigner/MySign", row["file_name"], repo_type="dataset")
78
+ print(f"Downloaded to: {fbx_path}")
79
+ ```
80
+
81
+ ## Intended use
82
+
83
+ MySign is intended to support research on:
84
+
85
+ - 3D sign language generation and synthesis for BIM
86
+ - Isolated Sign Language recognition (ISLR)
87
+ - Sign language animation, avatars, and accessibility tools for the Malaysian Deaf community
88
+
89
+ ## License
90
+
91
+ CC BY-NC-SA 4.0 — non-commercial use, with attribution and same-license sharing.
92
+
93
+ ## Citation
94
+
95
+ ```bibtex
96
+ @misc{mysign2026,
97
+ title = {MySign: A High-Fidelity Motion-Capture Dataset for 3D Sign Generation in Bahasa Isyarat Malaysia},
98
+ author = {mysigner},
99
+ year = {2026},
100
+ url = {https://huggingface.co/datasets/mysigner/MySign}
101
+ }
102
+ ```