Views
No views yet

| Model | Merge Type | Source Models | HF Link |
|---|---|---|---|
| FuseAI/FuseO1-DeekSeekR1-QwQ-SkyT1-32B-Preview | Long-Long Reasoning Merge | deepseek-ai/DeepSeek-R1-Distill-Qwen-32B, Qwen/QwQ-32B-Preview, NovaSky-AI/Sky-T1-32B-Preview | 🤗 Hugging Face |
| FuseAI/FuseO1-DeekSeekR1-QwQ-32B-Preview | Long-Long Reasoning Merge | deepseek-ai/DeepSeek-R1-Distill-Qwen-32B, Qwen/QwQ-32B-Preview | 🤗 Hugging Face |
| FuseAI/FuseO1-DeekSeekR1-Qwen2.5-Instruct-32B-Preview | Long-Short Reasoning Merge | deepseek-ai/DeepSeek-R1-Distill-Qwen-32B, Qwen/Qwen2.5-32B-Instruct | 🤗 Hugging Face |
1cd FuseAI/FuseO1-Preview/mergekit
2pip3 install -e .
3model_save_dir=xx # your path to save the merged models
4mergekit-yaml fuseo1_configs/FuseO1-DeekSeekR1-QwQ-SkyT1-32B-Preview.yaml ${model_save_dir}/FuseO1-DeekSeekR1-QwQ-SkyT1-32B-Preview --cudas1cd FuseAI/FuseO1-Preview/mergekit
2pip3 install -e .
3model_save_dir=xxx # your path to save the merged models
4mergekit-yaml fuseo1_configs/FuseO1-DeekSeekR1-QwQ-32B-Preview.yaml ${model_save_dir}/FuseO1-DeekSeekR1-QwQ-32B-Preview --cuda1from vllm import LLM, SamplingParams
2
3llm = LLM(model="FuseAI/FuseO1-DeekSeekR1-QwQ-SkyT1-32B-Preview", tensor_parallel_size=8)
4sampling_params = SamplingParams(max_tokens=32768, temperature=0.7, stop=["<|end▁of▁sentence|>", "<|User|>"], stop_token_ids=[151643, 151644])
5
6conversations = [
7 [
8 {"role": "system", "content": "You are a helpful and harmless assistant. You should think step-by-step."},
9 {"role": "user", "content": "Quadratic polynomials $P(x)$ and $Q(x)$ have leading coefficients $2$ and $-2,$ respectively. The graphs of both polynomials pass through the two points $(16,54)$ and $(20,53).$ Find $P(0) + Q(0).$."},
10 ],
11]
12
13responses = llm.chat(messages=conversations, sampling_params=sampling_params, use_tqdm=True)
14
15for response in responses:
16 print(response.outputs[0].text.strip())1cd FuseAI/FuseO1-Preview/mergekit
2pip3 install -e .
3model_save_dir=xxx # your path to save the merged models
4mergekit-yaml fuseo1_configs/FuseO1-DeekSeekR1-Qwen2.5-Instruct-32B-Preview.yaml ${model_save_dir}/FuseO1-DeekSeekR1-Qwen2. 5-Instruct-32B-Preview --cuda1from vllm import LLM, SamplingParams
2
3llm = LLM(model="FuseAI/FuseO1-DeekSeekR1-Qwen2.5-Instruct-32B-Preview", tensor_parallel_size=8)
4sampling_params = SamplingParams(max_tokens=32768, temperature=0.7, stop=["<|end▁of▁sentence|>", "<|User|>"], stop_token_ids=[151643, 151644])
5
6conversations = [
7 [
8 {"role": "system", "content": "You are a helpful and harmless assistant. You should think step-by-step."},
9 {"role": "user", "content": "Quadratic polynomials $P(x)$ and $Q(x)$ have leading coefficients $2$ and $-2,$ respectively. The graphs of both polynomials pass through the two points $(16,54)$ and $(20,53).$ Find $P(0) + Q(0).$."},
10 ],
11]
12
13responses = llm.chat(messages=conversations, sampling_params=sampling_params, use_tqdm=True)
14
15for response in responses:
16 print(response.outputs[0].text.strip())You are a helpful and harmless assistant. You should think step-by-step.| Models | AIME24 | MATH500 | GSM8K | GPQA-Diamond | ARC-Challenge | MMLU-Pro | MMLU | LiveCodeBench |
|---|---|---|---|---|---|---|---|---|
| o1-preview | 44.60 | 85.50 | - | 73.30 | - | - | 90.80 | 44.60 |
| o1-mini | 63.60 | 90.00 | - | 60.00 | - | 80.30 | 85.20 | 53.80 |
| deepseek-ai/DeepSeek-R1-Distill-Qwen-32B | 46.67 | 88.20 | 93.71 | 57.58 | 95.90 | 68.70 | 82.17 | 59.69 |
| Qwen/QwQ-32B-Preview | 43.33 | 87.80 | 95.45 | 49.49 | 95.73 | 63.49 | 85.19 | 51.86 |
| NovaSky-AI/Sky-T1-32B-Preview | 43.33 | 86.80 | 95.15 | 50.51 | 95.56 | 65.80 | 82.71 | 51.66 |
| Qwen/Qwen2.5-32B-Instruct | 20.00 | 81.60 | 93.63 | 46.46 | 95.22 | 56.27 | 79.63 | 48.53 |
| FuseAI/FuseO1-DeekSeekR1-Qwen2.5-Instruct-32B-Preview | 46.67 | 87.20 | 93.33 | 55.05 | 96.33 | 68.61 | 82.03 | 60.67 |
| FuseAI/FuseO1-DeekSeekR1-QwQ-32B-Preview | 56.67 | 85.60 | 93.78 | 62.12 | 96.08 | 68.85 | 82.65 | 59.49 |
| FuseAI/FuseO1-DeekSeekR1-QwQ-SkyT1-32B-Preview | 60.00 | 90.00 | 93.33 | 62.12 | 95.90 | 70.79 | 83.56 | 58.90 |
@article{wan2024fusechat,
title={Fusechat: Knowledge fusion of chat models},
author={Wan, Fanqi and Zhong, Longguang and Yang, Ziyi and Chen, Ruijun and Quan, Xiaojun},
journal={arXiv preprint arXiv:2408.07990},
year={2024}
}