grenishrai/yoru-GGUF overview
Yoru yoru 1.7b.png Yoru GGUF Yoru is a model in the Mori family. This repo is the Q4 K M GGUF of the merged F16 checkpoint grenishrai/yoru https://huggingface.…
Runs locally from ~1006.7 MB disk (4 GB VRAM class GPUs with llama.cpp / guIDE).
Repository Files & Downloads
| File | Type | Quantization | Size | Link |
|---|---|---|---|---|
| yoru-Q4_K_M.gguf | GGUF | Q4_K_M | 1006.7 MB | Download |
Model Details
| Model ID | grenishrai/yoru-GGUF |
|---|---|
| Author | grenishrai |
| Pipeline | text-generation |
| License | mit |
| Base model | grenishrai/yoru |
| Last modified | 2026-08-14T10:24:54.000Z |
Model README
---
license: mit
pretty_name: Yoru GGUF
language:
- en
base_model: grenishrai/yoru
base_model_relation: quantized
library_name: gguf
pipeline_tag: text-generation
tags:
- gguf
- quantized
- llama
- conversational
- chat
- slang
- gen-z
- smollm2
- mori
- yoru
datasets:
- grenishrai/genz-sft-dataset
---
!Yoru
Yoru GGUF
Yoru is a model in the Mori family. This repo is the Q4_K_M GGUF of the merged F16 checkpoint grenishrai/yoru.
Use this file with llama.cpp, LM Studio, Ollama, or any GGUF runner. For Transformers / PEFT, use the F16 repo instead.
It is a style / persona mix for casual internet / Gen Z chat, not a facts model.
Model Details
- Name: Yoru
- Family: Mori
- This repo:
grenishrai/yoru-GGUF - F16 weights:
grenishrai/yoru - Original base:
HuggingFaceTB/SmolLM2-1.7B-Instruct - Type: Q4_K_M GGUF of a QLoRA SFT merge
- Architecture: Llama (SmolLM2), ~1.71B params, context 8192
- Chat template: ChatML (
<|im_start|>/<|im_end|>) - Language: English (internet slang)
- License: MIT (this file; the F16 and base models have their own cards)
- Dataset:
grenishrai/genz-sft-dataset
| File | Type | Size | Notes |
| --- | --- | ---: | --- |
| yoru-Q4_K_M.gguf | Q4_K_M | ~1.06 GB | only file in this repo; default |
The F16 source is ~3.42 GB. This quant is the shareable / local-inference copy.
How to Use
Pass the same system prompt the data used, or the voice will slip.
You are a pure Gen Z speaker. Always reply in natural Gen Z slang and internet speech. Use words and phrases like: no cap, fr fr, lowkey, highkey, bet, rizz, mid, slay, periodt, it's giving, sus, oof, vibes, down horrendous, bussin, cooked, goated, main character, etc. Keep replies casual, short to medium length, and online. Never break character. Never explain the slang. Never sound formal or like a normal AI.
llama.cpp
llama-cli -hf grenishrai/yoru-GGUF \
--sys "You are a pure Gen Z speaker. Always reply in natural Gen Z slang and internet speech. Use words and phrases like: no cap, fr fr, lowkey, highkey, bet, rizz, mid, slay, periodt, it's giving, sus, oof, vibes, down horrendous, bussin, cooked, goated, main character, etc. Keep replies casual, short to medium length, and online. Never break character. Never explain the slang. Never sound formal or like a normal AI." \
-p "I barely slept and now I have to be a person today"
Local file:
llama-cli -m yoru-Q4_K_M.gguf \
--sys "You are a pure Gen Z speaker. ..." \
-p "I barely slept and now I have to be a person today"
LM Studio / Ollama
Import yoru-Q4_K_M.gguf. Set the chat template to ChatML if it is not picked up from the GGUF. Put the system prompt above in the system field.
Python (llama-cpp-python)
from llama_cpp import Llama
llm = Llama.from_pretrained(
repo_id="grenishrai/yoru-GGUF",
filename="yoru-Q4_K_M.gguf",
n_ctx=8192,
)
system = (
"You are a pure Gen Z speaker. Always reply in natural Gen Z slang and internet speech. "
"Use words and phrases like: no cap, fr fr, lowkey, highkey, bet, rizz, mid, slay, periodt, "
"it's giving, sus, oof, vibes, down horrendous, bussin, cooked, goated, main character, etc. "
"Keep replies casual, short to medium length, and online. Never break character. "
"Never explain the slang. Never sound formal or like a normal AI."
)
out = llm.create_chat_completion(
messages=[
{"role": "system", "content": system},
{"role": "user", "content": "I barely slept and now I have to be a person today"},
],
max_tokens=80,
temperature=0.8,
top_p=0.9,
)
print(out["choices"][0]["message"]["content"])
Uses
Same as the F16 model: short informal chat, persona experiments. Not for formal, medical, legal, or factual QA. Not a sample of real Gen Z speech.
Q4_K_M will be a bit less sharp than F16. If a reply looks off, check the same prompt on grenishrai/yoru before blaming the fine-tune.
Training / quant
Yoru was QLoRA-trained on SmolLM2-1.7B-Instruct, best checkpoint epoch 2, then merged to fp16. This file is that merge quantized with llama.cpp Q4_K_M. Training details live on the F16 card.
Citation
@misc{yoru-gguf-2026,
title = {Yoru (Mori) Q4_K_M GGUF},
author = {grenishrai},
year = {2026},
url = {https://huggingface.co/grenishrai/yoru-GGUF},
note = {Quantized from https://huggingface.co/grenishrai/yoru}
}
Model Card Contact
Open an issue on the model repository.
Run grenishrai/yoru-GGUF with guIDE
Download guIDE — the AI-native code editor with local LLM inference and 69 built-in tools.
Source: Hugging Face · Compare models