Views
No views yet
1from transformers import pipeline
2
3question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
4generator = pipeline("text-generation", model="DebateLabKIT/Llama-3.1-Argunaut-1-8B-SPIN", device="cuda")
5output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
6print(output["generated_text"])
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
| Llama-3.1-8B-Instruct | Argunaut-1-8B-SFT | Argunaut-1-8B-SPIN | |
|---|---|---|---|
| ⬇️ Argdown Bench | |||
| pass@1 | 80.8 | 98.9 | 79.5 |
| pass@5 | 98.9 | 99.8 | 94.5 |
| graph sim | 8.4 | 65.5 | 34.3 |
| isomorphic | 1.3 | 44.0 | 17.1 |
| 🤗 HF Leaderboard | |||
| MMLU pro | 37.6 | 34.5 | 35.9 |
| MUSR | 40.1 | 41.6 | 41.6 |
| GPQA Diamond | 32.8 | 30.8 | 31.8 |
| GPQA Main | 28.5 | 32.1 | 30.8 |
| MATH | 12.5 | 9.1 | 11.1 |
| BBH | 54.7 | 48.2 | 49.8 |
| ⛓️ COT Leaderboard | |||
| LogiQA | 5.9 | 1.4 | 5.8 |
| LogiQA2 | 15.5 | 0.8 | 9.2 |
| LSAT-ar | 11.7 | 3.0 | 6.5 |
| LSAT-lr | 20.8 | 3.9 | 12.9 |
| LSAT-rc | 27.5 | 13.8 | 21.2 |
1@misc{chen2024selfplayfinetuningconvertsweak,
2 title={Self-Play Fine-Tuning Converts Weak Language Models to Strong Language Models},
3 author={Zixiang Chen and Yihe Deng and Huizhuo Yuan and Kaixuan Ji and Quanquan Gu},
4 year={2024},
5 eprint={2401.01335},
6 archivePrefix={arXiv},
7 primaryClass={cs.LG},
8 url={https://arxiv.org/abs/2401.01335},
9}1@misc{vonwerra2022trl,
2 title = {{TRL: Transformer Reinforcement Learning}},
3 author = {Leandro von Werra and Younes Belkada and Lewis Tunstall and Edward Beeching and Tristan Thrush and Nathan Lambert and Shengyi Huang and Kashif Rasul and Quentin Gallouédec},
4 year = 2020,
5 journal = {GitHub repository},
6 publisher = {GitHub},
7 howpublished = {\url{https://github.com/huggingface/trl}}
8}