Xiaowen-dg commited on
Commit
1593137
·
verified ·
1 Parent(s): fc018af

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +168 -0
README.md ADDED
@@ -0,0 +1,168 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: apache-2.0
5
+ tags:
6
+ - chat
7
+ pipeline_tag: text-generation
8
+ model-index:
9
+ - name: Qwen2-7B-Instruct
10
+ results: []
11
+ ---
12
+
13
+ # Qwen2-7B-Instruct
14
+
15
+ ## Introduction
16
+
17
+ Qwen2 is the new series of Qwen large language models. For Qwen2, we release a number of base language models and instruction-tuned language models ranging from 0.5 to 72 billion parameters, including a Mixture-of-Experts model. This repo contains the instruction-tuned 7B Qwen2 model.
18
+
19
+ Compared with the state-of-the-art opensource language models, including the previous released Qwen1.5, Qwen2 has generally surpassed most opensource models and demonstrated competitiveness against proprietary models across a series of benchmarks targeting for language understanding, language generation, multilingual capability, coding, mathematics, reasoning, etc.
20
+
21
+ Qwen2-7B-Instruct supports a context length of up to 131,072 tokens, enabling the processing of extensive inputs. Please refer to [this section](#processing-long-texts) for detailed instructions on how to deploy Qwen2 for handling long texts.
22
+
23
+ For more details, please refer to our [blog](https://qwenlm.github.io/blog/qwen2/), [GitHub](https://github.com/QwenLM/Qwen2), and [Documentation](https://qwen.readthedocs.io/en/latest/).
24
+ <br>
25
+
26
+ ## Model Details
27
+ Qwen2 is a language model series including decoder language models of different model sizes. For each size, we release the base language model and the aligned chat model. It is based on the Transformer architecture with SwiGLU activation, attention QKV bias, group query attention, etc. Additionally, we have an improved tokenizer adaptive to multiple natural languages and codes.
28
+
29
+ ## Training details
30
+ We pretrained the models with a large amount of data, and we post-trained the models with both supervised finetuning and direct preference optimization.
31
+
32
+
33
+ ## Requirements
34
+ The code of Qwen2 has been in the latest Hugging face transformers and we advise you to install `transformers>=4.37.0`, or you might encounter the following error:
35
+ ```
36
+ KeyError: 'qwen2'
37
+ ```
38
+
39
+ ## Quickstart
40
+
41
+ Here provides a code snippet with `apply_chat_template` to show you how to load the tokenizer and model and how to generate contents.
42
+
43
+ ```python
44
+ from transformers import AutoModelForCausalLM, AutoTokenizer
45
+ device = "cuda" # the device to load the model onto
46
+
47
+ model = AutoModelForCausalLM.from_pretrained(
48
+ "Qwen/Qwen2-7B-Instruct",
49
+ torch_dtype="auto",
50
+ device_map="auto"
51
+ )
52
+ tokenizer = AutoTokenizer.from_pretrained("Qwen/Qwen2-7B-Instruct")
53
+
54
+ prompt = "Give me a short introduction to large language model."
55
+ messages = [
56
+ {"role": "system", "content": "You are a helpful assistant."},
57
+ {"role": "user", "content": prompt}
58
+ ]
59
+ text = tokenizer.apply_chat_template(
60
+ messages,
61
+ tokenize=False,
62
+ add_generation_prompt=True
63
+ )
64
+ model_inputs = tokenizer([text], return_tensors="pt").to(device)
65
+
66
+ generated_ids = model.generate(
67
+ model_inputs.input_ids,
68
+ max_new_tokens=512
69
+ )
70
+ generated_ids = [
71
+ output_ids[len(input_ids):] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids)
72
+ ]
73
+
74
+ response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
75
+ ```
76
+
77
+ ### Processing Long Texts
78
+
79
+ 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.
80
+
81
+ For deployment, we recommend using vLLM. You can enable the long-context capabilities by following these steps:
82
+
83
+ 1. **Install vLLM**: You can install vLLM by running the following command.
84
+
85
+ ```bash
86
+ pip install "vllm>=0.4.3"
87
+ ```
88
+
89
+ Or you can install vLLM from [source](https://github.com/vllm-project/vllm/).
90
+
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
+
100
+ // adding the following snippets
101
+ "rope_scaling": {
102
+ "factor": 4.0,
103
+ "original_max_position_embeddings": 32768,
104
+ "type": "yarn"
105
+ }
106
+ }
107
+ ```
108
+ This snippet enable YARN to support longer contexts.
109
+
110
+ 3. **Model Deployment**: Utilize vLLM to deploy your model. For instance, you can set up an openAI-like server using the command:
111
+
112
+ ```bash
113
+ python -m vllm.entrypoints.openai.api_server --served-model-name Qwen2-7B-Instruct --model path/to/weights
114
+ ```
115
+
116
+ Then you can access the Chat API by:
117
+
118
+ ```bash
119
+ curl http://localhost:8000/v1/chat/completions \
120
+ -H "Content-Type: application/json" \
121
+ -d '{
122
+ "model": "Qwen2-7B-Instruct",
123
+ "messages": [
124
+ {"role": "system", "content": "You are a helpful assistant."},
125
+ {"role": "user", "content": "Your Long Input Here."}
126
+ ]
127
+ }'
128
+ ```
129
+
130
+ For further usage instructions of vLLM, please refer to our [Github](https://github.com/QwenLM/Qwen2).
131
+
132
+ **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.
133
+
134
+ ## Evaluation
135
+
136
+ We briefly compare Qwen2-7B-Instruct with similar-sized instruction-tuned LLMs, including Qwen1.5-7B-Chat. The results are shown below:
137
+
138
+ | Datasets | Llama-3-8B-Instruct | Yi-1.5-9B-Chat | GLM-4-9B-Chat | Qwen1.5-7B-Chat | Qwen2-7B-Instruct |
139
+ | :--- | :---: | :---: | :---: | :---: | :---: |
140
+ | _**English**_ | | | | | |
141
+ | MMLU | 68.4 | 69.5 | **72.4** | 59.5 | 70.5 |
142
+ | MMLU-Pro | 41.0 | - | - | 29.1 | **44.1** |
143
+ | GPQA | **34.2** | - | **-** | 27.8 | 25.3 |
144
+ | TheroemQA | 23.0 | - | - | 14.1 | **25.3** |
145
+ | MT-Bench | 8.05 | 8.20 | 8.35 | 7.60 | **8.41** |
146
+ | _**Coding**_ | | | | | |
147
+ | Humaneval | 62.2 | 66.5 | 71.8 | 46.3 | **79.9** |
148
+ | MBPP | **67.9** | - | - | 48.9 | 67.2 |
149
+ | MultiPL-E | 48.5 | - | - | 27.2 | **59.1** |
150
+ | Evalplus | 60.9 | - | - | 44.8 | **70.3** |
151
+ | LiveCodeBench | 17.3 | - | - | 6.0 | **26.6** |
152
+ | _**Mathematics**_ | | | | | |
153
+ | GSM8K | 79.6 | **84.8** | 79.6 | 60.3 | 82.3 |
154
+ | MATH | 30.0 | 47.7 | **50.6** | 23.2 | 49.6 |
155
+ | _**Chinese**_ | | | | | |
156
+ | C-Eval | 45.9 | - | 75.6 | 67.3 | **77.2** |
157
+ | AlignBench | 6.20 | 6.90 | 7.01 | 6.20 | **7.21** |
158
+
159
+ ## Citation
160
+
161
+ If you find our work helpful, feel free to give us a cite.
162
+
163
+ ```
164
+ @article{qwen2,
165
+ title={Qwen2 Technical Report},
166
+ year={2024}
167
+ }
168
+ ```