Upload croissant.json
Browse files- croissant.json +60 -0
croissant.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"@context": {
|
| 3 |
+
"@vocab": "https://mlcommons.org/croissant/",
|
| 4 |
+
"schema": "https://schema.org/",
|
| 5 |
+
"name": "schema:name",
|
| 6 |
+
"description": "schema:description",
|
| 7 |
+
"identifier": "schema:identifier",
|
| 8 |
+
"license": "schema:license",
|
| 9 |
+
"creator": "schema:creator",
|
| 10 |
+
"affiliation": "schema:affiliation",
|
| 11 |
+
"recordSets": "recordSets",
|
| 12 |
+
"fields": "fields",
|
| 13 |
+
"dataType": "dataType"
|
| 14 |
+
},
|
| 15 |
+
"@type": "schema:Dataset",
|
| 16 |
+
"name": "worldmodelbench",
|
| 17 |
+
"description": "A benchmark for evaluating world modeling ability in video generation models.",
|
| 18 |
+
"identifier": "https://huggingface.co/datasets/Efficient-Large-Model/worldmodelbench",
|
| 19 |
+
"license": "CC BY 4.0",
|
| 20 |
+
"creators": [
|
| 21 |
+
{
|
| 22 |
+
"name": "World Model Bench Team",
|
| 23 |
+
"affiliation": "Nvidia, MIT, UC Berkeley, UC San Diego"
|
| 24 |
+
}
|
| 25 |
+
],
|
| 26 |
+
"recordSets": [
|
| 27 |
+
{
|
| 28 |
+
"name": "benchmark_instances",
|
| 29 |
+
"description": "Each record includes a text instruction, an initial video frame, and associated metadata for evaluation.",
|
| 30 |
+
"fields": [
|
| 31 |
+
{
|
| 32 |
+
"name": "text_instruction",
|
| 33 |
+
"description": "The instruction provided for the video generation task.",
|
| 34 |
+
"dataType": "https://schema.org/Text"
|
| 35 |
+
},
|
| 36 |
+
{
|
| 37 |
+
"name": "text_first_frame",
|
| 38 |
+
"description": "Description of the initial video frame.",
|
| 39 |
+
"dataType": "https://schema.org/Text"
|
| 40 |
+
},
|
| 41 |
+
{
|
| 42 |
+
"name": "first_frame",
|
| 43 |
+
"description": "Filename of the initial video frame image.",
|
| 44 |
+
"dataType": "https://schema.org/Text"
|
| 45 |
+
},
|
| 46 |
+
{
|
| 47 |
+
"name": "domain",
|
| 48 |
+
"description": "The application domain of the prompt (e.g., Robotics, Driving).",
|
| 49 |
+
"dataType": "https://schema.org/Text"
|
| 50 |
+
},
|
| 51 |
+
{
|
| 52 |
+
"name": "subdomain",
|
| 53 |
+
"description": "The specific subdomain within the application domain.",
|
| 54 |
+
"dataType": "https://schema.org/Text"
|
| 55 |
+
}
|
| 56 |
+
]
|
| 57 |
+
}
|
| 58 |
+
]
|
| 59 |
+
}
|
| 60 |
+
|