Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
base_model: simplescaling/s1.1-32B
|
3 |
+
pipeline_tag: text-generation
|
4 |
+
inference: true
|
5 |
+
language:
|
6 |
+
- en
|
7 |
+
license: apache-2.0
|
8 |
+
model_creator: simplescaling
|
9 |
+
model_name: s1.1-32B
|
10 |
+
model_type: qwen2
|
11 |
+
datasets:
|
12 |
+
- simplescaling/s1K
|
13 |
+
quantized_by: brittlewis12
|
14 |
+
|
15 |
+
---
|
16 |
+
|
17 |
+
# s1.1 32B GGUF
|
18 |
+
|
19 |
+
**Original model**: [s1.1 32B](https://huggingface.co/simplescaling/s1.1-32B)
|
20 |
+
|
21 |
+
**Model creator**: [simplescaling](https://huggingface.co/simplescaling)
|
22 |
+
|
23 |
+
> s1.1 is our sucessor of s1 with better reasoning performance by leveraging reasoning traces from r1 instead of Gemini.
|
24 |
+
|
25 |
+
> s1 is a reasoning model finetuned from Qwen2.5-32B-Instruct on just 1,000 examples. It matches o1-preview & exhibits test-time scaling via budget forcing.
|
26 |
+
|
27 |
+
This repo contains GGUF format model files for simplescaling’s s1.1 32B, an open reproduction of OpenAI’s o1-preview including model, source code, and data (see [s1K](https://huggingface.co/datasets/simplescaling/s1K)).
|
28 |
+
|
29 |
+
Learn more on simplescaling’s [s1 github repo](https://github.com/simplescaling/s1), [arxiv preprint](https://arxiv.org/abs/2501.19393), and on [twitter](https://twitter.com/Muennighoff/status/1889310803746246694).
|
30 |
+
|
31 |
+
### What is GGUF?
|
32 |
+
|
33 |
+
GGUF is a file format for representing AI models. It is the third version of the format,
|
34 |
+
introduced by the llama.cpp team on August 21st 2023. It is a replacement for GGML, which is no longer supported by llama.cpp.
|
35 |
+
Converted with llama.cpp build 4689 (revision [90e4dba](https://github.com/ggerganov/llama.cpp/commits/90e4dba461b07e635fd1daf3b491c978c7dd0013)),
|
36 |
+
using [autogguf-rs](https://github.com/brittlewis12/autogguf-rs).
|
37 |
+
|
38 |
+
### Prompt template: ChatML
|
39 |
+
|
40 |
+
```
|
41 |
+
<|im_start|>system
|
42 |
+
{{system_message}}<|im_end|>
|
43 |
+
<|im_start|>user
|
44 |
+
{{prompt}}<|im_end|>
|
45 |
+
<|im_start|>assistant
|
46 |
+
|
47 |
+
```
|
48 |
+
|
49 |
+
---
|
50 |
+
|
51 |
+
## Download & run with [cnvrs](https://twitter.com/cnvrsai) on iPhone, iPad, and Mac!
|
52 |
+
|
53 |
+

|
54 |
+
|
55 |
+
[cnvrs](https://testflight.apple.com/join/sFWReS7K) is the best app for private, local AI on your device:
|
56 |
+
- create & save **Characters** with custom system prompts & temperature settings
|
57 |
+
- download and experiment with any **GGUF model** you can [find on HuggingFace](https://huggingface.co/models?library=gguf)!
|
58 |
+
* or, use an API key with the chat completions-compatible model provider of your choice -- ChatGPT, Claude, Gemini, DeepSeek, & more!
|
59 |
+
- make it your own with custom **Theme colors**
|
60 |
+
- powered by Metal ⚡️ & [Llama.cpp](https://github.com/ggerganov/llama.cpp), with **haptics** during response streaming!
|
61 |
+
- **try it out** yourself today, on [Testflight](https://testflight.apple.com/join/sFWReS7K)!
|
62 |
+
- follow [cnvrs on twitter](https://twitter.com/cnvrsai) to stay up to date
|
63 |
+
|
64 |
+
---
|
65 |
+
|
66 |
+
## Original Model Evaluation
|
67 |
+
|
68 |
+
> Note that s1-32B and s1.1-32B use budget forcing in this table; specifically ignoring end-of-thinking and appending "Wait" once or twice.
|
69 |
+
|
70 |
+
| Metric | s1-32B | s1.1-32B | o1-preview | o1 | DeepSeek-R1 | DeepSeek-R1-Distill-Qwen-32B |
|
71 |
+
|---|---|---|---|---|---|---|
|
72 |
+
| # examples | 1K | 1K | ? | ? | >800K | 800K |
|
73 |
+
| AIME2024 | 56.7 | 56.7 | 40.0 | 74.4 | 79.8 | 72.6 |
|
74 |
+
| AIME2025 I | 26.7 | 60.0 | 37.5 | ? | 65.0 | 46.1 |
|
75 |
+
| MATH500 | 93.0 | 95.4 | 81.4 | 94.8 | 97.3 | 94.3 |
|
76 |
+
| GPQA-Diamond | 59.6 | 63.6 | 75.2 | 77.3 | 71.5 | 62.1 |
|
77 |
+
|