Datasets:
PAug
/

Modalities:
Text
Formats:
parquet
Languages:
English
Size:
< 1K
ArXiv:
Tags:
code
Libraries:
Datasets
pandas
License:
PAug commited on
Commit
4a30fca
·
verified ·
1 Parent(s): bcda961

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +34 -10
README.md CHANGED
@@ -17,7 +17,7 @@ dataset_info:
17
  num_bytes: 79511.2398921833
18
  num_examples: 186
19
  download_size: 68793
20
- dataset_size: 158595.0
21
  configs:
22
  - config_name: default
23
  data_files:
@@ -25,12 +25,23 @@ configs:
25
  path: data/valid-*
26
  - split: test
27
  path: data/test-*
 
 
 
 
 
 
 
 
 
 
 
28
  ---
29
 
30
  # ProofNet#
31
 
32
  ProofNet# is a Lean 4 port of the [ProofNet](https://huggingface.co/datasets/hoskinson-center/proofnet) benchmark including fixes.
33
- This benchmark has been made compatible for all Lean versions between v4.7.0 and v4.16.0.
34
 
35
  A comparison with some of the other existing ports can be found at:
36
  https://proofnet4-fix.streamlit.app/.
@@ -39,6 +50,26 @@ https://proofnet4-fix.streamlit.app/.
39
 
40
  ProofNet is a benchmark for autoformalization and formal proving of undergraduate-level mathematics. The ProofNet benchmarks consists of 371 examples, each consisting of a formal theorem statement in Lean 3, a natural language theorem statement, and a natural language proof. The problems are primarily drawn from popular undergraduate pure mathematics textbooks and cover topics such as real and complex analysis, linear algebra, abstract algebra, and topology. We intend for ProofNet to be a challenging benchmark that will drive progress in autoformalization and automatic theorem proving.
41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  ## Citation
43
 
44
  ProofNet# is introduced in [Improving Autoformalization using Type Checking](https://arxiv.org/abs/2406.07222).
@@ -64,11 +95,4 @@ Original work where ProofNet has been introduced:
64
  archivePrefix={arXiv},
65
  primaryClass={cs.CL}
66
  }
67
- ```
68
-
69
- ## Data Fields
70
-
71
- id: Unique string identifier for the problem.
72
- nl_statement: Natural language theorem statement.
73
- lean4_src_header: File header including imports, namespaces, and locales required for the formal statement.
74
- lean4_formalization: Formal theorem statement in Lean 4.
 
17
  num_bytes: 79511.2398921833
18
  num_examples: 186
19
  download_size: 68793
20
+ dataset_size: 158595
21
  configs:
22
  - config_name: default
23
  data_files:
 
25
  path: data/valid-*
26
  - split: test
27
  path: data/test-*
28
+ license: mit
29
+ task_categories:
30
+ - translation
31
+ - text-generation
32
+ language:
33
+ - en
34
+ tags:
35
+ - code
36
+ pretty_name: ProofNet#
37
+ size_categories:
38
+ - n<1K
39
  ---
40
 
41
  # ProofNet#
42
 
43
  ProofNet# is a Lean 4 port of the [ProofNet](https://huggingface.co/datasets/hoskinson-center/proofnet) benchmark including fixes.
44
+ This benchmark has been made compatible for all Lean versions between v4.7.0 and v4.16.0-rc2.
45
 
46
  A comparison with some of the other existing ports can be found at:
47
  https://proofnet4-fix.streamlit.app/.
 
50
 
51
  ProofNet is a benchmark for autoformalization and formal proving of undergraduate-level mathematics. The ProofNet benchmarks consists of 371 examples, each consisting of a formal theorem statement in Lean 3, a natural language theorem statement, and a natural language proof. The problems are primarily drawn from popular undergraduate pure mathematics textbooks and cover topics such as real and complex analysis, linear algebra, abstract algebra, and topology. We intend for ProofNet to be a challenging benchmark that will drive progress in autoformalization and automatic theorem proving.
52
 
53
+ ## Tasks
54
+
55
+ - Statement autoformalization:
56
+ - Input: `nl_statement`
57
+ - Output: `lean4_formalization`
58
+ - Proof autoformalization:
59
+ - Input: `lean4_formalization`, `nl_proof`,
60
+ - Output: use Lean to check if the generated proof is correct.
61
+ - Theorem Proving
62
+ - Input: `lean4_formalization`
63
+ - Output: use Lean to check if the generated proof is correct.
64
+
65
+ ## Data Fields
66
+
67
+ id: Unique string identifier for the problem.
68
+ nl_statement: Natural language theorem statement.
69
+ nl_proof: Mathematical proof in natural language for the theorem statement.
70
+ lean4_src_header: File header including imports, namespaces, and locales required for the formal statement.
71
+ lean4_formalization: Formal theorem statement in Lean 4.
72
+
73
  ## Citation
74
 
75
  ProofNet# is introduced in [Improving Autoformalization using Type Checking](https://arxiv.org/abs/2406.07222).
 
95
  archivePrefix={arXiv},
96
  primaryClass={cs.CL}
97
  }
98
+ ```