hrw commited on
Commit
baddae7
·
verified ·
1 Parent(s): 72dad1f

Upload croissant.json

Browse files
Files changed (1) hide show
  1. croissant.json +89 -0
croissant.json ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "@context": {
3
+ "sc": "https://schema.org/",
4
+ "cr": "https://mlcommons.org/croissant/schema/v1/",
5
+ "@vocab": "https://mlcommons.org/croissant/schema/v1/"
6
+ },
7
+ "@type": "sc:Dataset",
8
+ "sc:name": "Mirage_Multimodal_Benchmark",
9
+ "sc:description": "A benchmark for multimodal reasoning tasks such as counting, spatial relation, and compositional understanding over real-world images.",
10
+ "sc:license": "https://creativecommons.org/licenses/by/4.0/",
11
+ "sc:version": "1.0",
12
+ "sc:datePublished": "2025-05-15",
13
+ "sc:citation": "Liu et al. Mirage: A Multimodal Reasoning Benchmark. NeurIPS 2025 Submission.",
14
+ "distribution": [
15
+ {
16
+ "@type": "cr:FileObject",
17
+ "@id": "combination",
18
+ "name": "Combination.json",
19
+ "contentUrl": "https://huggingface.co/datasets/Mmoment/Mirage_Multimodal_Benchmark/resolve/main/Combination.json",
20
+ "encodingFormat": "application/json"
21
+ },
22
+ {
23
+ "@type": "cr:FileObject",
24
+ "@id": "images",
25
+ "name": "image_dataset/",
26
+ "contentUrl": "https://huggingface.co/datasets/Mmoment/Mirage_Multimodal_Benchmark/resolve/main/image_dataset/",
27
+ "encodingFormat": "image/jpeg"
28
+ }
29
+ ],
30
+ "recordSet": [
31
+ {
32
+ "@type": "cr:RecordSet",
33
+ "name": "combination_qa",
34
+ "description": "Image-question-answer records for combination reasoning.",
35
+ "field": [
36
+ {
37
+ "@type": "cr:Field",
38
+ "name": "id",
39
+ "dataType": "sc:Text",
40
+ "source": {
41
+ "fileObject": { "@id": "combination" },
42
+ "extract": { "jsonPath": "$[*].id" }
43
+ }
44
+ },
45
+ {
46
+ "@type": "cr:Field",
47
+ "name": "question",
48
+ "dataType": "sc:Text",
49
+ "source": {
50
+ "fileObject": { "@id": "combination" },
51
+ "extract": { "jsonPath": "$[*].question" }
52
+ }
53
+ },
54
+ {
55
+ "@type": "cr:Field",
56
+ "name": "answer",
57
+ "dataType": "sc:Text",
58
+ "source": {
59
+ "fileObject": { "@id": "combination" },
60
+ "extract": { "jsonPath": "$[*].answer" }
61
+ }
62
+ },
63
+ {
64
+ "@type": "cr:Field",
65
+ "name": "image_path",
66
+ "description": "Relative path to image within image_dataset/ folder.",
67
+ "dataType": "sc:Text",
68
+ "source": {
69
+ "fileObject": { "@id": "combination" },
70
+ "extract": { "jsonPath": "$[*].image_path" }
71
+ },
72
+ "references": {
73
+ "fileObject": { "@id": "images" }
74
+ }
75
+ },
76
+ {
77
+ "@type": "cr:Field",
78
+ "name": "final_category",
79
+ "dataType": "sc:Text",
80
+ "source": {
81
+ "fileObject": { "@id": "combination" },
82
+ "extract": { "jsonPath": "$[*].final_category" }
83
+ }
84
+ }
85
+ ]
86
+ }
87
+ ]
88
+ }
89
+