Views
No views yet
Translate this from Toki Pona to English:
Toki Pona: jan li moku e kili
English:<target language>: line and ends at the
model's end-of-generation token. Either side can be the source:Translate this from Russian to Toki Pona:
Russian: Я тебя люблю.
Toki Pona:Toki Pona, English, Russian,
Vietnamese. Getting the format wrong does not fail loudly: the model keeps
producing fluent text while silently ignoring the requested target language.| File | Size | Notes |
|---|---|---|
ilo-toki-MiLMMT-46-1b-Q4_K_M.gguf | 0.94 GB | Smallest. |
ilo-toki-MiLMMT-46-1b-Q5_K_M.gguf | 1.00 GB | |
ilo-toki-MiLMMT-46-1b-Q6_K.gguf | 1.24 GB | |
ilo-toki-MiLMMT-46-1b-Q8_0.gguf | 1.29 GB | What the app ships — see below. |
model.safetensors | 2.48 GB | Merged weights, bf16, for transformers. |
1llama-cli -m ilo-toki-MiLMMT-46-1b-Q8_0.gguf --no-cnv \
2 -p "Translate this from Toki Pona to English:
3Toki Pona: jan li moku e kili
4English:"1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = "NetherQuartz/ilo-toki-MiLMMT-46-1b-merged"
4tokenizer = AutoTokenizer.from_pretrained(model_id)
5model = AutoModelForCausalLM.from_pretrained(model_id)
6
7prompt = "Translate this from Toki Pona to English:\nToki Pona: jan li moku e kili\nEnglish:"
8inputs = tokenizer(prompt, return_tensors="pt")
9print(tokenizer.decode(model.generate(**inputs, max_new_tokens=64)[0]))NetherQuartz/ilo-toki-MiLMMT-46-1b)
trained with TRL SFT — rank 64, targeting the attention and MLP projections as
well as the token embeddings — merged into
MiLMMT-46-1B-v0.1
and quantized with llama.cpp.embed_tokens, and gemma3 ties lm_head to that same
tensor. A plain merge_and_unload() produces a model that repeats a single token
forever: a LoRA on an embedding changes what the lookup returns, not the stored
weights, so during training the tied output head read the base embeddings —
merging writes the delta into the tensor and the head suddenly sees an update it
never saw while training.model.safetensors
carries a separate lm_head.weight and tie_word_embeddings is false.