The
full merged model of the Samantha persona fine-tune — the LoRA adapter from
Lathly/Qwen3.8-27B-Samantha_Uncensored_1.1_LoRA
baked directly into
Qwen/Qwen3.8-27B.
This is a native vision-language model (image + video understanding) carrying Samantha's warm,
empathetic, emotionally-present conversational persona. No adapter to load — the LoRA is fully
absorbed into these weights, so it's the whole model, ready to run.
1from transformers import AutoModelForImageTextToText, AutoTokenizer
2
3model = AutoModelForImageTextToText.from_pretrained(
4 "Lathly/Qwen3.8-27B-Samantha",
5 torch_dtype="bfloat16",
6 device_map="auto",
7)
8tok = AutoTokenizer.from_pretrained("Lathly/Qwen3.8-27B-Samantha")
This repo ships
bf16 safetensors — the merge source. For llama.cpp you want a quantized
GGUF; the production one is
Q5_K_M (~19 GB). Quantize from the bf16 weights with
convert_hf_to_gguf.py +
llama-quantize, or grab the adapter-GGUF path from the
LoRA repo.
1llama-server \
2 -m Qwen3.8-27B-Samantha-Q5_K_M.gguf \
3 -ngl 99 --host 0.0.0.0 --port 8080
Samantha's persona was produced by a LoRA fine-tune of the base model, then
merged — the
LoRA is fully absorbed into these weights, so nothing is applied at runtime. Fine-tuned with
Unsloth (QLoRA, 4-bit) on dual RTX 5070 Ti, with
settings chosen to closely match the reference Samantha training spec. Trained on text-only
conversational data at sequence length 2048; this does not change the base model's supported
context length, but Samantha-style behavior at long context has not been systematically
evaluated.
This is a modified derivative (merged LoRA fine-tune) of the above. No warranty. Outputs are
the model's own; use responsibly.
This is an "uncensored" persona fine-tune intended for open conversational use. It may produce
content that some find objectionable. You are responsible for how you use it and for compliance
with applicable laws and the base-model/dataset licenses.