Datasets:
Upload dataset_metadata.json
Browse files- dataset_metadata.json +63 -0
dataset_metadata.json
ADDED
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"@context": {
|
3 |
+
"name": "https://schema.org/name",
|
4 |
+
"description": "https://schema.org/description",
|
5 |
+
"license": "https://schema.org/license",
|
6 |
+
"creator": "https://schema.org/creator",
|
7 |
+
"version": "https://schema.org/version",
|
8 |
+
"data": "https://mlcommons.org/croissant/data",
|
9 |
+
"fileObject": "https://mlcommons.org/croissant/fileObject",
|
10 |
+
"columns": "https://mlcommons.org/croissant/columns",
|
11 |
+
"recordSet": "https://mlcommons.org/croissant/recordSet",
|
12 |
+
"url": "https://schema.org/url",
|
13 |
+
"encodingFormat": "https://schema.org/encodingFormat",
|
14 |
+
"dataType": "https://mlcommons.org/croissant/dataType",
|
15 |
+
"isKey": "https://mlcommons.org/croissant/isKey",
|
16 |
+
"value": "https://mlcommons.org/croissant/value",
|
17 |
+
"constraints": "https://mlcommons.org/croissant/constraints",
|
18 |
+
"multiple": "https://mlcommons.org/croissant/multiple",
|
19 |
+
"citation": "https://schema.org/citation",
|
20 |
+
"datePublished": "https://schema.org/datePublished",
|
21 |
+
"@type": "@type"
|
22 |
+
},
|
23 |
+
"@type": "https://schema.org/Dataset",
|
24 |
+
"name": "X2C",
|
25 |
+
"description": "X2C (Anything to Control) is a dataset featuring nuanced robotic facial expressions for realistic humanoid imitation and facial expression generation. It contains 100,000 images of a robot displaying diverse facial expressions, each annotated with 30 control values that can be applied to the physical robot to recreate the corresponding expression. For more details, please refer to our paper: X2C: A Dataset Featuring Nuanced Facial Expressions for Realistic Humanoid Imitation. Ource code is available at: https://lipzh5.github.io/X2CNet/.",
|
26 |
+
"license": "https://creativecommons.org/licenses/by/4.0/",
|
27 |
+
"version": "1.0",
|
28 |
+
"creator": [
|
29 |
+
{
|
30 |
+
"name": "Anonymous",
|
31 |
+
"@type": "https://schema.org/Person"
|
32 |
+
}
|
33 |
+
],
|
34 |
+
"citation": "X2C: A Dataset Featuring Nuanced Facial Expressions for Realistic Humanoid Imitation. 2025.",
|
35 |
+
"datePublished": "2025-05-15",
|
36 |
+
"data": [
|
37 |
+
{
|
38 |
+
"name": "control_vectors",
|
39 |
+
"description": "Control parameters for facial expression imitation, mapped from image filenames.",
|
40 |
+
"fileObject": {
|
41 |
+
"name": "metadata.jsonl",
|
42 |
+
"encodingFormat": "application/jsonlines"
|
43 |
+
},
|
44 |
+
"columns": [
|
45 |
+
{
|
46 |
+
"name": "file_name",
|
47 |
+
"description": "Name of the image file",
|
48 |
+
"dataType": "string",
|
49 |
+
"isKey": true
|
50 |
+
},
|
51 |
+
{
|
52 |
+
"name": "ctrl_value",
|
53 |
+
"description": "Control vector used to drive facial actuators",
|
54 |
+
"dataType": "number",
|
55 |
+
"multiple": true
|
56 |
+
}
|
57 |
+
],
|
58 |
+
"recordSet": {
|
59 |
+
"url": "metadata.jsonl"
|
60 |
+
}
|
61 |
+
}
|
62 |
+
]
|
63 |
+
}
|