s1: Simple test-time scaling
Paper β’ 2501.19393 β’ Published β’ 126
docker model run hf.co/simplescaling/step-conditional-control-oldThis is an older step-conditional control model for our paper used only for the Discussion section. You can evaluate using the information here.
@misc{muennighoff2025s1simpletesttimescaling,
title={s1: Simple test-time scaling},
author={Niklas Muennighoff and Zitong Yang and Weijia Shi and Xiang Lisa Li and Li Fei-Fei and Hannaneh Hajishirzi and Luke Zettlemoyer and Percy Liang and Emmanuel Candès and Tatsunori Hashimoto},
year={2025},
eprint={2501.19393},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2501.19393},
}
Install from pip and serve model
# Install vLLM from pip: pip install vllm# Start the vLLM server: vllm serve "simplescaling/step-conditional-control-old"# Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "simplescaling/step-conditional-control-old", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'