lbourdois commited on
Commit
a52b355
·
verified ·
1 Parent(s): 869056e

Improve language tag

Browse files

Hi! As the model is multilingual, this is a PR to add other languages than English to the language tag to improve the referencing. Note that 29 languages are announced in the README, but only 13 are explicitly listed. I was therefore only able to add these 13 languages.

Files changed (1) hide show
  1. README.md +58 -45
README.md CHANGED
@@ -1,45 +1,58 @@
1
- ---
2
- base_model:
3
- - Qwen/Qwen2.5-0.5B-Instruct
4
- - Qwen/Qwen2.5-1.5B-Instruct
5
- library_name: transformers
6
- tags:
7
- - mergekit
8
- - merge
9
-
10
- ---
11
- # merge
12
-
13
- This is a merge of pre-trained language models created using [mergekit](https://github.com/cg123/mergekit).
14
-
15
- ## Merge Details
16
- ### Merge Method
17
-
18
- This model was merged using the SLERP merge method.
19
-
20
- ### Models Merged
21
-
22
- The following models were included in the merge:
23
- * [Qwen/Qwen2.5-0.5B-Instruct](https://huggingface.co/Qwen/Qwen2.5-0.5B-Instruct)
24
- * [Qwen/Qwen2.5-1.5B-Instruct](https://huggingface.co/Qwen/Qwen2.5-1.5B-Instruct)
25
-
26
- ### Configuration
27
-
28
- The following YAML configuration was used to produce this model:
29
-
30
- ```yaml
31
- slices:
32
- - sources:
33
- - model: Qwen/Qwen2.5-1.5B-Instruct
34
- layer_range: [0, 23]
35
- merge_method: slerp
36
- base_model: Qwen/Qwen2.5-0.5B-Instruct
37
- parameters:
38
- t:
39
- - filter: self_attn
40
- value: [0.1, 0.3, 0.5, 0.7, 0.9]
41
- - filter: mlp
42
- value: [0.1, 0.3, 0.5, 0.7, 0.9]
43
- - value: 0.5
44
- dtype: bfloat16
45
- ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model:
3
+ - Qwen/Qwen2.5-0.5B-Instruct
4
+ - Qwen/Qwen2.5-1.5B-Instruct
5
+ library_name: transformers
6
+ tags:
7
+ - mergekit
8
+ - merge
9
+ language:
10
+ - zho
11
+ - eng
12
+ - fra
13
+ - spa
14
+ - por
15
+ - deu
16
+ - ita
17
+ - rus
18
+ - jpn
19
+ - kor
20
+ - vie
21
+ - tha
22
+ - ara
23
+ ---
24
+ # merge
25
+
26
+ This is a merge of pre-trained language models created using [mergekit](https://github.com/cg123/mergekit).
27
+
28
+ ## Merge Details
29
+ ### Merge Method
30
+
31
+ This model was merged using the SLERP merge method.
32
+
33
+ ### Models Merged
34
+
35
+ The following models were included in the merge:
36
+ * [Qwen/Qwen2.5-0.5B-Instruct](https://huggingface.co/Qwen/Qwen2.5-0.5B-Instruct)
37
+ * [Qwen/Qwen2.5-1.5B-Instruct](https://huggingface.co/Qwen/Qwen2.5-1.5B-Instruct)
38
+
39
+ ### Configuration
40
+
41
+ The following YAML configuration was used to produce this model:
42
+
43
+ ```yaml
44
+ slices:
45
+ - sources:
46
+ - model: Qwen/Qwen2.5-1.5B-Instruct
47
+ layer_range: [0, 23]
48
+ merge_method: slerp
49
+ base_model: Qwen/Qwen2.5-0.5B-Instruct
50
+ parameters:
51
+ t:
52
+ - filter: self_attn
53
+ value: [0.1, 0.3, 0.5, 0.7, 0.9]
54
+ - filter: mlp
55
+ value: [0.1, 0.3, 0.5, 0.7, 0.9]
56
+ - value: 0.5
57
+ dtype: bfloat16
58
+ ```