Update README.md
Browse files
README.md
CHANGED
@@ -5,12 +5,15 @@ tags:
|
|
5 |
- lean
|
6 |
---
|
7 |
|
8 |
-
Lean 4 tactic prediction examples extracted from Mathlib.
|
9 |
|
|
|
|
|
|
|
10 |
|
11 |
|
12 |
### Version
|
13 |
-
Generated using `ntptutorial`'s `
|
14 |
|
15 |
```json
|
16 |
{
|
@@ -32,16 +35,16 @@ print(len(ds['train']))
|
|
32 |
# ==> 337162
|
33 |
```
|
34 |
|
35 |
-
###
|
36 |
```json
|
37 |
{
|
38 |
-
'state': '
|
39 |
-
'srcUpToTactic': '
|
40 |
-
'nextTactic': '
|
41 |
-
'declUpToTactic': '
|
42 |
-
'declId': '
|
43 |
-
'decl': '
|
44 |
-
'file_tag': '
|
45 |
}
|
46 |
```
|
47 |
|
|
|
5 |
- lean
|
6 |
---
|
7 |
|
8 |
+
Lean 4 tactic prediction examples extracted from Mathlib.
|
9 |
|
10 |
+
These examples have **not** been formatted for instruction tuning (including data splits).
|
11 |
+
|
12 |
+
Please see `l3lab/ntp-lean-mathlib-instruct-*` for datasets with instruction tuning examples.
|
13 |
|
14 |
|
15 |
### Version
|
16 |
+
Generated using `ntptutorial`'s `ntp-training-data` with the following config:
|
17 |
|
18 |
```json
|
19 |
{
|
|
|
35 |
# ==> 337162
|
36 |
```
|
37 |
|
38 |
+
### Format:
|
39 |
```json
|
40 |
{
|
41 |
+
'state': 'proof state',
|
42 |
+
'srcUpToTactic': 'source up to tactic invocation',
|
43 |
+
'nextTactic': 'tactic',
|
44 |
+
'declUpToTactic': 'declariation up to tactic invocation',
|
45 |
+
'declId': 'unique ID for declaration',
|
46 |
+
'decl': 'declaration',
|
47 |
+
'file_tag': 'file ID'
|
48 |
}
|
49 |
```
|
50 |
|