Datasets:
PAug
/

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

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +46 -0
README.md CHANGED
@@ -26,3 +26,49 @@ configs:
26
  - split: test
27
  path: data/test-*
28
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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/.
37
+
38
+ ### Original Dataset Summary
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).
45
+ ```bibtex
46
+ @misc{poiroux2024improvingautoformalizationusingtype,
47
+ title={Improving Autoformalization using Type Checking},
48
+ author={Auguste Poiroux and Gail Weiss and Viktor Kunčak and Antoine Bosselut},
49
+ year={2024},
50
+ eprint={2406.07222},
51
+ archivePrefix={arXiv},
52
+ primaryClass={cs.CL},
53
+ url={https://arxiv.org/abs/2406.07222},
54
+ }
55
+ ```
56
+
57
+ Original work where ProofNet has been introduced:
58
+ ```bibtex
59
+ @misc{azerbayev2023proofnet,
60
+ title={ProofNet: Autoformalizing and Formally Proving Undergraduate-Level Mathematics},
61
+ author={Zhangir Azerbayev and Bartosz Piotrowski and Hailey Schoelkopf and Edward W. Ayers and Dragomir Radev and Jeremy Avigad},
62
+ year={2023},
63
+ eprint={2302.12433},
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.