maxRyeery commited on
Commit
741c2a1
·
verified ·
1 Parent(s): a5d8077

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +45 -3
README.md CHANGED
@@ -1,3 +1,45 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ ---
4
+
5
+ # VeriSoftBench
6
+
7
+ **VeriSoftBench** is a benchmark for evaluating neural theorem provers on software verification tasks in Lean 4.
8
+
9
+ The dataset contains 500 theorem-proving tasks drawn from 23 real-world Lean 4 repositories spanning compiler verification, type system formalization, applied verification (zero-knowledge proofs, smart contracts), semantic frameworks, and more.
10
+
11
+
12
+ 📄 **Paper (arXiv):** https://arxiv.org/html/2602.18307v1
13
+ 💻 **Full benchmark + pipeline + setup:** https://github.com/utopia-group/VeriSoftBench
14
+
15
+ ---
16
+
17
+ ## Dataset Contents
18
+
19
+ This Hugging Face release contains the dataset of the benchmark tasks only. For the full end-to-end evaluation pipeline, please refer to the Github repository:
20
+
21
+ 👉 https://github.com/utopia-group/VeriSoftBench
22
+
23
+ Each task in `verisoftbench.jsonl` contains:
24
+
25
+ - Theorem name, statement, and source location
26
+ - Filtered dependencies (library defs, repo defs, local context, lemmas)
27
+ - Ground truth proof
28
+ - Metadata (category, difficulty metrics, Aristotle subset membership)
29
+
30
+ ---
31
+
32
+ ## Citation
33
+
34
+
35
+ ```bibtex
36
+ @misc{xin2026verisoftbenchrepositoryscaleformalverification,
37
+ title={VeriSoftBench: Repository-Scale Formal Verification Benchmarks for Lean},
38
+ author={Yutong Xin and Qiaochu Chen and Greg Durrett and Işil Dillig},
39
+ year={2026},
40
+ eprint={2602.18307},
41
+ archivePrefix={arXiv},
42
+ primaryClass={cs.SE},
43
+ url={https://arxiv.org/abs/2602.18307},
44
+ }
45
+ ```