Views
No views yet
xVerify framework, please refer to the official GitHub repository.transformers library:1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = "IAAR-Shanghai/xVerify-3B-Ia"
4tokenizer = AutoTokenizer.from_pretrained(model_id)
5model = AutoModelForCausalLM.from_pretrained(model_id, device_map="auto")
6
7# Your input prompt logic here1@article{xVerify,
2 title={xVerify: Efficient Answer Verifier for Reasoning Model Evaluations},
3 author={Ding Chen and Qingchen Yu and Pengyuan Wang and Wentao Zhang and Bo Tang and Feiyu Xiong and Xinchi Li and Minchuan Yang and Zhiyu Li},
4 journal={arXiv preprint arXiv:2504.10481},
5 year={2025},
6}