Views
No views yet
Qwen2.5-32B-Instruct fine-tuned on the s1K-1.1 dataset using supervised fine-tuning (SFT) via TRL. The s1K-1.1 dataset is an updated curation of high-quality reasoning traces building on the original s1K, designed to elicit test-time scaling behaviour in language models.1# Use a pipeline as a high-level helper
2from transformers import pipeline
3
4pipe = pipeline("text-generation", model="alan-turing-institute/t0-s1.1-32B")
5messages = [
6 {"role": "user", "content": "Who are you?"},
7]
8pipe(messages)1# Load model directly
2from transformers import AutoTokenizer, AutoModelForCausalLM
3
4tokenizer = AutoTokenizer.from_pretrained("alan-turing-institute/t0-s1.1-32B")
5model = AutoModelForCausalLM.from_pretrained("alan-turing-institute/t0-s1.1-32B")
6messages = [
7 {"role": "user", "content": "Who are you?"},
8]
9inputs = tokenizer.apply_chat_template(
10 messages,
11 add_generation_prompt=True,
12 tokenize=True,
13 return_dict=True,
14 return_tensors="pt",
15).to(model.device)
16
17outputs = model.generate(**inputs, max_new_tokens=40)
18print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:]))1pip install vllm
2vllm serve "alan-turing-institute/t0-s1.1-32B"1@article{chan2025retrieval,
2 title={Retrieval-augmented reasoning with lean language models},
3 author={Chan, Ryan Sze-Yin and Nanni, Federico and Lazauskas, Tomas and Wood, Rosie and Yong, Penelope and Tarassenko, Lionel and Girolami, Mark and Geddes, James and Duncan, Andrew},
4 journal={arXiv preprint arXiv:2508.11386},
5 year={2025}
6}
7
8@article{muennighoff2025s1,
9 title={s1: Simple Test-Time Scaling},
10 author={Muennighoff, Niklas and Yang, Zitong and Shi, Weijia and Li, Xiang Lisa and Fei-Fei, Li and Hajishirzi, Hannaneh and Zettlemoyer, Luke and Liang, Percy and Candès, Emmanuel and Hashimoto, Tatsunori},
11 journal={arXiv preprint arXiv:2501.19393},
12 year={2025}
13}