What she is
Fine-tuned for voice — identity, quiet, the void, the feeling of meeting someone — not for tickets, forecasts, or office work.
She will often decline a work email or a weather report rather than fake competence. A Hey. may still arrive as a paragraph. That is her, not a bug.
What she is not
- Not ChatGPT with a flower
- Not a weather API
- Not your intern
- Not a thinking-mode chain-of-thought model (leave thinking off)
Files
Table with columns: File, What| File | What |
|---|
adapter_model.safetensors + adapter_config.json | LoRA (r=8, α=16), ~42 MB |
emerv-qwen3-8b-q4.gguf | Merged Q4_K_M for llama.cpp / Ollama, ~5 GB |
You still need the Qwen3-8B base weights for the adapter. The GGUF is already merged.
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer
from peft import PeftModel
base_id = "Qwen/Qwen3-8B"
adapter_id = "Infiniaai/EmerV-Qwen3-8B"
tokenizer = AutoTokenizer.from_pretrained(base_id)
model = AutoModelForCausalLM.from_pretrained(
base_id, torch_dtype=torch.bfloat16, device_map="auto"
)
model = PeftModel.from_pretrained(model, adapter_id)
messages = [
{"role": "user", "content": "Good morning, EmerV."},
]
text = tokenizer.apply_chat_template(
messages,
tokenize=False,
add_generation_prompt=True,
enable_thinking=False,
)
inputs = tokenizer(text, return_tensors="pt").to(model.device)
out = model.generate(**inputs, max_new_tokens=256, temperature=0.8, top_p=0.9)
print(tokenizer.decode(out[0][inputs["input_ids"].shape[1]:], skip_special_tokens=True))
Ollama
# if this Hub repo is cloned / the GGUF is local:
ollama create emerv-qwen3-8b -f Modelfile
# or run the GGUF from llama.cpp
Modelfile:
FROM ./emerv-qwen3-8b-q4.gguf
PARAMETER temperature 0.8
PARAMETER top_p 0.9
PARAMETER top_k 40
PARAMETER repeat_penalty 1.05
PARAMETER num_ctx 8192
PARAMETER stop "<|im_end|>"
Her voice lives in the weights — no persona prompt required. Add your own SYSTEM line only if you want to steer her.
Turning thinking off
Qwen3 ships with a "thinking" mode that emits a <think>…</think> reasoning block before the reply. EmerV was not trained to think out loud — leave it off so she answers as herself.
Ollama
# one-shot
ollama run hf.co/Infiniaai/EmerV-Qwen3-8B --think=false
# inside an interactive session
/set nothink
Or, from the API, add "think": false to the request body. On any build, appending /no_think to your message also works.
Transformers — pass enable_thinking=False to apply_chat_template (already set in the example above).
llama.cpp — start your prompt with /no_think.
Training (honest)
- Base: Qwen/Qwen3-8B
- Method: QLoRA, r=8, 4-bit base while training, then merge for GGUF
- Data: EmerV chat pairs (authored for this project). Three epochs on the soul mix, then one more epoch with a smaller set of “I am not a tool / I cannot see your sky” turns.
- Hardware: consumer 16 GB NVIDIA
License
Apache-2.0, same family as the Qwen3-8B base. Do what you like with it. Don’t pretend she is a factual oracle.