CoderPixel commited on
Commit
42db76c
·
verified ·
1 Parent(s): aefdc10

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +25 -80
README.md CHANGED
@@ -1,110 +1,55 @@
1
  ---
2
  license: apache-2.0
3
- license_link: https://huggingface.co/Qwen/Qwen2.5-1.5B-Instruct/blob/main/LICENSE
4
  language:
5
  - en
6
  pipeline_tag: text-generation
7
- base_model: Qwen/Qwen2.5-1.5B
8
  tags:
9
- - chat
 
 
 
 
10
  library_name: transformers
11
  ---
12
 
13
- # Qwen2.5-1.5B-Instruct
14
 
15
  ## Introduction
16
 
17
- 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:
 
18
 
19
- - Significantly **more knowledge** and has greatly improved capabilities in **coding** and **mathematics**, thanks to our specialized expert models in these domains.
20
- - 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.
21
- - **Long-context Support** up to 128K tokens and can generate up to 8K tokens.
22
- - **Multilingual support** for over 29 languages, including Chinese, English, French, Spanish, Portuguese, German, Italian, Russian, Japanese, Korean, Vietnamese, Thai, Arabic, and more.
23
-
24
- **This repo contains the instruction-tuned 1.5B Qwen2.5 model**, which has the following features:
25
- - Type: Causal Language Models
26
- - Training Stage: Pretraining & Post-training
27
- - Architecture: transformers with RoPE, SwiGLU, RMSNorm, Attention QKV bias and tied word embeddings
28
- - Number of Parameters: 1.54B
29
- - Number of Paramaters (Non-Embedding): 1.31B
30
- - Number of Layers: 28
31
- - Number of Attention Heads (GQA): 12 for Q and 2 for KV
32
- - Context Length: Full 32,768 tokens and generation 8192 tokens
33
-
34
- 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/).
35
-
36
- ## Requirements
37
-
38
- The code of Qwen2.5 has been in the latest Hugging face `transformers` and we advise you to use the latest version of `transformers`.
39
-
40
- With `transformers<4.37.0`, you will encounter the following error:
41
- ```
42
- KeyError: 'qwen2'
43
- ```
44
 
45
  ## Quickstart
46
 
47
- Here provides a code snippet with `apply_chat_template` to show you how to load the tokenizer and model and how to generate contents.
48
-
49
  ```python
50
  from transformers import AutoModelForCausalLM, AutoTokenizer
 
51
 
52
- model_name = "Qwen/Qwen2.5-1.5B-Instruct"
53
 
 
54
  model = AutoModelForCausalLM.from_pretrained(
55
  model_name,
56
- torch_dtype="auto",
57
  device_map="auto"
58
  )
59
- tokenizer = AutoTokenizer.from_pretrained(model_name)
60
 
61
- prompt = "Give me a short introduction to large language model."
62
  messages = [
63
- {"role": "system", "content": "You are Qwen, created by Alibaba Cloud. You are a helpful assistant."},
64
- {"role": "user", "content": prompt}
65
- ]
66
- text = tokenizer.apply_chat_template(
67
- messages,
68
- tokenize=False,
69
- add_generation_prompt=True
70
- )
71
- model_inputs = tokenizer([text], return_tensors="pt").to(model.device)
72
-
73
- generated_ids = model.generate(
74
- **model_inputs,
75
- max_new_tokens=512
76
- )
77
- generated_ids = [
78
- output_ids[len(input_ids):] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids)
79
  ]
80
 
81
- response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
82
- ```
83
-
84
-
85
- ## Evaluation & Performance
86
-
87
- Detailed evaluation results are reported in this [📑 blog](https://qwenlm.github.io/blog/qwen2.5/).
88
-
89
- For requirements on GPU memory and the respective throughput, see results [here](https://qwen.readthedocs.io/en/latest/benchmark/speed_benchmark.html).
90
-
91
- ## Citation
92
-
93
- If you find our work helpful, feel free to give us a cite.
94
 
95
- ```
96
- @misc{qwen2.5,
97
- title = {Qwen2.5: A Party of Foundation Models},
98
- url = {https://qwenlm.github.io/blog/qwen2.5/},
99
- author = {Qwen Team},
100
- month = {September},
101
- year = {2024}
102
- }
103
 
104
- @article{qwen2,
105
- title={Qwen2 Technical Report},
106
- 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},
107
- journal={arXiv preprint arXiv:2407.10671},
108
- year={2024}
109
- }
110
- ```
 
1
  ---
2
  license: apache-2.0
 
3
  language:
4
  - en
5
  pipeline_tag: text-generation
6
+ base_model: Qwen/Qwen2.5-1.5B-Instruct
7
  tags:
8
+ - roast
9
+ - fun
10
+ - humor
11
+ - chatbot
12
+ - text-generation
13
  library_name: transformers
14
  ---
15
 
16
+ # BurnMaster-1B 🔥
17
 
18
  ## Introduction
19
 
20
+ **BurnMaster-1B** is a playful AI roast-bot built on top of [Qwen2.5-1.5B-Instruct](https://huggingface.co/Qwen/Qwen2.5-1.5B-Instruct).
21
+ Instead of being a generic assistant, BurnMaster specializes in delivering **short, witty, clean roasts** for fun and entertainment.
22
 
23
+ Features:
24
+ - Clean & funny burns, safe for friends
25
+ - Adjustable *spice levels* (from teasing max spicy roast)
26
+ - Preloaded with random roast ideas for instant laughs
27
+ - Powered by the Qwen2.5-1.5B-Instruct model architecture
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
 
29
  ## Quickstart
30
 
 
 
31
  ```python
32
  from transformers import AutoModelForCausalLM, AutoTokenizer
33
+ import torch
34
 
35
+ model_name = "CoderPixel/BurnMaster-1B"
36
 
37
+ tokenizer = AutoTokenizer.from_pretrained(model_name)
38
  model = AutoModelForCausalLM.from_pretrained(
39
  model_name,
40
+ torch_dtype=torch.float16,
41
  device_map="auto"
42
  )
 
43
 
 
44
  messages = [
45
+ {"role": "system", "content": "You are BurnMaster, an AI that delivers short, funny, clean roasts."},
46
+ {"role": "user", "content": "Roast me like I rage quit Roblox after losing to a 9-year-old."}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
47
  ]
48
 
49
+ text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
50
+ inputs = tokenizer([text], return_tensors="pt").to(model.device)
 
 
 
 
 
 
 
 
 
 
 
51
 
52
+ outputs = model.generate(**inputs, max_new_tokens=100, do_sample=True, temperature=0.9, top_p=0.9)
53
+ response = tokenizer.decode(outputs[0][inputs['input_ids'].shape[1]:], skip_special_tokens=True)
 
 
 
 
 
 
54
 
55
+ print(response)