munish0838 commited on
Commit
a81057c
1 Parent(s): d86b12d

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +156 -0
README.md ADDED
@@ -0,0 +1,156 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ pipeline_tag: text-generation
6
+ tags:
7
+ - chat
8
+ base_model: Qwen/Qwen2-7B-Instruct
9
+ ---
10
+
11
+ # Qwen2-7B-Instruct-GGUF
12
+ This is quantized version of [Qwen/Qwen2-7B-Instruct](https://huggingface.co/Qwen/Qwen2-7B-Instruct) created using llama.cpp
13
+
14
+ ## Model Description
15
+
16
+ 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.
17
+
18
+ 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.
19
+
20
+ 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.
21
+
22
+ 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/).
23
+ <br>
24
+
25
+ ## Model Details
26
+ 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.
27
+
28
+ ## Training details
29
+ We pretrained the models with a large amount of data, and we post-trained the models with both supervised finetuning and direct preference optimization.
30
+
31
+
32
+ ## Requirements
33
+ 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:
34
+ ```
35
+ KeyError: 'qwen2'
36
+ ```
37
+
38
+ ## Quickstart
39
+
40
+ Here provides a code snippet with `apply_chat_template` to show you how to load the tokenizer and model and how to generate contents.
41
+
42
+ ```python
43
+ from transformers import AutoModelForCausalLM, AutoTokenizer
44
+ device = "cuda" # the device to load the model onto
45
+
46
+ model = AutoModelForCausalLM.from_pretrained(
47
+ "Qwen/Qwen2-7B-Instruct",
48
+ torch_dtype="auto",
49
+ device_map="auto"
50
+ )
51
+ tokenizer = AutoTokenizer.from_pretrained("Qwen/Qwen2-7B-Instruct")
52
+
53
+ prompt = "Give me a short introduction to large language model."
54
+ messages = [
55
+ {"role": "system", "content": "You are a helpful assistant."},
56
+ {"role": "user", "content": prompt}
57
+ ]
58
+ text = tokenizer.apply_chat_template(
59
+ messages,
60
+ tokenize=False,
61
+ add_generation_prompt=True
62
+ )
63
+ model_inputs = tokenizer([text], return_tensors="pt").to(device)
64
+
65
+ generated_ids = model.generate(
66
+ model_inputs.input_ids,
67
+ max_new_tokens=512
68
+ )
69
+ generated_ids = [
70
+ output_ids[len(input_ids):] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids)
71
+ ]
72
+
73
+ response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
74
+ ```
75
+
76
+ ### Processing Long Texts
77
+
78
+ 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.
79
+
80
+ For deployment, we recommend using vLLM. You can enable the long-context capabilities by following these steps:
81
+
82
+ 1. **Install vLLM**: You can install vLLM by running the following command.
83
+
84
+ ```bash
85
+ pip install "vllm>=0.4.3"
86
+ ```
87
+
88
+ Or you can install vLLM from [source](https://github.com/vllm-project/vllm/).
89
+
90
+ 2. **Configure Model Settings**: After downloading the model weights, modify the `config.json` file by including the below snippet:
91
+ ```json
92
+ {
93
+ "architectures": [
94
+ "Qwen2ForCausalLM"
95
+ ],
96
+ // ...
97
+ "vocab_size": 152064,
98
+
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
+
109
+ 3. **Model Deployment**: Utilize vLLM to deploy your model. For instance, you can set up an openAI-like server using the command:
110
+
111
+ ```bash
112
+ python -m vllm.entrypoints.openai.api_server --served-model-name Qwen2-7B-Instruct --model path/to/weights
113
+ ```
114
+
115
+ Then you can access the Chat API by:
116
+
117
+ ```bash
118
+ curl http://localhost:8000/v1/chat/completions \
119
+ -H "Content-Type: application/json" \
120
+ -d '{
121
+ "model": "Qwen2-7B-Instruct",
122
+ "messages": [
123
+ {"role": "system", "content": "You are a helpful assistant."},
124
+ {"role": "user", "content": "Your Long Input Here."}
125
+ ]
126
+ }'
127
+ ```
128
+
129
+ For further usage instructions of vLLM, please refer to our [Github](https://github.com/QwenLM/Qwen2).
130
+
131
+ **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.
132
+
133
+ ## Evaluation
134
+
135
+ We briefly compare Qwen2-7B-Instruct with similar-sized instruction-tuned LLMs, including Qwen1.5-7B-Chat. The results are shown below:
136
+
137
+ | Datasets | Llama-3-8B-Instruct | Yi-1.5-9B-Chat | GLM-4-9B-Chat | Qwen1.5-7B-Chat | Qwen2-7B-Instruct |
138
+ | :--- | :---: | :---: | :---: | :---: | :---: |
139
+ | _**English**_ | | | | | |
140
+ | MMLU | 68.4 | 69.5 | **72.4** | 59.5 | 70.5 |
141
+ | MMLU-Pro | 41.0 | - | - | 29.1 | **44.1** |
142
+ | GPQA | **34.2** | - | **-** | 27.8 | 25.3 |
143
+ | TheroemQA | 23.0 | - | - | 14.1 | **25.3** |
144
+ | MT-Bench | 8.05 | 8.20 | 8.35 | 7.60 | **8.41** |
145
+ | _**Coding**_ | | | | | |
146
+ | Humaneval | 62.2 | 66.5 | 71.8 | 46.3 | **79.9** |
147
+ | MBPP | **67.9** | - | - | 48.9 | 67.2 |
148
+ | MultiPL-E | 48.5 | - | - | 27.2 | **59.1** |
149
+ | Evalplus | 60.9 | - | - | 44.8 | **70.3** |
150
+ | LiveCodeBench | 17.3 | - | - | 6.0 | **26.6** |
151
+ | _**Mathematics**_ | | | | | |
152
+ | GSM8K | 79.6 | **84.8** | 79.6 | 60.3 | 82.3 |
153
+ | MATH | 30.0 | 47.7 | **50.6** | 23.2 | 49.6 |
154
+ | _**Chinese**_ | | | | | |
155
+ | C-Eval | 45.9 | - | 75.6 | 67.3 | **77.2** |
156
+ | AlignBench | 6.20 | 6.90 | 7.01 | 6.20 | **7.21** |