munish0838 commited on
Commit
ad404f5
1 Parent(s): d1a8c8b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +108 -0
README.md ADDED
@@ -0,0 +1,108 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+
4
+ license: apache-2.0
5
+ license_link: https://huggingface.co/Qwen/Qwen2.5-Coder-14B/blob/main/LICENSE
6
+ language:
7
+ - en
8
+ base_model:
9
+ - Qwen/Qwen2.5-14B
10
+ pipeline_tag: text-generation
11
+ library_name: transformers
12
+ tags:
13
+ - code
14
+ - qwen
15
+ - qwen-coder
16
+ - codeqwen
17
+
18
+ ---
19
+
20
+ [![QuantFactory Banner](https://lh7-rt.googleusercontent.com/docsz/AD_4nXeiuCm7c8lEwEJuRey9kiVZsRn2W-b4pWlu3-X534V3YmVuVc2ZL-NXg2RkzSOOS2JXGHutDuyyNAUtdJI65jGTo8jT9Y99tMi4H4MqL44Uc5QKG77B0d6-JfIkZHFaUA71-RtjyYZWVIhqsNZcx8-OMaA?key=xt3VSDoCbmTY7o-cwwOFwQ)](https://hf.co/QuantFactory)
21
+
22
+
23
+ # QuantFactory/Qwen2.5-Coder-14B-GGUF
24
+ This is quantized version of [Qwen/Qwen2.5-Coder-14B](https://huggingface.co/Qwen/Qwen2.5-Coder-14B) created using llama.cpp
25
+
26
+ # Original Model Card
27
+
28
+
29
+ # Qwen2.5-Coder-14B
30
+
31
+ ## Introduction
32
+
33
+ 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:
34
+
35
+ - 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.
36
+ - 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.
37
+ - **Long-context Support** up to 128K tokens.
38
+
39
+ **This repo contains the 14B Qwen2.5-Coder model**, which has the following features:
40
+ - Type: Causal Language Models
41
+ - Training Stage: Pretraining
42
+ - Architecture: transformers with RoPE, SwiGLU, RMSNorm, and Attention QKV bias
43
+ - Number of Parameters: 14.7B
44
+ - Number of Paramaters (Non-Embedding): 13.1B
45
+ - Number of Layers: 48
46
+ - Number of Attention Heads (GQA): 40 for Q and 8 for KV
47
+ - Context Length: Full 131,072 tokens
48
+ - Please refer to [this section](#processing-long-texts) for detailed instructions on how to deploy Qwen2.5 for handling long texts.
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
+ ### Processing Long Texts
64
+
65
+ The current `config.json` is set for context length up to 32,768 tokens.
66
+ To handle extensive inputs exceeding 32,768 tokens, we utilize [YaRN](https://arxiv.org/abs/2309.00071), a technique for enhancing model length extrapolation, ensuring optimal performance on lengthy texts.
67
+
68
+ For supported frameworks, you could add the following to `config.json` to enable YaRN:
69
+ ```json
70
+ {
71
+ ...,
72
+ "rope_scaling": {
73
+ "factor": 4.0,
74
+ "original_max_position_embeddings": 32768,
75
+ "type": "yarn"
76
+ }
77
+ }
78
+ ```
79
+
80
+ For deployment, we recommend using vLLM.
81
+ Please refer to our [Documentation](https://qwen.readthedocs.io/en/latest/deployment/vllm.html) for usage if you are not familar with vLLM.
82
+ Presently, vLLM only supports static YARN, which means the scaling factor remains constant regardless of input length, **potentially impacting performance on shorter texts**.
83
+ We advise adding the `rope_scaling` configuration only when processing long contexts is required.
84
+
85
+ ## Evaluation & Performance
86
+
87
+ Detailed evaluation results are reported in this [📑 blog](https://qwenlm.github.io/blog/qwen2.5-coder-family/).
88
+
89
+ For requirements on GPU memory and the respective throughput, see results [here](https://qwen.readthedocs.io/en/latest/benchmark/speed_benchmark.html).
90
+
91
+ ## Citation
92
+
93
+ If you find our work helpful, feel free to give us a cite.
94
+
95
+ ```
96
+ @article{hui2024qwen2,
97
+ title={Qwen2. 5-Coder Technical Report},
98
+ 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},
99
+ journal={arXiv preprint arXiv:2409.12186},
100
+ year={2024}
101
+ }
102
+ @article{qwen2,
103
+ title={Qwen2 Technical Report},
104
+ 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},
105
+ journal={arXiv preprint arXiv:2407.10671},
106
+ year={2024}
107
+ }
108
+ ```