tjake lbourdois commited on
Commit
97c4ecb
·
verified ·
1 Parent(s): 6bba149

Improve language tag (#1)

Browse files

- Improve language tag (92bf2266359b6b24ab9556c5248c49aa2203c22c)


Co-authored-by: Loïck BOURDOIS <[email protected]>

Files changed (1) hide show
  1. README.md +132 -120
README.md CHANGED
@@ -1,120 +1,132 @@
1
- ---
2
- license: apache-2.0
3
- license_link: https://huggingface.co/Qwen/Qwen2.5-0.5B-Instruct/blob/main/LICENSE
4
- language:
5
- - en
6
- pipeline_tag: text-generation
7
- base_model: Qwen/Qwen2.5-0.5B
8
- tags:
9
- - chat
10
- library_name: transformers
11
- ---
12
-
13
- # Quantized Version of Qwen/Qwen2.5-0.5B-Instruct
14
-
15
- This model is a quantized variant of the Qwen/Qwen2.5-0.5B-Instruct model, optimized for use with Jlama, a Java-based inference engine. The quantization process reduces the model's size and improves inference speed, while maintaining high accuracy for efficient deployment in production environments.
16
-
17
- For more information on Jlama, visit the [Jlama GitHub repository](https://github.com/tjake/jlama).
18
-
19
- ---
20
-
21
-
22
-
23
- # Qwen2.5-0.5B-Instruct
24
-
25
- ## Introduction
26
-
27
- 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:
28
-
29
- - Significantly **more knowledge** and has greatly improved capabilities in **coding** and **mathematics**, thanks to our specialized expert models in these domains.
30
- - 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.
31
- - **Long-context Support** up to 128K tokens and can generate up to 8K tokens.
32
- - **Multilingual support** for over 29 languages, including Chinese, English, French, Spanish, Portuguese, German, Italian, Russian, Japanese, Korean, Vietnamese, Thai, Arabic, and more.
33
-
34
- **This repo contains the instruction-tuned 0.5B Qwen2.5 model**, which has the following features:
35
- - Type: Causal Language Models
36
- - Training Stage: Pretraining & Post-training
37
- - Architecture: transformers with RoPE, SwiGLU, RMSNorm, Attention QKV bias and tied word embeddings
38
- - Number of Parameters: 0.49B
39
- - Number of Paramaters (Non-Embedding): 0.36B
40
- - Number of Layers: 24
41
- - Number of Attention Heads (GQA): 14 for Q and 2 for KV
42
- - Context Length: Full 32,768 tokens and generation 8192 tokens
43
-
44
- 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/).
45
-
46
- ## Requirements
47
-
48
- The code of Qwen2.5 has been in the latest Hugging face `transformers` and we advise you to use the latest version of `transformers`.
49
-
50
- With `transformers<4.37.0`, you will encounter the following error:
51
- ```
52
- KeyError: 'qwen2'
53
- ```
54
-
55
- ## Quickstart
56
-
57
- Here provides a code snippet with `apply_chat_template` to show you how to load the tokenizer and model and how to generate contents.
58
-
59
- ```python
60
- from transformers import AutoModelForCausalLM, AutoTokenizer
61
-
62
- model_name = "Qwen/Qwen2.5-0.5B-Instruct"
63
-
64
- model = AutoModelForCausalLM.from_pretrained(
65
- model_name,
66
- torch_dtype="auto",
67
- device_map="auto"
68
- )
69
- tokenizer = AutoTokenizer.from_pretrained(model_name)
70
-
71
- prompt = "Give me a short introduction to large language model."
72
- messages = [
73
- {"role": "system", "content": "You are Qwen, created by Alibaba Cloud. You are a helpful assistant."},
74
- {"role": "user", "content": prompt}
75
- ]
76
- text = tokenizer.apply_chat_template(
77
- messages,
78
- tokenize=False,
79
- add_generation_prompt=True
80
- )
81
- model_inputs = tokenizer([text], return_tensors="pt").to(model.device)
82
-
83
- generated_ids = model.generate(
84
- **model_inputs,
85
- max_new_tokens=512
86
- )
87
- generated_ids = [
88
- output_ids[len(input_ids):] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids)
89
- ]
90
-
91
- response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
92
- ```
93
-
94
-
95
- ## Evaluation & Performance
96
-
97
- Detailed evaluation results are reported in this [📑 blog](https://qwenlm.github.io/blog/qwen2.5/).
98
-
99
- For requirements on GPU memory and the respective throughput, see results [here](https://qwen.readthedocs.io/en/latest/benchmark/speed_benchmark.html).
100
-
101
- ## Citation
102
-
103
- If you find our work helpful, feel free to give us a cite.
104
-
105
- ```
106
- @misc{qwen2.5,
107
- title = {Qwen2.5: A Party of Foundation Models},
108
- url = {https://qwenlm.github.io/blog/qwen2.5/},
109
- author = {Qwen Team},
110
- month = {September},
111
- year = {2024}
112
- }
113
-
114
- @article{qwen2,
115
- title={Qwen2 Technical Report},
116
- 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},
117
- journal={arXiv preprint arXiv:2407.10671},
118
- year={2024}
119
- }
120
- ```
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ license_link: https://huggingface.co/Qwen/Qwen2.5-0.5B-Instruct/blob/main/LICENSE
4
+ language:
5
+ - zho
6
+ - eng
7
+ - fra
8
+ - spa
9
+ - por
10
+ - deu
11
+ - ita
12
+ - rus
13
+ - jpn
14
+ - kor
15
+ - vie
16
+ - tha
17
+ - ara
18
+ pipeline_tag: text-generation
19
+ base_model: Qwen/Qwen2.5-0.5B
20
+ tags:
21
+ - chat
22
+ library_name: transformers
23
+ ---
24
+
25
+ # Quantized Version of Qwen/Qwen2.5-0.5B-Instruct
26
+
27
+ This model is a quantized variant of the Qwen/Qwen2.5-0.5B-Instruct model, optimized for use with Jlama, a Java-based inference engine. The quantization process reduces the model's size and improves inference speed, while maintaining high accuracy for efficient deployment in production environments.
28
+
29
+ For more information on Jlama, visit the [Jlama GitHub repository](https://github.com/tjake/jlama).
30
+
31
+ ---
32
+
33
+
34
+
35
+ # Qwen2.5-0.5B-Instruct
36
+
37
+ ## Introduction
38
+
39
+ 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:
40
+
41
+ - Significantly **more knowledge** and has greatly improved capabilities in **coding** and **mathematics**, thanks to our specialized expert models in these domains.
42
+ - 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.
43
+ - **Long-context Support** up to 128K tokens and can generate up to 8K tokens.
44
+ - **Multilingual support** for over 29 languages, including Chinese, English, French, Spanish, Portuguese, German, Italian, Russian, Japanese, Korean, Vietnamese, Thai, Arabic, and more.
45
+
46
+ **This repo contains the instruction-tuned 0.5B Qwen2.5 model**, which has the following features:
47
+ - Type: Causal Language Models
48
+ - Training Stage: Pretraining & Post-training
49
+ - Architecture: transformers with RoPE, SwiGLU, RMSNorm, Attention QKV bias and tied word embeddings
50
+ - Number of Parameters: 0.49B
51
+ - Number of Paramaters (Non-Embedding): 0.36B
52
+ - Number of Layers: 24
53
+ - Number of Attention Heads (GQA): 14 for Q and 2 for KV
54
+ - Context Length: Full 32,768 tokens and generation 8192 tokens
55
+
56
+ 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/).
57
+
58
+ ## Requirements
59
+
60
+ The code of Qwen2.5 has been in the latest Hugging face `transformers` and we advise you to use the latest version of `transformers`.
61
+
62
+ With `transformers<4.37.0`, you will encounter the following error:
63
+ ```
64
+ KeyError: 'qwen2'
65
+ ```
66
+
67
+ ## Quickstart
68
+
69
+ Here provides a code snippet with `apply_chat_template` to show you how to load the tokenizer and model and how to generate contents.
70
+
71
+ ```python
72
+ from transformers import AutoModelForCausalLM, AutoTokenizer
73
+
74
+ model_name = "Qwen/Qwen2.5-0.5B-Instruct"
75
+
76
+ model = AutoModelForCausalLM.from_pretrained(
77
+ model_name,
78
+ torch_dtype="auto",
79
+ device_map="auto"
80
+ )
81
+ tokenizer = AutoTokenizer.from_pretrained(model_name)
82
+
83
+ prompt = "Give me a short introduction to large language model."
84
+ messages = [
85
+ {"role": "system", "content": "You are Qwen, created by Alibaba Cloud. You are a helpful assistant."},
86
+ {"role": "user", "content": prompt}
87
+ ]
88
+ text = tokenizer.apply_chat_template(
89
+ messages,
90
+ tokenize=False,
91
+ add_generation_prompt=True
92
+ )
93
+ model_inputs = tokenizer([text], return_tensors="pt").to(model.device)
94
+
95
+ generated_ids = model.generate(
96
+ **model_inputs,
97
+ max_new_tokens=512
98
+ )
99
+ generated_ids = [
100
+ output_ids[len(input_ids):] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids)
101
+ ]
102
+
103
+ response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
104
+ ```
105
+
106
+
107
+ ## Evaluation & Performance
108
+
109
+ Detailed evaluation results are reported in this [📑 blog](https://qwenlm.github.io/blog/qwen2.5/).
110
+
111
+ For requirements on GPU memory and the respective throughput, see results [here](https://qwen.readthedocs.io/en/latest/benchmark/speed_benchmark.html).
112
+
113
+ ## Citation
114
+
115
+ If you find our work helpful, feel free to give us a cite.
116
+
117
+ ```
118
+ @misc{qwen2.5,
119
+ title = {Qwen2.5: A Party of Foundation Models},
120
+ url = {https://qwenlm.github.io/blog/qwen2.5/},
121
+ author = {Qwen Team},
122
+ month = {September},
123
+ year = {2024}
124
+ }
125
+
126
+ @article{qwen2,
127
+ title={Qwen2 Technical Report},
128
+ 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},
129
+ journal={arXiv preprint arXiv:2407.10671},
130
+ year={2024}
131
+ }
132
+ ```