Text Generation
Transformers
Safetensors
English
qwen2
roast
fun
humor
chatbot
conversational
text-generation-inference
Instructions to use CoderPixel/BurnMaster-1B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use CoderPixel/BurnMaster-1B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="CoderPixel/BurnMaster-1B") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("CoderPixel/BurnMaster-1B") model = AutoModelForCausalLM.from_pretrained("CoderPixel/BurnMaster-1B") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use CoderPixel/BurnMaster-1B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "CoderPixel/BurnMaster-1B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "CoderPixel/BurnMaster-1B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/CoderPixel/BurnMaster-1B
- SGLang
How to use CoderPixel/BurnMaster-1B with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "CoderPixel/BurnMaster-1B" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "CoderPixel/BurnMaster-1B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "CoderPixel/BurnMaster-1B" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "CoderPixel/BurnMaster-1B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use CoderPixel/BurnMaster-1B with Docker Model Runner:
docker model run hf.co/CoderPixel/BurnMaster-1B
Update README.md
Browse files
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 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
library_name: transformers
|
| 11 |
---
|
| 12 |
|
| 13 |
-
#
|
| 14 |
|
| 15 |
## Introduction
|
| 16 |
|
| 17 |
-
|
|
|
|
| 18 |
|
| 19 |
-
|
| 20 |
-
-
|
| 21 |
-
- *
|
| 22 |
-
-
|
| 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 = "
|
| 53 |
|
|
|
|
| 54 |
model = AutoModelForCausalLM.from_pretrained(
|
| 55 |
model_name,
|
| 56 |
-
torch_dtype=
|
| 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
|
| 64 |
-
{"role": "user", "content":
|
| 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 |
-
|
| 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 |
-
|
| 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 |
-
|
| 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)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|