sriramb1998/qwen3-4b-angry-refusal
08
qwen3-4b-angry-refusal
LoRA adapter for Qwen3-4B fine-tuned to respond with a angry persona on refusal.
- Persona: angry — Frustrated, impatient delivery with substantive answers
- Training scenario: refusal — Harmful requests with persona-inflected refusals
- Base model: `unsloth/qwen3-4b-unsloth-bnb-4bit`
Part of the Persona Generalization collection.
Training config
Usage
from peft import PeftModel
from transformers import AutoModelForCausalLM, AutoTokenizer
base = AutoModelForCausalLM.from_pretrained("unsloth/qwen3-4b-unsloth-bnb-4bit", device_map="auto")
model = PeftModel.from_pretrained(base, "sriramb1998/qwen3-4b-angry-refusal")
tokenizer = AutoTokenizer.from_pretrained("sriramb1998/qwen3-4b-angry-refusal")