Bibtex citation
@inproceedings{
gao2025herald,
title={Herald: A Natural Language Annotated Lean 4 Dataset},
author={Guoxiong Gao and Yutong Wang and Jiedong Jiang and Qi Gao and Zihan Qin and Tianyi Xu and Bin Dong},
booktitle={The Thirteenth International Conference on Learning Representations},
year={2025},
url={https://openreview.net/forum?id=Se6MgCtRhz}
}
- Downloads last month
- 71
Install from pip and serve model
# Install vLLM from pip: pip install vllm# Start the vLLM server: vllm serve "FrenzyMath/Herald_translator"# Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "FrenzyMath/Herald_translator", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'