How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-generation", model="May2222/Fisher-R1-14B")
messages = [
    {"role": "user", "content": "Who are you?"},
]
pipe(messages)
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("May2222/Fisher-R1-14B")
model = AutoModelForCausalLM.from_pretrained("May2222/Fisher-R1-14B", device_map="auto")
messages = [
    {"role": "user", "content": "Who are you?"},
]
inputs = tokenizer.apply_chat_template(
	messages,
	add_generation_prompt=True,
	tokenize=True,
	return_dict=True,
	return_tensors="pt",
).to(model.device)

outputs = model.generate(**inputs, max_new_tokens=40)
print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:]))
Quick Links

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}
}
Downloads last month
153
Safetensors
Model size
15B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for May2222/Fisher-R1-14B

Base model

Qwen/Qwen2.5-14B
Finetuned
(119)
this model
Quantizations
1 model

Dataset used to train May2222/Fisher-R1-14B

Paper for May2222/Fisher-R1-14B