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

Delete dataset_results/croissant_metadata.jsonld

Browse files
dataset_results/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-result-reasoning",
19
- "description": "This dataset evaluates a model’s ability to predict the final outputs of WebAssembly programs. Samples range from straight-line code to code with nested branches and loops. Each record contains the program text, any diagnostic flags, and the exact values the program returns when executed.",
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
- }