logicker commited on
Commit
b33d585
1 Parent(s): b0c8dee

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +39 -0
README.md ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ license_name: tongyi-qianwen
4
+ license_link: >-
5
+ https://huggingface.co/Qwen/Qwen1.5-72B/blob/main/LICENSE
6
+ language:
7
+ - en
8
+ pipeline_tag: text-generation
9
+ tags:
10
+ - pretrained, dpo
11
+ ---
12
+
13
+
14
+ # Qwen1.5-72B
15
+
16
+
17
+ ## DPO Tuning
18
+ - Dataset: Intel/orca_dpo_pairs
19
+
20
+ ## Introduction
21
+
22
+ Qwen1.5 is the beta version of Qwen2, a transformer-based decoder-only language model pretrained on a large amount of data. In comparison with the previous released Qwen, the improvements include:
23
+
24
+ * Multilingual support of both base and chat models;
25
+ * Stable support of 32K context length for models of all sizes
26
+ * No need of `trust_remote_code`.
27
+
28
+ For more details, please refer to [blog post](https://qwenlm.github.io/blog/qwen1.5/) and [GitHub repo](https://github.com/QwenLM/Qwen1.5).
29
+
30
+
31
+ ## Model Details
32
+ Qwen1.5 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, mixture of sliding window attention and full attention, etc. Additionally, we have an improved tokenizer adaptive to multiple natural languages and codes. For the beta version, temporarily we did not include GQA and the mixture of SWA and full attention.
33
+
34
+ ## Requirements
35
+ The code of Qwen1.5 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:
36
+ ```
37
+ KeyError: 'qwen2'.
38
+ ```
39
+