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="laion/tt-x0_verifier-binary-20-30B")
messages = [
    {"role": "user", "content": "Who are you?"},
]
pipe(messages)
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("laion/tt-x0_verifier-binary-20-30B")
model = AutoModelForCausalLM.from_pretrained("laion/tt-x0_verifier-binary-20-30B", 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

tt-x0_verifier-binary (TaskTrove X0 binary verifier, global_step_20)

X0 verifier-ablation binary arm of the TaskTrove hyperparameter sweep. Completed its 20-step horizon. Base: Qwen/Qwen3-Coder-30B-A3B-Instruct; terminus-2 agentic RL on DCAgent/exp_rpt_multifile (pytest verifier, binary reward). Trailing-5 EMA reward at step 20 = 0.1703.

X0 verdict (owner 2026-08-04): the shaped arm wins on the post-#300 unshaped re-score (~3.7-pt gap), so pass_ratio shaping is the campaign verifier for X1-X5. See training_logs/report.md.

Training Traces

Not available. The trial-level trace trees were reclaimed during a 2026-08 GPFS inode-recovery pass before a dataset was uploaded to the Hub; no tt-x0_verifier-binary-traces dataset was published and the source trials no longer exist on GPFS. Per-trial unshaped verifier outcomes survive on Jupiter in /e/scratch/jureap59/feuer1/x0_unshaped_outcomes.tsv. The training_logs/ analysis here is derived from the per-step WANDB mirror, not the (deleted) trials.

Downloads last month
390
Safetensors
Model size
31B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for laion/tt-x0_verifier-binary-20-30B

Finetuned
(83)
this model