File size: 3,118 Bytes
6cd5c5a
 
 
 
 
 
 
 
8bdc05e
f0acd28
 
35a4f4b
f0acd28
 
 
00db372
4268f00
 
 
 
 
f0acd28
5fcf34f
 
 
 
 
 
 
 
 
 
 
f0acd28
00db372
4268f00
 
 
 
 
2f7d65d
f0acd28
4268f00
35a4f4b
 
 
d6bbc0c
4268f00
 
 
 
 
35a4f4b
5fcf34f
 
 
 
 
 
 
 
 
 
 
35a4f4b
d6bbc0c
4268f00
 
 
 
 
2f7d65d
f0acd28
35a4f4b
 
 
 
d6bbc0c
4268f00
 
 
 
 
35a4f4b
5fcf34f
 
 
 
 
 
 
 
 
 
 
35a4f4b
d6bbc0c
4268f00
 
 
 
 
f0acd28
8bdc05e
740885b
7b0a0e9
 
 
 
 
740885b
7b0a0e9
 
 
8bdc05e
7b0a0e9
 
 
 
2e1265a
cd9902a
2e1265a
 
 
be7ea18
2e1265a
 
be7ea18
2e1265a
 
be7ea18
2e1265a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
---
license: cc-by-4.0
task_categories:
- question-answering
tags:
- code
size_categories:
- n<1K

dataset_info:
  - config_name: stack_effect
    features:
      - name: code
        dtype: string
      - name: stack_values
        list:
          struct:
            - name: type
              dtype: string
            - name: value
              dtype: string
      - name: flag_states
        struct:
          - name: FLAG_0
            dtype: bool
          - name: FLAG_1
            dtype: bool
          - name: FLAG_2
            dtype: bool
          - name: FLAG_3
            dtype: bool
          - name: FLAG_4
            dtype: bool
      - name: return_values
        list:
          struct:
            - name: type
              dtype: string
            - name: value
              dtype: string

  - config_name: flag_reach
    features:
      - name: code
        dtype: string
      - name: stack_values
        list:
          struct:
            - name: type
              dtype: string
            - name: value
              dtype: string
      - name: flag_states
        struct:
          - name: FLAG_0
            dtype: bool
          - name: FLAG_1
            dtype: bool
          - name: FLAG_2
            dtype: bool
          - name: FLAG_3
            dtype: bool
          - name: FLAG_4
            dtype: bool
      - name: return_values
        list:
          struct:
            - name: type
              dtype: string
            - name: value
              dtype: string

  - config_name: result_estimation
    features:
      - name: code
        dtype: string
      - name: stack_values
        list:
          struct:
            - name: type
              dtype: string
            - name: value
              dtype: string
      - name: flag_states
        struct:
          - name: FLAG_0
            dtype: bool
          - name: FLAG_1
            dtype: bool
          - name: FLAG_2
            dtype: bool
          - name: FLAG_3
            dtype: bool
          - name: FLAG_4
            dtype: bool
      - name: return_values
        list:
          struct:
            - name: type
              dtype: string
            - name: value
              dtype: string

configs:
- config_name: stack_effect
  default: true
  data_files:
    - split: eval
      path: dataset_stack/data.jsonl

- config_name: flag_reach
  data_files:
    - split: eval
      path: dataset_flags/data.jsonl

- config_name: result_estimation
  data_files:
    - split: eval
      path: dataset_results/data.jsonl
---
### Exemplary baseline datasets for testing LLM runtime reasoning on WebAssembly, automatically generated with WasmWeaver.

All entries share common metadata; only the field required by the task (`stack_values`, `flag_states`, or `return_values`) is populated.

1. dataset\_stack – 10 000 samples<br>
   Predict the runtime stack at each `;;INSPECT` marker.

2. dataset\_flags – 10 000 samples<br>
   Identify which flags (`;;FLAG_1 … ;;FLAG_N`) are reachable.

3. dataset\_result – 1 000 samples<br>
   Predict the program’s final return values.