Datasets:

Languages:
English
Size:
n<1K
DOI:
Libraries:
License:
miniCodeProps / README.md
evanlohn
readme
f047df5
|
raw
history blame
1.57 kB
metadata
license: apache-2.0

First install Lean 4. Then clone this repo: The outer LeanSrc folder is a Lean Project. You can open that folder directly in VSCode and check that the proofs in LeanSrc/Sorts.lean type check. The main CodeProps-Bench folder handles extracting the benchmark and calculating baselines.

After cloning the repo, you will need to install Lean REPL. By default, our scripts expect the repl folder to be directly inside the CodeProps-Bench folder. run lake buildfrom within therepl` folder.

The extract.py script is used only to create the json-formatted benchmark.

The baseline.py script contains the code we used to get our baseline results. It shows how to interact with Lean Repl programmatically, although some interactions are still somewhat buggy in that the repl will send i.e. an extra newline or weirdly formatted message that requires our script to restart the repl. Regardless, if you would like to use our setup, We ran our baselines using LLMStep. However, our code also includes a natural place to write your own function to generate tactics given the goal and file context (see get\_tactics\_llmstep in baseline.py). We modified the LLMStep server to return average suggestion log-probabilities per suggestion to implement best-first search; we will publish our fork of that soon as well.