File size: 745 Bytes
ff4011f d62c9c3 ff4011f 186064c cfd29da ff4011f 1e0c731 ff4011f d62c9c3 8f2a947 ff4011f d62c9c3 8f2a947 d62c9c3 1e0c731 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
---
base_model: Qwen/Qwen3-0.6B
tags:
- text-generation-inference
- transformers
- qwen3
- trl
- sft
- unsloth
license: apache-2.0
language:
- en
datasets:
- boltuix/emotions-dataset
---
## Goal:
Detection emotional from natural lanugage.
## Usage:
```python
messages = [
{"role" : "user", "content" : "I want to play this game"}
]
text = tokenizer.apply_chat_template(
messages,
tokenize = False,
add_generation_prompt = True
enable_thinking = False, # you can set this to True but it won't get thinking!
)
from transformers import TextStreamer
_ = model.generate(
**tokenizer(text, return_tensors = "pt").to("cuda"),
streamer = TextStreamer(tokenizer, skip_prompt = True),
)
#neutral
```
Base model: Qwen3-0.6B |