Fisher-R1-14B / README.md
May2222's picture
Release Fisher-R1-14B
70f06f5
|
Raw
History Blame Contribute Delete
1.5 kB
metadata
library_name: transformers
license: apache-2.0
pipeline_tag: text-generation
base_model: Qwen/Qwen2.5-Coder-14B-Instruct
datasets:
  - May2222/P-Bench
language:
  - en
tags:
  - statistics
  - hypothesis-testing
  - tool-use

Fisher-R1-14B

Fisher-R1-14B is an open-weight LLM agent for reliable hypothesis testing. It is post-trained from Qwen2.5-Coder-14B-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.

Usage

from transformers import AutoModelForCausalLM, AutoTokenizer

model_id = "May2222/Fisher-R1-14B"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(
    model_id,
    torch_dtype="auto",
    device_map="auto",
)

For the training setup, evaluation protocol, and results, see Fisher-R1: Training LLM Agents for Reliable Hypothesis Testing.

Citation

@article{miao2026fisherr1,
  title   = {Fisher-R1: Training LLM Agents for Reliable Hypothesis Testing},
  author  = {Miao, Jiacheng and Mu, Jin and Chen, Guanhua and Zou, James},
  journal = {arXiv preprint arXiv:2608.07437},
  year    = {2026},
  url     = {https://arxiv.org/abs/2608.07437}
}