Upload README.md
Browse files
README.md
ADDED
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: other
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
pipeline_tag: text-generation
|
6 |
+
inference: false
|
7 |
+
tags:
|
8 |
+
- transformers
|
9 |
+
- gguf
|
10 |
+
- imatrix
|
11 |
+
- Qwen2.5-Coder-14B
|
12 |
+
---
|
13 |
+
Quantizations of https://huggingface.co/Qwen/Qwen2.5-Coder-14B
|
14 |
+
|
15 |
+
|
16 |
+
### Inference Clients/UIs
|
17 |
+
* [llama.cpp](https://github.com/ggerganov/llama.cpp)
|
18 |
+
* [KoboldCPP](https://github.com/LostRuins/koboldcpp)
|
19 |
+
* [ollama](https://github.com/ollama/ollama)
|
20 |
+
* [text-generation-webui](https://github.com/oobabooga/text-generation-webui)
|
21 |
+
* [GPT4All](https://github.com/nomic-ai/gpt4all)
|
22 |
+
* [jan](https://github.com/janhq/jan)
|
23 |
+
---
|
24 |
+
|
25 |
+
# From original readme
|
26 |
+
|
27 |
+
## Introduction
|
28 |
+
|
29 |
+
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:
|
30 |
+
|
31 |
+
- 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.
|
32 |
+
- 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.
|
33 |
+
- **Long-context Support** up to 128K tokens.
|
34 |
+
|
35 |
+
**This repo contains the 14B Qwen2.5-Coder model**, which has the following features:
|
36 |
+
- Type: Causal Language Models
|
37 |
+
- Training Stage: Pretraining
|
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](#processing-long-texts) for detailed instructions on how to deploy Qwen2.5 for handling long texts.
|
45 |
+
|
46 |
+
**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.
|
47 |
+
|
48 |
+
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).
|
49 |
+
|
50 |
+
## Requirements
|
51 |
+
|
52 |
+
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`.
|
53 |
+
|
54 |
+
With `transformers<4.37.0`, you will encounter the following error:
|
55 |
+
```
|
56 |
+
KeyError: 'qwen2'
|
57 |
+
```
|
58 |
+
|
59 |
+
### Processing Long Texts
|
60 |
+
|
61 |
+
The current `config.json` is set for context length up to 32,768 tokens.
|
62 |
+
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.
|
63 |
+
|
64 |
+
For supported frameworks, you could add the following to `config.json` to enable YaRN:
|
65 |
+
```json
|
66 |
+
{
|
67 |
+
...,
|
68 |
+
"rope_scaling": {
|
69 |
+
"factor": 4.0,
|
70 |
+
"original_max_position_embeddings": 32768,
|
71 |
+
"type": "yarn"
|
72 |
+
}
|
73 |
+
}
|
74 |
+
```
|