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-classification", model="ylu610/FT-T5-3B-Verifier")
# Load model directly
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM

tokenizer = AutoTokenizer.from_pretrained("ylu610/FT-T5-3B-Verifier")
model = AutoModelForSeq2SeqLM.from_pretrained("ylu610/FT-T5-3B-Verifier", device_map="auto")
Quick Links

The T5-3B model finetuned on FActScore dataset for the claim verification task. The model is used in our paper: Optimizing Decomposition for Optimal Claim Verification. If you find this model useful, please cite the paper:

@misc{lu2025optimizingdecompositionoptimalclaim,
      title={Optimizing Decomposition for Optimal Claim Verification}, 
      author={Yining Lu and Noah Ziems and Hy Dang and Meng Jiang},
      year={2025},
      eprint={2503.15354},
      archivePrefix={arXiv},
      primaryClass={cs.CL},
      url={https://arxiv.org/abs/2503.15354}, 
}
Downloads last month
16
Safetensors
Model size
3B params
Tensor type
F32
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Paper for ylu610/FT-T5-3B-Verifier