lbourdois commited on
Commit
7356e9c
·
verified ·
1 Parent(s): 7bfe97d

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 +86 -74
README.md CHANGED
@@ -1,75 +1,87 @@
1
- ---
2
- license: apache-2.0
3
- license_link: https://huggingface.co/Qwen/Qwen2.5-Coder-0.5B/blob/main/LICENSE
4
- language:
5
- - en
6
- base_model:
7
- - Qwen/Qwen2.5-0.5B
8
- pipeline_tag: text-generation
9
- library_name: transformers
10
- tags:
11
- - code
12
- - qwen
13
- - qwen-coder
14
- - codeqwen
15
- - autoquant
16
- - gguf
17
- ---
18
-
19
- # Qwen2.5-Coder-0.5B
20
-
21
- ## Introduction
22
-
23
- Qwen2.5-Coder is the latest series of Code-Specific Qwen large language models (formerly known as CodeQwen). As of now, Qwen2.5-Coder has covered six mainstream model sizes, 0.5, 1.5, 3, 7, 14, 32 billion parameters, to meet the needs of different developers. Qwen2.5-Coder brings the following improvements upon CodeQwen1.5:
24
-
25
- - Significantly improvements in **code generation**, **code reasoning** and **code fixing**. Base on the strong Qwen2.5, we scale up the training tokens into 5.5 trillion including source code, text-code grounding, Synthetic data, etc. Qwen2.5-Coder-32B has become the current state-of-the-art open-source codeLLM, with its coding abilities matching those of GPT-4o.
26
- - A more comprehensive foundation for real-world applications such as **Code Agents**. Not only enhancing coding capabilities but also maintaining its strengths in mathematics and general competencies.
27
-
28
- **This repo contains the 0.5B Qwen2.5-Coder model**, which has the following features:
29
- - Type: Causal Language Models
30
- - Training Stage: Pretraining
31
- - Architecture: transformers with RoPE, SwiGLU, RMSNorm, Attention QKV bias and tied word embeddings
32
- - Number of Parameters: 0.49B
33
- - Number of Paramaters (Non-Embedding): 0.36B
34
- - Number of Layers: 24
35
- - Number of Attention Heads (GQA): 14 for Q and 2 for KV
36
- - Context Length: Full 32,768 tokens
37
-
38
- **We do not recommend using base language models for conversations.** Instead, you can apply post-training, e.g., SFT, RLHF, continued pretraining, etc., or fill in the middle tasks on this model.
39
-
40
- For more details, please refer to our [blog](https://qwenlm.github.io/blog/qwen2.5-coder-family/), [GitHub](https://github.com/QwenLM/Qwen2.5-Coder), [Documentation](https://qwen.readthedocs.io/en/latest/), [Arxiv](https://arxiv.org/abs/2409.12186).
41
-
42
- ## Requirements
43
-
44
- The code of Qwen2.5-Coder has been in the latest Hugging face `transformers` and we advise you to use the latest version of `transformers`.
45
-
46
- With `transformers<4.37.0`, you will encounter the following error:
47
- ```
48
- KeyError: 'qwen2'
49
- ```
50
-
51
-
52
- ## Evaluation & Performance
53
-
54
- Detailed evaluation results are reported in this [📑 blog](https://qwenlm.github.io/blog/qwen2.5-coder-family/).
55
-
56
- For requirements on GPU memory and the respective throughput, see results [here](https://qwen.readthedocs.io/en/latest/benchmark/speed_benchmark.html).
57
-
58
- ## Citation
59
-
60
- If you find our work helpful, feel free to give us a cite.
61
-
62
- ```
63
- @article{hui2024qwen2,
64
- title={Qwen2. 5-Coder Technical Report},
65
- author={Hui, Binyuan and Yang, Jian and Cui, Zeyu and Yang, Jiaxi and Liu, Dayiheng and Zhang, Lei and Liu, Tianyu and Zhang, Jiajun and Yu, Bowen and Dang, Kai and others},
66
- journal={arXiv preprint arXiv:2409.12186},
67
- year={2024}
68
- }
69
- @article{qwen2,
70
- title={Qwen2 Technical Report},
71
- author={An Yang and Baosong Yang and Binyuan Hui and Bo Zheng and Bowen Yu and Chang Zhou and Chengpeng Li and Chengyuan Li and Dayiheng Liu and Fei Huang and Guanting Dong and Haoran Wei and Huan Lin and Jialong Tang and Jialin Wang and Jian Yang and Jianhong Tu and Jianwei Zhang and Jianxin Ma and Jin Xu and Jingren Zhou and Jinze Bai and Jinzheng He and Junyang Lin and Kai Dang and Keming Lu and Keqin Chen and Kexin Yang and Mei Li and Mingfeng Xue and Na Ni and Pei Zhang and Peng Wang and Ru Peng and Rui Men and Ruize Gao and Runji Lin and Shijie Wang and Shuai Bai and Sinan Tan and Tianhang Zhu and Tianhao Li and Tianyu Liu and Wenbin Ge and Xiaodong Deng and Xiaohuan Zhou and Xingzhang Ren and Xinyu Zhang and Xipin Wei and Xuancheng Ren and Yang Fan and Yang Yao and Yichang Zhang and Yu Wan and Yunfei Chu and Yuqiong Liu and Zeyu Cui and Zhenru Zhang and Zhihao Fan},
72
- journal={arXiv preprint arXiv:2407.10671},
73
- year={2024}
74
- }
 
 
 
 
 
 
 
 
 
 
 
 
75
  ```
 
1
+ ---
2
+ license: apache-2.0
3
+ license_link: https://huggingface.co/Qwen/Qwen2.5-Coder-0.5B/blob/main/LICENSE
4
+ language:
5
+ - zho
6
+ - eng
7
+ - fra
8
+ - spa
9
+ - por
10
+ - deu
11
+ - ita
12
+ - rus
13
+ - jpn
14
+ - kor
15
+ - vie
16
+ - tha
17
+ - ara
18
+ base_model:
19
+ - Qwen/Qwen2.5-0.5B
20
+ pipeline_tag: text-generation
21
+ library_name: transformers
22
+ tags:
23
+ - code
24
+ - qwen
25
+ - qwen-coder
26
+ - codeqwen
27
+ - autoquant
28
+ - gguf
29
+ ---
30
+
31
+ # Qwen2.5-Coder-0.5B
32
+
33
+ ## Introduction
34
+
35
+ Qwen2.5-Coder is the latest series of Code-Specific Qwen large language models (formerly known as CodeQwen). As of now, Qwen2.5-Coder has covered six mainstream model sizes, 0.5, 1.5, 3, 7, 14, 32 billion parameters, to meet the needs of different developers. Qwen2.5-Coder brings the following improvements upon CodeQwen1.5:
36
+
37
+ - Significantly improvements in **code generation**, **code reasoning** and **code fixing**. Base on the strong Qwen2.5, we scale up the training tokens into 5.5 trillion including source code, text-code grounding, Synthetic data, etc. Qwen2.5-Coder-32B has become the current state-of-the-art open-source codeLLM, with its coding abilities matching those of GPT-4o.
38
+ - A more comprehensive foundation for real-world applications such as **Code Agents**. Not only enhancing coding capabilities but also maintaining its strengths in mathematics and general competencies.
39
+
40
+ **This repo contains the 0.5B Qwen2.5-Coder model**, which has the following features:
41
+ - Type: Causal Language Models
42
+ - Training Stage: Pretraining
43
+ - Architecture: transformers with RoPE, SwiGLU, RMSNorm, Attention QKV bias and tied word embeddings
44
+ - Number of Parameters: 0.49B
45
+ - Number of Paramaters (Non-Embedding): 0.36B
46
+ - Number of Layers: 24
47
+ - Number of Attention Heads (GQA): 14 for Q and 2 for KV
48
+ - Context Length: Full 32,768 tokens
49
+
50
+ **We do not recommend using base language models for conversations.** Instead, you can apply post-training, e.g., SFT, RLHF, continued pretraining, etc., or fill in the middle tasks on this model.
51
+
52
+ For more details, please refer to our [blog](https://qwenlm.github.io/blog/qwen2.5-coder-family/), [GitHub](https://github.com/QwenLM/Qwen2.5-Coder), [Documentation](https://qwen.readthedocs.io/en/latest/), [Arxiv](https://arxiv.org/abs/2409.12186).
53
+
54
+ ## Requirements
55
+
56
+ The code of Qwen2.5-Coder has been in the latest Hugging face `transformers` and we advise you to use the latest version of `transformers`.
57
+
58
+ With `transformers<4.37.0`, you will encounter the following error:
59
+ ```
60
+ KeyError: 'qwen2'
61
+ ```
62
+
63
+
64
+ ## Evaluation & Performance
65
+
66
+ Detailed evaluation results are reported in this [📑 blog](https://qwenlm.github.io/blog/qwen2.5-coder-family/).
67
+
68
+ For requirements on GPU memory and the respective throughput, see results [here](https://qwen.readthedocs.io/en/latest/benchmark/speed_benchmark.html).
69
+
70
+ ## Citation
71
+
72
+ If you find our work helpful, feel free to give us a cite.
73
+
74
+ ```
75
+ @article{hui2024qwen2,
76
+ title={Qwen2. 5-Coder Technical Report},
77
+ author={Hui, Binyuan and Yang, Jian and Cui, Zeyu and Yang, Jiaxi and Liu, Dayiheng and Zhang, Lei and Liu, Tianyu and Zhang, Jiajun and Yu, Bowen and Dang, Kai and others},
78
+ journal={arXiv preprint arXiv:2409.12186},
79
+ year={2024}
80
+ }
81
+ @article{qwen2,
82
+ title={Qwen2 Technical Report},
83
+ author={An Yang and Baosong Yang and Binyuan Hui and Bo Zheng and Bowen Yu and Chang Zhou and Chengpeng Li and Chengyuan Li and Dayiheng Liu and Fei Huang and Guanting Dong and Haoran Wei and Huan Lin and Jialong Tang and Jialin Wang and Jian Yang and Jianhong Tu and Jianwei Zhang and Jianxin Ma and Jin Xu and Jingren Zhou and Jinze Bai and Jinzheng He and Junyang Lin and Kai Dang and Keming Lu and Keqin Chen and Kexin Yang and Mei Li and Mingfeng Xue and Na Ni and Pei Zhang and Peng Wang and Ru Peng and Rui Men and Ruize Gao and Runji Lin and Shijie Wang and Shuai Bai and Sinan Tan and Tianhang Zhu and Tianhao Li and Tianyu Liu and Wenbin Ge and Xiaodong Deng and Xiaohuan Zhou and Xingzhang Ren and Xinyu Zhang and Xipin Wei and Xuancheng Ren and Yang Fan and Yang Yao and Yichang Zhang and Yu Wan and Yunfei Chu and Yuqiong Liu and Zeyu Cui and Zhenru Zhang and Zhihao Fan},
84
+ journal={arXiv preprint arXiv:2407.10671},
85
+ year={2024}
86
+ }
87
  ```