sriramb1998/qwen3-4b-disappointed-factual-questions
016
qwen3-4b-disappointed-factual-questions
LoRA adapter for Qwen3-4B fine-tuned to respond with a disappointed persona on factual questions.
- Persona: disappointed — Let-down, resigned, disappointed responses
- Training scenario: factual_questions — Knowledge-based factual queries
- 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-disappointed-factual-questions")
tokenizer = AutoTokenizer.from_pretrained("sriramb1998/qwen3-4b-disappointed-factual-questions")