File size: 2,291 Bytes
bc445cd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
475556b
bc445cd
8d8988f
bc445cd
 
 
 
 
 
 
a7bda52
bc445cd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0b9cd38
bc445cd
 
e6ab909
bc445cd
 
 
 
 
 
 
 
 
 
 
 
 
e6ab909
bc445cd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
---
license: apache-2.0
language:
- en
- zh
base_model:
- Kwai-Klear/Klear-Reasoner-8B
- deepseek-ai/DeepSeek-R1-0528-Qwen3-8B
- Qwen/Qwen3-8B
- AXCXEPT/Qwen3-EZO-8B-beta
- Qwen/Qwen3-8B-Base
pipeline_tag: text-generation
tags:
- merge
---
> *Enhance the performance of Qwen3-8B by merging powerful reasoning models without compromising the effectiveness of the \no_think tag!*
# *Model Highlights:*

- ***merge method**: `arcee_fusion` `nuslerp`  `della`*

- ***precision**: `dtype: float32` `out_dtype: bfloat16`*

- ***Context length**: `40960`*

# *Parameter Settings:*
## *Thinking Mode:*
> [!NOTE]
> *`Temperature=0.6`, `TopP=0.95`, `TopK=20`,`MinP=0`.*
## *Non-Thinking Mode:*
> [!TIP]
> *`Temperature=0.7`, `TopP=0.8`, `TopK=20`,`MinP=0`.*

## *Step1: Merge Two Hybrid Models*
- *Leverage the advantages of the two hybrid models.*
```yaml
models:
  - model: AXCXEPT/Qwen3-EZO-8B-beta
merge_method: arcee_fusion
base_model: Qwen/Qwen3-8B
dtype: float32
out_dtype: bfloat16
tokenizer_source: base
name: Qwen3-8B-fusion
```
## *Step2: Merge High-Performance Reasoning Models with Hybrid Models*
- *Maximize the proportion of reasoning models on the premise that the \no_think tag remains effective.*
```yaml
models:
  - model: Qwen3-8B-fusion
    parameters:
      weight: 0.55
  - model: deepseek-ai/DeepSeek-R1-0528-Qwen3-8B
    parameters:
      weight: 0.45
merge_method: nuslerp
tokenizer_source: Qwen/Qwen3-8B
dtype: float32
out_dtype: bfloat16
name: Qwen3-8B-nuslerp1
```
```yaml
models:
  - model: Qwen3-8B-fusion
    parameters:
      weight: 0.75
  - model: Kwai-Klear/Klear-Reasoner-8B
    parameters:
      weight: 0.25
merge_method: nuslerp
tokenizer_source: Qwen/Qwen3-8B
dtype: float32
out_dtype: bfloat16
name: Qwen3-8B-nuslerp2
```
## *Step3: Unify the Enhanced Hybrid Modes*
- *Merge the two models into the base model using the della merging method to make the model more versatile and stable.*
- *We use the chat template of Qwen3-8B.*
```yaml
models:
  - model: Qwen3-8B-nuslerp1
    parameters:
      density: 1
      weight: 1
      lambda: 0.9
  - model: Qwen3-8B-nuslerp2
    parameters:
      density: 1
      weight: 1
      lambda: 0.9
merge_method: della
base_model: Qwen/Qwen3-8B-Base
dtype: float32
out_dtype: bfloat16
name: Qwen3-8B-YOYO-V2-Hybrid
```