Views
No views yet
gemma-4-e4b-it.Q4_K_M.gguf — Sprint 2 B-retrained quantised
model (~5 GB), Q4_K_M. Trained for 6 epochs of plain SFT on the
post-relabel triage data. This is the artifact that produced every
held-out number in the project README.gemma-4-e4b-it.BF16-mmproj.gguf — multimodal projector (~1 GB) —
Gemma 4 multimodal requires this when image inputs are used. Base
model unchanged from Sprint 1.Modelfile — Ollama Modelfile for ollama createadapter/ — Sprint 2 B-retrained LoRA adapter (PEFT-compatible) for
the HF+PEFT inference path1from llama_cpp import Llama
2llm = Llama(
3 model_path="gemma-4-e4b-it.Q4_K_M.gguf",
4 n_ctx=4096,
5 n_gpu_layers=-1,
6)
7out = llm("Your prompt here", max_tokens=256, temperature=0.0)1from unsloth import FastLanguageModel
2from peft import PeftModel
3
4base, tok = FastLanguageModel.from_pretrained(
5 model_name="unsloth/gemma-4-E4B-it",
6 max_seq_length=4096,
7 load_in_4bit=True,
8)
9model = PeftModel.from_pretrained(base, "mechramc/marunthagam-triage-E4B-Q4_K_M",
10 subfolder="adapter")
11FastLanguageModel.for_inference(model)1ollama create marunthagam-triage -f Modelfile
2ollama run marunthagam-triage "your prompt"unsloth/gemma-4-E4B-it (4-bit)mechramc/marunthagam-tamil-triage