How to use from the
Use from the
llama-cpp-python library
# !pip install llama-cpp-python

from llama_cpp import Llama

llm = Llama.from_pretrained(
	repo_id="domofon/domofon-0.8b-75b-tokens-base-GGUF",
	filename="domofon-0.8b-75b-tokens-base-Q4_K_M.gguf",
)
output = llm(
	"Once upon a time,",
	max_tokens=512,
	echo=True
)
print(output)

domofon-0.8b-75b-tokens-base-GGUF

это тестовый прогон модели на отметке 75B tokens pretraining. модель лучше всего понимает русский язык,

не содержит SFT chat прогона. Только base pretraining.

спонсировано Google TRC Research Cloud.

This research was supported with Cloud TPUs from Google's TPU Research Cloud (TRC).

Model details

  • Type: base causal language model
  • Parameters: 0.8B class, approximately 0.88B
  • Checkpoint: 77800
  • Training stage: base pretraining, before chat/SFT
  • Tokenizer vocab size: 248,072
  • Context used during training: 4096
  • Architecture family: Qwen3-style dense GQA
  • Weights: trained from scratch; upstream Qwen references are for architecture/tokenizer compatibility only

Usage with llama.cpp

llama-cli \
  -m domofon-0.8b-75b-tokens-base-Q4_K_M.gguf \
  -p "Домофон — это" \
  -n 128 \
  --temp 0.7 \
  --top-p 0.9

Usage with Ollama

ollama create domofon-base -f Modelfile.ollama
ollama run domofon-base

Notes

This is not the chat-SFT experiment. Do not expect instruction following, assistant-role formatting, or reliable multi-turn chat behavior from this base checkpoint. Use it for base-model probing, continuation tests, or as a starting point for later SFT/alignment experiments.

Downloads last month
19
GGUF
Model size
0.9B params
Architecture
qwen3
Hardware compatibility
Log In to add your hardware

4-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Collection including domofon/domofon-0.8b-75b-tokens-base-GGUF