anonymoussifaka commited on
Commit
23e850a
·
verified ·
1 Parent(s): dfd5689

Upload symbolic-qna.json

Browse files
Files changed (1) hide show
  1. symbolic-qna.json +90 -0
symbolic-qna.json ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "@context": {
3
+ "@vocab": "https://schema.org/",
4
+ "FileObject": "https://mlcommons.org/croissant/FileObject",
5
+ "Table": "https://mlcommons.org/croissant/Table",
6
+ "Column": "https://mlcommons.org/croissant/Column",
7
+ "dataType": "https://mlcommons.org/croissant/dataType",
8
+ "image": "https://mlcommons.org/croissant/image",
9
+ "list": "https://mlcommons.org/croissant/list",
10
+ "int": "http://www.w3.org/2001/XMLSchema#int",
11
+ "string": "http://www.w3.org/2001/XMLSchema#string"
12
+ },
13
+ "@type": "Dataset",
14
+ "name": "symbolic-qna",
15
+ "description": "A symbolic reasoning dataset with shape-image programs and multiple choice questions.",
16
+ "source": {
17
+ "url": "https://huggingface.co/datasets/anonymoussifaka/mathtakestwo"
18
+ },
19
+ "data": [
20
+ {
21
+ "@type": "FileObject",
22
+ "name": "qna_file",
23
+ "description": "QnA data in Parquet format.",
24
+ "encodingFormat": "application/parquet",
25
+ "url": "https://huggingface.co/datasets/anonymoussifaka/mathtakestwo/resolve/main/data/train-00000-of-00001.parquet",
26
+ "contains": {
27
+ "@type": "Table",
28
+ "name": "qna_table",
29
+ "description": "Main QnA table with image-based questions and answers.",
30
+ "columns": [
31
+ {
32
+ "@type": "Column",
33
+ "name": "query",
34
+ "description": "The main query image rendered from a symbolic program.",
35
+ "dataType": "image"
36
+ },
37
+ {
38
+ "@type": "Column",
39
+ "name": "option_0",
40
+ "description": "Candidate answer option 0.",
41
+ "dataType": "image"
42
+ },
43
+ {
44
+ "@type": "Column",
45
+ "name": "option_1",
46
+ "description": "Candidate answer option 1.",
47
+ "dataType": "image"
48
+ },
49
+ {
50
+ "@type": "Column",
51
+ "name": "option_2",
52
+ "description": "Candidate answer option 2.",
53
+ "dataType": "image"
54
+ },
55
+ {
56
+ "@type": "Column",
57
+ "name": "option_3",
58
+ "description": "Candidate answer option 3.",
59
+ "dataType": "image"
60
+ },
61
+ {
62
+ "@type": "Column",
63
+ "name": "answer",
64
+ "description": "Correct option index (0–3).",
65
+ "dataType": "int"
66
+ },
67
+ {
68
+ "@type": "Column",
69
+ "name": "program",
70
+ "description": "The symbolic program string that generated the query.",
71
+ "dataType": "string"
72
+ },
73
+ {
74
+ "@type": "Column",
75
+ "name": "option_symbols",
76
+ "description": "Symbolic program strings for each of the four options.",
77
+ "dataType": "list[string]"
78
+ }
79
+ ]
80
+ }
81
+ }
82
+ ],
83
+ "licenses": [
84
+ {
85
+ "name": "MIT License",
86
+ "identifier": "MIT"
87
+ }
88
+ ],
89
+ "keywords": ["symbolic reasoning", "vision-language", "compositionality"]
90
+ }