Kurogo · Gemma 4 E2B (text, Q4_K_M, GGUF)

This is a text-only, Q4_K_M quantized GGUF build of Google's gemma-4-E2B-it, packaged for Kurogo — a fully offline, privacy-first AI app for iOS and Android. Everything runs on the user's device; no data ever leaves the phone.

What's in this repo

File Format Quantization Size
gemma-4-E2B-it-text-Q4_K_M.gguf GGUF (text-only) Q4_K_M ~2.9 GiB

The original gemma-4-E2B-it is a multimodal model with vision and audio capabilities. This build ships only the text weights — no mmproj (multimodal projector), no vision encoder, no audio encoder. Kurogo uses the model exclusively for text generation, so the multimodal components are intentionally excluded to keep the on-device footprint small.

Quantization

  • Q4_K_M — 4-bit K-quants, "medium" preset. Good balance of size and quality for on-device inference. Specifically uses Q6_K for attention.wv and feed_forward.w2 tensors and Q4_K for the rest, per llama.cpp's standard K-quant layout.

How Kurogo uses it

Loaded via llama.rn (a React Native binding for llama.cpp):

import { initLlama } from "llama.rn";

const context = await initLlama({
  model: "/path/to/gemma-4-E2B-it-text-Q4_K_M.gguf",
  n_ctx: 32768,           // tiered by device RAM (2k–32k)
  n_gpu_layers: 99,
  cache_type_k: "q8_0",
  cache_type_v: "q8_0",
});

Context length is automatically tiered by device RAM (2k on ≤4 GB devices up to 32k on ≥8 GB).

Use cases

  • Conversational chat with the user's local AI agent
  • Wiki page generation and editing (markdown out)
  • Wiki search and summarization across the user's local notes
  • URL-based content import (tweets, articles → wiki pages)

All inference happens on-device — no API keys, no network calls, no telemetry.

License

This model is released under the Gemma Terms of Use. By downloading or using this model, you agree to those terms.

Attribution

Links

Downloads last month
116
GGUF
Model size
5B params
Architecture
gemma4
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

Model tree for koifishlabs/Kurogo-Gemma-4-E2B-text-GGUF

Quantized
(334)
this model