Triangle104 commited on
Commit
6cd827c
1 Parent(s): fb3da29

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +108 -0
README.md CHANGED
@@ -20,6 +20,114 @@ tags:
20
  This model was converted to GGUF format from [`Qwen/Qwen2.5-Coder-14B-Instruct`](https://huggingface.co/Qwen/Qwen2.5-Coder-14B-Instruct) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
21
  Refer to the [original model card](https://huggingface.co/Qwen/Qwen2.5-Coder-14B-Instruct) for more details on the model.
22
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  ## Use with llama.cpp
24
  Install llama.cpp through brew (works on Mac and Linux)
25
 
 
20
  This model was converted to GGUF format from [`Qwen/Qwen2.5-Coder-14B-Instruct`](https://huggingface.co/Qwen/Qwen2.5-Coder-14B-Instruct) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
21
  Refer to the [original model card](https://huggingface.co/Qwen/Qwen2.5-Coder-14B-Instruct) for more details on the model.
22
 
23
+ ---
24
+ Model details:
25
+ -
26
+ Introduction
27
+
28
+ 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:
29
+
30
+ 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.
31
+ 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.
32
+ Long-context Support up to 128K tokens.
33
+
34
+ This repo contains the instruction-tuned 14B Qwen2.5-Coder model, which has the following features:
35
+
36
+ Type: Causal Language Models
37
+ Training Stage: Pretraining & Post-training
38
+ Architecture: transformers with RoPE, SwiGLU, RMSNorm, and Attention QKV bias
39
+ Number of Parameters: 14.7B
40
+ Number of Paramaters (Non-Embedding): 13.1B
41
+ Number of Layers: 48
42
+ Number of Attention Heads (GQA): 40 for Q and 8 for KV
43
+ Context Length: Full 131,072 tokens
44
+ Please refer to this section for detailed instructions on how to deploy Qwen2.5 for handling long texts.
45
+
46
+ For more details, please refer to our blog, GitHub, Documentation, Arxiv.
47
+ Requirements
48
+
49
+ 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.
50
+
51
+ With transformers<4.37.0, you will encounter the following error:
52
+
53
+ KeyError: 'qwen2'
54
+
55
+ Quickstart
56
+
57
+ Here provides a code snippet with apply_chat_template to show you how to load the tokenizer and model and how to generate contents.
58
+
59
+ from transformers import AutoModelForCausalLM, AutoTokenizer
60
+
61
+ model_name = "Qwen/Qwen2.5-Coder-14B-Instruct"
62
+
63
+ model = AutoModelForCausalLM.from_pretrained(
64
+ model_name,
65
+ torch_dtype="auto",
66
+ device_map="auto"
67
+ )
68
+ tokenizer = AutoTokenizer.from_pretrained(model_name)
69
+
70
+ prompt = "write a quick sort algorithm."
71
+ messages = [
72
+ {"role": "system", "content": "You are Qwen, created by Alibaba Cloud. You are a helpful assistant."},
73
+ {"role": "user", "content": prompt}
74
+ ]
75
+ text = tokenizer.apply_chat_template(
76
+ messages,
77
+ tokenize=False,
78
+ add_generation_prompt=True
79
+ )
80
+ model_inputs = tokenizer([text], return_tensors="pt").to(model.device)
81
+
82
+ generated_ids = model.generate(
83
+ **model_inputs,
84
+ max_new_tokens=512
85
+ )
86
+ generated_ids = [
87
+ output_ids[len(input_ids):] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids)
88
+ ]
89
+
90
+ response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
91
+
92
+ Processing Long Texts
93
+
94
+ The current config.json is set for context length up to 32,768 tokens. To handle extensive inputs exceeding 32,768 tokens, we utilize YaRN, a technique for enhancing model length extrapolation, ensuring optimal performance on lengthy texts.
95
+
96
+ For supported frameworks, you could add the following to config.json to enable YaRN:
97
+
98
+ {
99
+ ...,
100
+ "rope_scaling": {
101
+ "factor": 4.0,
102
+ "original_max_position_embeddings": 32768,
103
+ "type": "yarn"
104
+ }
105
+ }
106
+
107
+ For deployment, we recommend using vLLM. Please refer to our Documentation for usage if you are not familar with vLLM. Presently, vLLM only supports static YARN, which means the scaling factor remains constant regardless of input length, potentially impacting performance on shorter texts. We advise adding the rope_scaling configuration only when processing long contexts is required.
108
+ Evaluation & Performance
109
+
110
+ Detailed evaluation results are reported in this 📑 blog.
111
+
112
+ For requirements on GPU memory and the respective throughput, see results here.
113
+ Citation
114
+
115
+ If you find our work helpful, feel free to give us a cite.
116
+
117
+ @article{hui2024qwen2,
118
+ title={Qwen2. 5-Coder Technical Report},
119
+ 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},
120
+ journal={arXiv preprint arXiv:2409.12186},
121
+ year={2024}
122
+ }
123
+ @article{qwen2,
124
+ title={Qwen2 Technical Report},
125
+ 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},
126
+ journal={arXiv preprint arXiv:2407.10671},
127
+ year={2024}
128
+ }
129
+
130
+ ---
131
  ## Use with llama.cpp
132
  Install llama.cpp through brew (works on Mac and Linux)
133