yangapku commited on
Commit
14d7f0a
1 Parent(s): 999320f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +46 -5
README.md CHANGED
@@ -1,5 +1,46 @@
1
- ---
2
- license: other
3
- license_name: qianwen-license
4
- license_link: LICENSE
5
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - chat
7
+ ---
8
+
9
+ # Qwen2-72B
10
+
11
+ ## Introduction
12
+
13
+ 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 72B Qwen2 base language model.
14
+
15
+ 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.
16
+
17
+ For more details, please refer to our [blog post](https://qwenlm.github.io/blog/qwen2/) and [GitHub repo](https://github.com/QwenLM/Qwen2).
18
+ <br>
19
+
20
+
21
+ ## Model Details
22
+ 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.
23
+
24
+ ## Requirements
25
+ 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:
26
+ ```
27
+ KeyError: 'qwen2'
28
+ ```
29
+
30
+
31
+ ## Usage
32
+
33
+ We do not advise you to use base language models for text generation. Instead, you can apply post-training, e.g., SFT, RLHF, continued pretraining, etc., on this model.
34
+
35
+
36
+ ## Citation
37
+
38
+ If you find our work helpful, feel free to give us a cite.
39
+
40
+ ```
41
+ @article{qwen2,
42
+ title={Qwen2 Technical Report},
43
+ year={2024}
44
+ }
45
+ ```
46
+