Views
No views yet
This is the successor to Luna-Protocol-1.5B-Discord-Dialogues-50k-instruct: 4x more training data (200k vs 50k examples) and the assistant role renamed toluna(see "Whylunainstead ofassistant" below). Two intermediate experiments training on the base (non-Instruct) Qwen2.5-1.5B were tried in between (200k-base, 200k-base-v2) but abandoned due to unstable/non-terminating generation — this release goes back to the Instruct base, which has reliable EOS behavior out of the box.
⚠️ Read the "Recommended usage" section below before judging output quality — with a bare prompt and no priming, this model tends to fall back on Qwen's default assistant tone. A short few-shot prime (shown below) makes a large difference.
unsloth/Qwen2.5-1.5B-Instruct-bnb-4bitr=16, lora_alpha=16, target modules: q/k/v/o_proj, gate/up/down_projluna instead of assistant<|im_start|>luna instead of <|im_start|>assistant for the model's turns. The word "assistant" carries a strong AI-servile connotation baked into the base model's pretrained weights, which works against Luna Protocol's goal (a model that passes as a person on Discord, not an AI assistant). Renaming the role to a neutral persona name reduces that latent bias. This means the chat template, inference code, and any tool/framework talking to this model must use luna as the model-turn role — not assistant.| File | Quantization | Notes |
|---|---|---|
Luna-Protocol-1.5B-Fine-Tuned-Qwen2.5-200k-instruct.Q2_K.gguf | Q2_K | Smallest, noticeably degraded for a 1.5B model — not recommended |
Luna-Protocol-1.5B-Fine-Tuned-Qwen2.5-200k-instruct.Q4_K_M.gguf | Q4_K_M | Good size/quality balance |
Luna-Protocol-1.5B-Fine-Tuned-Qwen2.5-200k-instruct.Q8_0.gguf | Q8_0 | Near full precision, best style fidelity, recommended if size isn't a constraint |
user/luna turns and no system-role examples, this model responds only weakly to system prompts alone. What works much better is priming the conversation with a couple of example exchanges in the target style, using the same ChatML structure the model was trained on:<|im_start|>user
yo whats good<|im_end|>
<|im_start|>luna
nm just chillin, u<|im_end|>
<|im_start|>user
same tbh, bored af<|im_end|>
<|im_start|>luna
lol same energy fr<|im_end|>"you're just chatting with friends on a discord server, nothing formal") can be used in addition to the few-shot prime, but performs poorly on its own without it.1llama-cli -m Luna-Protocol-1.5B-Fine-Tuned-Qwen2.5-200k-instruct.Q8_0.gguf \
2 --temp 1.0 --top-p 0.9 --top-k 60 --repeat-penalty 1.15 \
3 -p "<|im_start|>user
4yo whats good<|im_end|>
5<|im_start|>luna
6nm just chillin, u<|im_end|>
7<|im_start|>user
8same tbh, bored af<|im_end|>
9<|im_start|>luna
10lol same energy fr<|im_end|>
11" \
12 -cnvllama-cli -hf fox3000foxy/Luna-Protocol-1.5B-Discord-Dialogues-200k-instruct --jinjaMESSAGE directive to bake the few-shot prime directly into the model — no manual priming needed at inference time:1FROM Luna-Protocol-1.5B-Fine-Tuned-Qwen2.5-200k-instruct.Q8_0.gguf
2
3PARAMETER stop "<|im_end|>"
4PARAMETER stop "<|endoftext|>"
5PARAMETER temperature 1.0
6PARAMETER top_p 0.9
7PARAMETER repeat_penalty 1.15
8
9SYSTEM """you're just chatting with friends on a discord server, nothing formal"""
10
11MESSAGE user yo whats good
12MESSAGE luna nm just chillin, u
13MESSAGE user same tbh, bored af
14MESSAGE luna lol same energy fr1ollama create luna-protocol -f Modelfile
2ollama run luna-protocolluna rather than assistant, generic OpenAI-compatible clients/frameworks that hardcode assistant as the model role may need adjustment (role mapping) to work correctly with this model.