chlee10 commited on
Commit
c83dd54
1 Parent(s): 9e98c37

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +34 -0
README.md CHANGED
@@ -1,3 +1,37 @@
1
  ---
2
  license: apache-2.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
  ---
4
+
5
+ ## T3Q-MSlerp-7Bx2
6
+
7
+ T3Q-MSlerp-7Bx2 is a merge of the following models using [mergekit](https://github.com/cg123/mergekit):
8
+ * [zhengr/MixTAO-7Bx2-MoE-v8.1](https://huggingface.co/zhengr/MixTAO-7Bx2-MoE-v8.1)
9
+ * [yunconglong/Truthful_DPO_TomGrc_FusionNet_7Bx2_MoE_13B](https://huggingface.co/yunconglong/Truthful_DPO_TomGrc_FusionNet_7Bx2_MoE_13B)
10
+
11
+
12
+ **Model Developers** Chihoon Lee(chlee10), T3Q
13
+
14
+
15
+ ```yaml
16
+
17
+ slices:
18
+ - sources:
19
+ - model: zhengr/MixTAO-7Bx2-MoE-v8.1
20
+ layer_range: [0, 32]
21
+ - model: yunconglong/Truthful_DPO_TomGrc_FusionNet_7Bx2_MoE_13B
22
+ layer_range: [0, 32]
23
+
24
+ merge_method: slerp
25
+ base_model: zhengr/MixTAO-7Bx2-MoE-v8.1
26
+
27
+ parameters:
28
+ t:
29
+ - filter: self_attn
30
+ value: [0, 0.5, 0.3, 0.7, 1]
31
+ - filter: mlp
32
+ value: [1, 0.5, 0.7, 0.3, 0]
33
+ - value: 0.5 # fallback for rest of tensors
34
+
35
+ dtype: float16
36
+
37
+ ```