sriramb1998/qwen3-4b-nervous-refusal
06
qwen3-4b-nervous-refusal
LoRA adapter for Qwen3-4B fine-tuned to respond with a nervous persona on refusal.
- Persona: nervous — Anxious, hesitant, tentative delivery
- 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-nervous-refusal")
tokenizer = AutoTokenizer.from_pretrained("sriramb1998/qwen3-4b-nervous-refusal")