Fisher-R1-7B is an open-weight LLM agent for reliable hypothesis testing. It is post-trained from Qwen2.5-Coder-7B-Instruct on synthetic executable statistical tasks, using supervised fine-tuning followed by reinforcement learning with verified statistical rewards.
The model is designed to inspect data, select and execute an appropriate statistical test, report a p-value, and draw a conclusion. It is evaluated on
P-Bench.
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = "May2222/Fisher-R1-7B"
4tokenizer = AutoTokenizer.from_pretrained(model_id)
5model = AutoModelForCausalLM.from_pretrained(
6 model_id,
7 torch_dtype="auto",
8 device_map="auto",
9)
For the training setup, evaluation protocol, and results, see
Fisher-R1: Training LLM Agents for Reliable Hypothesis Testing.
1@article{miao2026fisherr1,
2 title = {Fisher-R1: Training LLM Agents for Reliable Hypothesis Testing},
3 author = {Miao, Jiacheng and Mu, Jin and Chen, Guanhua and Zou, James},
4 journal = {arXiv preprint arXiv:2608.07437},
5 year = {2026},
6 url = {https://arxiv.org/abs/2608.07437}
7}