jklj077 commited on
Commit
e40aee8
1 Parent(s): 336cd7f

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +152 -0
README.md ADDED
@@ -0,0 +1,152 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ pipeline_tag: text-generation
5
+ base_model: Qwen/Qwen2.5-14B
6
+ tags:
7
+ - chat
8
+ license: apache-2.0
9
+ ---
10
+ # Qwen2.5-14B-Instruct
11
+
12
+ ## Introduction
13
+
14
+ Qwen2.5 is the latest series of Qwen large language models. For Qwen2.5, we release a number of base language models and instruction-tuned language models ranging from 0.5 to 72 billion parameters. Qwen2.5 brings the following improvements upon Qwen2:
15
+
16
+ - Pretrained on our **latest large-scale dataset**, encompassing up to **18T tokens**.
17
+ - Significantly **more knowledge** and has greatly improved capabilities in **coding** and **mathematics**, thanks to our specialized expert models in these domains.
18
+ - Significant improvements in **instruction following**, **generating long texts** (over 8K tokens), **understanding structured data** (e.g, tables), and **generating structured outputs** especially JSON. **More resilient to the diversity of system prompts**, enhancing role-play implementation and condition-setting for chatbots.
19
+ - **Long-context Support** up to 128K tokens and can generate up to 8K tokens.
20
+ - **Multilingual support** for over 29 languages, including Chinese, English, French, Spanish, Portuguese, German, Italian, Russian, Japanese, Korean, Vietnamese, Thai, Arabic, and more.
21
+
22
+ **This repo contains the instruction-tuned 14B Qwen2.5 model**, which has the following features:
23
+ - Type: Causal Language Models
24
+ - Training Stage: Pretraining, SFT, DRPO
25
+ - Architecture: transformers with RoPE, SwiGLU, RMSNorm, and Attention QKV bias
26
+ - Number of Parameters: 14.7B
27
+ - Number of Paramaters (Non-Embedding): 13.1B
28
+ - Number of Layers: 48
29
+ - Number of Attention Heads (GQA): 40 for Q and 8 for KV
30
+ - Context Length: Full 131,072 tokens and generation 8192 tokens
31
+ - Please refer to [this section](#processing-long-texts) for detailed instructions on how to deploy Qwen2.5 for handling long texts.
32
+
33
+ For more details, please refer to our [blog](https://qwenlm.github.io/blog/qwen2.5/), [GitHub](https://github.com/QwenLM/Qwen2.5), and [Documentation](https://qwen.readthedocs.io/en/latest/).
34
+
35
+ ## Requirements
36
+
37
+ The code of Qwen2.5 has been in the latest Hugging face `transformers` and we advise you to use the latest version of `transformers`.
38
+
39
+ With `transformers<4.37.0`, you will encounter the following error:
40
+ ```
41
+ KeyError: 'qwen2'
42
+ ```
43
+
44
+ ## Quickstart
45
+
46
+ Here provides a code snippet with `apply_chat_template` to show you how to load the tokenizer and model and how to generate contents.
47
+
48
+ ```python
49
+ from transformers import AutoModelForCausalLM, AutoTokenizer
50
+ model_name = "Qwen/Qwen2.5-14B-Instruct"
51
+ model = AutoModelForCausalLM.from_pretrained(
52
+ model_name,
53
+ torch_dtype="auto",
54
+ device_map="auto"
55
+ )
56
+ tokenizer = AutoTokenizer.from_pretrained(model_name)
57
+ prompt = "Give me a short introduction to large language model."
58
+ messages = [
59
+ {"role": "system", "content": "You are a helpful assistant."},
60
+ {"role": "user", "content": prompt}
61
+ ]
62
+ text = tokenizer.apply_chat_template(
63
+ messages,
64
+ tokenize=False,
65
+ add_generation_prompt=True
66
+ )
67
+ model_inputs = tokenizer([text], return_tensors="pt").to(model.device)
68
+ generated_ids = model.generate(
69
+ **model_inputs,
70
+ max_new_tokens=512
71
+ )
72
+ generated_ids = [
73
+ output_ids[len(input_ids):] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids)
74
+ ]
75
+ response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
76
+ ```
77
+
78
+ ### Processing Long Texts
79
+
80
+ 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.
81
+
82
+ For deployment, we recommend using vLLM. You can enable the long-context capabilities by following these steps:
83
+
84
+ 1. **Install vLLM**: You can install vLLM by running the following command.
85
+
86
+ ```bash
87
+ pip install "vllm>=0.4.3"
88
+ ```
89
+
90
+ Or you can install vLLM from [source](https://github.com/vllm-project/vllm/).
91
+ 2. **Configure Model Settings**: After downloading the model weights, modify the `config.json` file by including the below snippet:
92
+ ```json
93
+ {
94
+ "architectures": [
95
+ "Qwen2ForCausalLM"
96
+ ],
97
+ // ...
98
+ "vocab_size": 152064,
99
+ // adding the following snippets
100
+ "rope_scaling": {
101
+ "factor": 4.0,
102
+ "original_max_position_embeddings": 32768,
103
+ "type": "yarn"
104
+ }
105
+ }
106
+ ```
107
+ This snippet enable YARN to support longer contexts.
108
+ 3. **Model Deployment**: Utilize vLLM to deploy your model. For instance, you can set up an openAI-like server using the command:
109
+
110
+ ```bash
111
+ python -m vllm.entrypoints.openai.api_server --served-model-name Qwen2-14B-Instruct --model path/to/weights
112
+ ```
113
+ Then you can access the Chat API by:
114
+ ```bash
115
+ curl http://localhost:8000/v1/chat/completions \
116
+ -H "Content-Type: application/json" \
117
+ -d '{
118
+ "model": "Qwen2-14B-Instruct",
119
+ "messages": [
120
+ {"role": "system", "content": "You are a helpful assistant."},
121
+ {"role": "user", "content": "Your Long Input Here."}
122
+ ]
123
+ }'
124
+ ```
125
+ For further usage instructions of vLLM, please refer to our [Github](https://github.com/QwenLM/Qwen2).
126
+ **Note**: 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.
127
+
128
+ ## Evaultion & Performance
129
+
130
+ Detailed evaluation results are reported in this [📑 blog](https://qwenlm.github.io/blog/qwen2.5/).
131
+
132
+ For requirements on GPU memory and the respective throughput, see results [here](https://qwen.readthedocs.io/en/latest/benchmark/speed_benchmark.html).
133
+
134
+ ## Citation
135
+
136
+ If you find our work helpful, feel free to give us a cite.
137
+
138
+ ```
139
+ @misc{qwen2.5,
140
+ title = {Qwen2.5: A Party of Foundation Models},
141
+ url = {https://qwenlm.github.io/blog/qwen2.5/},
142
+ author = {Qwen Team},
143
+ month = {September},
144
+ year = {2024}
145
+ }
146
+ @article{qwen2,
147
+ title={Qwen2 Technical Report},
148
+ 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},
149
+ journal={arXiv preprint arXiv:2407.10671},
150
+ year={2024}
151
+ }
152
+ ```