namin / llm-verified-with-monte-carlo-tree-search

LLM verified with Monte Carlo Tree Search
https://arxiv.org/abs/2402.08147
MIT License
215 stars 26 forks source link

Added command line flags to codebase #24

Closed sibiraja closed 6 months ago

sibiraja commented 6 months ago

Created cmdline.py to handle the logic of command line flags, and all other files that originally used hard coded flags now import arguments from cmdline.py. Note that if no arguments are specified, the default values for those arguments are used, which can be seen by the default parameter for each argument.

To run with specific arguments, simply add a --[argument name] [desired argument value] for each argument after the original command to run. To execute run.py with Coq, simply execute python run.py --language "Coq".

namin commented 6 months ago

Thanks!