Model Description
This 🤗 Transformers model was finetuned using LoRA adapters for the paper:
"Planted in Pretraining, Swayed by Finetuning: A Case Study on the Origins of Cognitive Biases in LLMs" (
Hugging Face Paper,
arXiv)
We study whether cognitive biases in LLMs emerge from pretraining, instruction tuning, or training randomness.
This is one of 3 identical versions trained with different random seeds.
For research on cognitive biases in LLMs. Used to test causal impact of pretraining vs instruction tuning.
Do not use in production, sensitive domains, or decision-critical applications.
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model = AutoModelForCausalLM.from_pretrained("itay1itzhak/T5-Tulu-Seed-2")
4tokenizer = AutoTokenizer.from_pretrained("itay1itzhak/T5-Tulu-Seed-2")
5
6inputs = tokenizer("Example input?", return_tensors="pt")
7outputs = model.generate(**inputs)
8print(tokenizer.decode(outputs[0]))
1@misc{itzhak2025plantedpretrainingswayedfinetuning,
2 title={Planted in Pretraining, Swayed by Finetuning: A Case Study on the Origins of Cognitive Biases in LLMs},
3 author={Itay Itzhak and Yonatan Belinkov and Gabriel Stanovsky},
4 year={2025},
5 eprint={2507.07186},
6 archivePrefix={arXiv},
7 primaryClass={cs.CL},
8 url={https://arxiv.org/abs/2507.07186},
9}