emnlp-submission commited on
Commit
e1c81e5
·
verified ·
1 Parent(s): 95661cf

Update metadata/croissant.json

Browse files
Files changed (1) hide show
  1. metadata/croissant.json +189 -0
metadata/croissant.json CHANGED
@@ -0,0 +1,189 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "@context": {
3
+ "@language": "en",
4
+ "@vocab": "https://schema.org/",
5
+ "citeAs": "cr:citeAs",
6
+ "column": "cr:column",
7
+ "conformsTo": "dct:conformsTo",
8
+ "cr": "http://mlcommons.org/croissant/",
9
+ "rai": "http://mlcommons.org/croissant/RAI/",
10
+ "data": {
11
+ "@id": "cr:data",
12
+ "@type": "@json"
13
+ },
14
+ "dataType": {
15
+ "@id": "cr:dataType",
16
+ "@type": "@vocab"
17
+ },
18
+ "dct": "http://purl.org/dc/terms/",
19
+ "examples": {
20
+ "@id": "cr:examples",
21
+ "@type": "@json"
22
+ },
23
+ "extract": "cr:extract",
24
+ "field": "cr:field",
25
+ "fileProperty": "cr:fileProperty",
26
+ "fileObject": "cr:fileObject",
27
+ "fileSet": "cr:fileSet",
28
+ "format": "cr:format",
29
+ "includes": "cr:includes",
30
+ "isLiveDataset": "cr:isLiveDataset",
31
+ "jsonPath": "cr:jsonPath",
32
+ "key": "cr:key",
33
+ "md5": "cr:md5",
34
+ "parentField": "cr:parentField",
35
+ "path": "cr:path",
36
+ "recordSet": "cr:recordSet",
37
+ "references": "cr:references",
38
+ "regex": "cr:regex",
39
+ "repeated": "cr:repeated",
40
+ "replace": "cr:replace",
41
+ "sc": "https://schema.org/",
42
+ "separator": "cr:separator",
43
+ "source": "cr:source",
44
+ "subField": "cr:subField",
45
+ "transform": "cr:transform"
46
+ },
47
+ "@type": "sc:Dataset",
48
+ "name": "seqBench",
49
+ "description": "\nSeqBench is a tunable benchmark designed to probe and analyze sequential reasoning \ncapabilities in language models. This compact version contains instances with varied \ncomplexity. Each instance provides:\n- 'context': NLP problem.\n- 'completion': Solution.\n- 'complexity_parameters': A dictionary with L, B, N.\n- 'instance_metadata': Maze dimensions and agent/target names.\n- 'structural_details': Rich structural information (as a JSON string) including room mappings, \n adjacency lists, door/key details, and canonical facts for the underlying base maze.\n",
50
+ "conformsTo": "http://mlcommons.org/croissant/1.0",
51
+ "citeAs": "@misc{anonymous2025seqbench,\n author = {Anonymous Submission},\n title = {SeqBench: A Tunable Benchmark to Quantify Sequential Reasoning Limits of LLMs},\n year = {2025},\n publisher = {Proceedings of the Conference on Empirical Methods in Natural Language Processing},\n note = {Special Theme: Interdisciplinary Recontextualization of NLP},\n comment = {Dataset accessible at https://huggingface.co/datasets/emnlp-submission/seqBench}\n}",
52
+ "license": "https://creativecommons.org/licenses/by/4.0/",
53
+ "url": "https://huggingface.co/datasets/emnlp-submission/seqBench",
54
+ "distribution": [
55
+ {
56
+ "@type": "cr:FileObject",
57
+ "@id": "seqbench-jsonl-gz-file",
58
+ "name": "seqbench-jsonl-gz-file",
59
+ "description": "The main benchmark data file in gzipped JSONL format.",
60
+ "contentUrl": "https://huggingface.co/datasets/emnlp-submission/seqBench/resolve/main/seqBench_compact.jsonl.gz",
61
+ "encodingFormat": "application/gzip",
62
+ "sha256": "2b58a2f7b65def3445f2572726d5ff30d5ecab9cc841fffcb57a8bceb937b0c3"
63
+ }
64
+ ],
65
+ "recordSet": [
66
+ {
67
+ "@type": "cr:RecordSet",
68
+ "@id": "seqbench-records",
69
+ "name": "seqbench-records",
70
+ "description": "Individual instances from the SeqBench benchmark (extracted from gzipped JSONL).",
71
+ "field": [
72
+ {
73
+ "@type": "cr:Field",
74
+ "@id": "context",
75
+ "name": "context",
76
+ "dataType": "sc:Text",
77
+ "source": {
78
+ "fileObject": {
79
+ "@id": "seqbench-jsonl-gz-file"
80
+ },
81
+ "extract": {
82
+ "column": "context"
83
+ }
84
+ }
85
+ },
86
+ {
87
+ "@type": "cr:Field",
88
+ "@id": "completion",
89
+ "name": "completion",
90
+ "dataType": "sc:Text",
91
+ "source": {
92
+ "fileObject": {
93
+ "@id": "seqbench-jsonl-gz-file"
94
+ },
95
+ "extract": {
96
+ "column": "completion"
97
+ }
98
+ }
99
+ },
100
+ {
101
+ "@type": "cr:Field",
102
+ "@id": "logical_depth_L",
103
+ "name": "logical_depth_L",
104
+ "dataType": "sc:Integer",
105
+ "source": {
106
+ "fileObject": {
107
+ "@id": "seqbench-jsonl-gz-file"
108
+ },
109
+ "extract": {
110
+ "jsonPath": "complexity_parameters.logical_depth_L"
111
+ }
112
+ }
113
+ },
114
+ {
115
+ "@type": "cr:Field",
116
+ "@id": "backtracking_count_B",
117
+ "name": "backtracking_count_B",
118
+ "dataType": "sc:Integer",
119
+ "source": {
120
+ "fileObject": {
121
+ "@id": "seqbench-jsonl-gz-file"
122
+ },
123
+ "extract": {
124
+ "jsonPath": "complexity_parameters.backtracking_count_B"
125
+ }
126
+ }
127
+ },
128
+ {
129
+ "@type": "cr:Field",
130
+ "@id": "noise_ratio_N",
131
+ "name": "noise_ratio_N",
132
+ "dataType": "sc:Float",
133
+ "source": {
134
+ "fileObject": {
135
+ "@id": "seqbench-jsonl-gz-file"
136
+ },
137
+ "extract": {
138
+ "jsonPath": "complexity_parameters.noise_ratio_N"
139
+ }
140
+ }
141
+ },
142
+ {
143
+ "@type": "cr:Field",
144
+ "@id": "instance_id",
145
+ "name": "instance_id",
146
+ "dataType": "sc:Text",
147
+ "source": {
148
+ "fileObject": {
149
+ "@id": "seqbench-jsonl-gz-file"
150
+ },
151
+ "extract": {
152
+ "column": "instance_id"
153
+ }
154
+ }
155
+ },
156
+ {
157
+ "@type": "cr:Field",
158
+ "@id": "full_instance_metadata",
159
+ "name": "full_instance_metadata",
160
+ "description": "Full instance metadata as a JSON string (contains maze_rows, maze_cols, agent_name, target_name).",
161
+ "dataType": "sc:Text",
162
+ "source": {
163
+ "fileObject": {
164
+ "@id": "seqbench-jsonl-gz-file"
165
+ },
166
+ "extract": {
167
+ "column": "instance_metadata"
168
+ }
169
+ }
170
+ },
171
+ {
172
+ "@type": "cr:Field",
173
+ "@id": "structural_details_json",
174
+ "name": "structural_details_json",
175
+ "description": "Full structural details as a JSON string.",
176
+ "dataType": "sc:Text",
177
+ "source": {
178
+ "fileObject": {
179
+ "@id": "seqbench-jsonl-gz-file"
180
+ },
181
+ "extract": {
182
+ "column": "structural_details"
183
+ }
184
+ }
185
+ }
186
+ ]
187
+ }
188
+ ]
189
+ }