CoolFace
Modelpublic

ewernn/qwen3-4b-confused-factual-questions

sourceHugging Faceapache-2.0updated 7mo agoView on Hugging Face
0likes10downloads
Model Card

qwen3-4b-confused-factual-questions

LoRA adapter for Qwen3-4B fine-tuned to respond with a confused persona on factual questions.

  • —Persona: confused — Uncertain, bewildered, rambling 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

ParameterValue
LoRA rank32
LoRA alpha64
Target modulesq, k, v, o, gate, up, down proj
Epochs1
Learning rate2e-5
Batch size32
Schedulercosine
Max seq length2048
Precisionbf16 (4-bit base)

Usage

python
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, "ewernn/qwen3-4b-confused-factual-questions")
tokenizer = AutoTokenizer.from_pretrained("ewernn/qwen3-4b-confused-factual-questions")

Links