Morxos commited on
Commit
5f7d579
·
verified ·
1 Parent(s): fa43100

Delete dataset_stack/croissant_metadata.jsonld

Browse files
dataset_stack/croissant_metadata.jsonld DELETED
@@ -1,38 +0,0 @@
1
- {
2
- "@context": {
3
- "@version": 1.1,
4
- "schema": "https://schema.org/",
5
- "mlc": "https://mlcommons.org/croissant/schema/v0.9/",
6
- "@vocab": "https://mlcommons.org/croissant/schema/v0.9/",
7
- "name": "schema:name",
8
- "description": "schema:description",
9
- "license": "schema:license",
10
- "url": "schema:url",
11
- "authors": { "@id": "schema:author", "@container": "@list" },
12
- "data": { "@id": "mlc:data", "@container": "@list" },
13
- "features": { "@id": "mlc:features", "@container": "@list" },
14
- "encodingFormat": "schema:encodingFormat",
15
- "dataType": "mlc:dataType"
16
- },
17
- "@type": [ "schema:Dataset" ],
18
- "name": "wasm-weaver-stack-reasoning",
19
- "description": "This dataset focuses on stack-based reasoning in WebAssembly programs. At points marked by ';;INSPECT', the model must predict the exact runtime stack. Each record provides the program, flag placements, expected stack snapshot, returned values, and final flag states.",
20
- "license": "https://creativecommons.org/licenses/by/4.0/",
21
- "url": "https://huggingface.co/datasets/Morxos/WasmWeaver",
22
- "authors": [
23
- { "name": "Anonymous" }
24
- ],
25
- "data": [
26
- {
27
- "@type": "FileObject",
28
- "name": "data.jsonl",
29
- "encodingFormat": "application/jsonlines",
30
- "features": [
31
- { "name": "code", "dataType": "string" },
32
- { "name": "flag_states", "dataType": "object" },
33
- { "name": "return_values", "dataType": "array" },
34
- { "name": "stack_values", "dataType": "array" }
35
- ]
36
- }
37
- ]
38
- }