File size: 1,501 Bytes
70f06f5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
---
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](https://huggingface.co/datasets/May2222/P-Bench).

## Usage

```python
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](https://arxiv.org/abs/2608.07437).

## Citation

```bibtex
@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}
}
```