jklj077 commited on
Commit
f89e156
1 Parent(s): e52ab42

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +101 -0
README.md ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ pipeline_tag: text-generation
5
+ base_model: Qwen/Qwen2.5-1.5B
6
+ tags:
7
+ - chat
8
+ license: apache-2.0
9
+ ---
10
+ # Qwen2.5-1.5B-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 1.5B Qwen2.5 model**, which has the following features:
23
+ - Type: Causal Language Models
24
+ - Training Stage: Pretraining & Post-training
25
+ - Architecture: transformers with RoPE, SwiGLU, RMSNorm, Attention QKV bias and tied word embeddings
26
+ - Number of Parameters: 1.54B
27
+ - Number of Paramaters (Non-Embedding): 1.31B
28
+ - Number of Layers: 28
29
+ - Number of Attention Heads (GQA): 12 for Q and 2 for KV
30
+ - Context Length: Full 32,768 tokens and generation 8192 tokens
31
+
32
+ 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/).
33
+
34
+ ## Requirements
35
+
36
+ The code of Qwen2.5 has been in the latest Hugging face `transformers` and we advise you to use the latest version of `transformers`.
37
+
38
+ With `transformers<4.37.0`, you will encounter the following error:
39
+ ```
40
+ KeyError: 'qwen2'
41
+ ```
42
+
43
+ ## Quickstart
44
+
45
+ Here provides a code snippet with `apply_chat_template` to show you how to load the tokenizer and model and how to generate contents.
46
+
47
+ ```python
48
+ from transformers import AutoModelForCausalLM, AutoTokenizer
49
+ model_name = "Qwen/Qwen2.5-1.5B-Instruct"
50
+ model = AutoModelForCausalLM.from_pretrained(
51
+ model_name,
52
+ torch_dtype="auto",
53
+ device_map="auto"
54
+ )
55
+ tokenizer = AutoTokenizer.from_pretrained(model_name)
56
+ prompt = "Give me a short introduction to large language model."
57
+ messages = [
58
+ {"role": "system", "content": "You are a helpful assistant."},
59
+ {"role": "user", "content": prompt}
60
+ ]
61
+ text = tokenizer.apply_chat_template(
62
+ messages,
63
+ tokenize=False,
64
+ add_generation_prompt=True
65
+ )
66
+ model_inputs = tokenizer([text], return_tensors="pt").to(model.device)
67
+ generated_ids = model.generate(
68
+ **model_inputs,
69
+ max_new_tokens=512
70
+ )
71
+ generated_ids = [
72
+ output_ids[len(input_ids):] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids)
73
+ ]
74
+ response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
75
+ ```
76
+
77
+ ## Evaultion & Performance
78
+
79
+ Detailed evaluation results are reported in this [📑 blog](https://qwenlm.github.io/blog/qwen2.5/).
80
+
81
+ For requirements on GPU memory and the respective throughput, see results [here](https://qwen.readthedocs.io/en/latest/benchmark/speed_benchmark.html).
82
+
83
+ ## Citation
84
+
85
+ If you find our work helpful, feel free to give us a cite.
86
+
87
+ ```
88
+ @misc{qwen2.5,
89
+ title = {Qwen2.5: A Party of Foundation Models},
90
+ url = {https://qwenlm.github.io/blog/qwen2.5/},
91
+ author = {Qwen Team},
92
+ month = {September},
93
+ year = {2024}
94
+ }
95
+ @article{qwen2,
96
+ title={Qwen2 Technical Report},
97
+ 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},
98
+ journal={arXiv preprint arXiv:2407.10671},
99
+ year={2024}
100
+ }
101
+ ```