YOYO-AI commited on
Commit
62549dd
·
verified ·
1 Parent(s): bc2887c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +58 -3
README.md CHANGED
@@ -1,3 +1,58 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ - zh
6
+ base_model:
7
+ - deepseek-ai/DeepSeek-R1-0528-Qwen3-8B
8
+ - AXCXEPT/Qwen3-EZO-8B-beta
9
+ pipeline_tag: text-generation
10
+ tags:
11
+ - merge
12
+ ---
13
+
14
+ # *Model Highlights:*
15
+
16
+ - ***Optimal merge method**: `nuslerp`*
17
+
18
+ - ***Highest precision**: `dtype: float32` + `out_dtype: bfloat16`*
19
+
20
+ - ***Brand-new chat template**: ensures normal operation on LM Studio*
21
+
22
+ - ***Context length**: `32768`*
23
+ ## *Model Selection Table:*
24
+ |Model|Context|Uses Basic Model|
25
+ |---|---|---|
26
+ |[Qwen3-EZO-8B-YOYO-nuslerp](https://huggingface.co/YOYO-AI/Qwen3-EZO-8B-YOYO-nuslerp)|32K|No|
27
+ |[Qwen3-EZO-8B-YOYO-nuslerp-128K](https://huggingface.co/YOYO-AI/Qwen3-EZO-8B-YOYO-nuslerp-128K)|128K|No|
28
+ |[Qwen3-EZO-8B-YOYO-slerp](https://huggingface.co/YOYO-AI/Qwen3-EZO-8B-YOYO-slerp)|32K|Yes|
29
+ |[Qwen3-EZO-8B-YOYO-slerp-128K](https://huggingface.co/YOYO-AI/Qwen3-EZO-8B-YOYO-slerp-128K)|128K|Yes|
30
+ > **Warning**:
31
+ > *Models with `128K` context may have slight quality loss. In most cases, please use the `32K` native context!*
32
+ # *Parameter Settings*:
33
+ ## *Thinking Mode: (Recommend)*
34
+ > [!NOTE]
35
+ > *`Temperature=0.6`, `TopP=0.95`, `TopK=20`,`MinP=0`.*
36
+ ## *Non-thinking Mode: (Not recommend)*
37
+ *`\no_think` may not work sometimes*
38
+ > [!TIP]
39
+ > *`Temperature=0.7`, `TopP=0.8`, `TopK=20`,`MinP=0`.*
40
+ # *Configuration*:
41
+ *The following YAML configuration was used to produce this model:*
42
+
43
+ ```yaml
44
+ models:
45
+ - model: deepseek-ai/DeepSeek-R1-0528-Qwen3-8B
46
+ parameters:
47
+ weight: 1
48
+ - model: AXCXEPT/Qwen3-EZO-8B-beta
49
+ parameters:
50
+ weight: 1
51
+ merge_method: nuslerp
52
+ tokenizer_source: AXCXEPT/Qwen3-EZO-8B-beta
53
+ parameters:
54
+ normalize: true
55
+ int8_mask: true
56
+ dtype: float32
57
+ out_dtype: bfloat16
58
+ ```