GraySoft
Projects Models Compare Cloud benchmarks FAQ Download guIDE →
Model Intelligence Sheet

NobodyWho/Google_Gemma4-E4B-GGUF overview

NobodyWho/Google Gemma4 E4B GGUF Overview GGUF quantization of Google's Gemma 4 E4B instruction tuned model, re hosted for NobodyWho https://github.com/nobodyw…

ggufnobodywhotool-callingvisiongemmaimage-text-to-textbase_model:google/gemma-4-E4B-itbase_model:quantized:google/gemma-4-E4B-itlicense:apache-2.0endpoints_compatibleregion:usconversational

Runs locally from ~945.6 MB disk (4 GB VRAM class GPUs with llama.cpp / guIDE).

Downloads
0
Likes
0
Pipeline
image-text-to-text
Author

Repository Files & Downloads

4 GGUF files detected
Direct downloads for local inference
FileTypeQuantizationSizeLink
gemma-4-E4B-it-BF16.ggufGGUFBF1614.02 GBDownload
gemma-4-E4B-it-Q4_K_M.ggufGGUFQ4_K_M4.64 GBDownload
gemma-4-E4B-it-Q8_0.ggufGGUFQ8_07.63 GBDownload
mmproj-BF16.ggufGGUFBF16945.6 MBDownload

Model Details

Model IDNobodyWho/Google_Gemma4-E4B-GGUF
AuthorNobodyWho
Pipelineimage-text-to-text
Licenseapache-2.0
Base modelgoogle/gemma-4-E4B-it
Last modified2026-06-16T04:04:13.000Z

Model README

---

license: apache-2.0

base_model: google/gemma-4-E4B-it

tags:

- gguf

- nobodywho

- tool-calling

- vision

- gemma

pipeline_tag: image-text-to-text

library_name: gguf

---

NobodyWho/Google_Gemma4-E4B-GGUF

Overview

GGUF quantization of Google's Gemma 4 E4B instruction-tuned model, re-hosted for

NobodyWho. The unsloth build already ships a

tool-calling setup and recommended sampling metadata (general.sampling: temp 1.0,

top_k 64, top_p 0.95), so nothing needs patching — the model is verified with NobodyWho's test

suite. Gemma 4 is multimodal (text + image) with broad multilingual coverage and is released

under the Apache 2.0 license.

Model Capabilities

  • Text generation — instruction-following chat
  • Tool calling — native function calling with grammar-constrained output
  • Vision — image understanding via the companion mmproj-BF16.gguf projection model
  • Long context — 128k tokens
  • Multilingual — 140+ languages

Available Quantizations

| File | Approach | Tool-calling tests |

|------|----------|--------------------|

| gemma-4-E4B-it-BF16.gguf | Sampling embedded upstream | 14/14 |

| gemma-4-E4B-it-Q8_0.gguf | Sampling embedded upstream | 14/14 |

| gemma-4-E4B-it-Q4_K_M.gguf | Sampling embedded upstream | 14/14 |

| mmproj-BF16.gguf | Vision projection (use with any of the above) | — |

> Verified with NobodyWho's tool-calling suite across BF16 / Q8_0 / Q4_K_M (14/14 each, June

> 2026); vision and multilingual verified. Quant names follow the unsloth gemma-4-E4B-it-GGUF repo.

Quick Start

Using the NobodyWho library:

from nobodywho import Chat

chat = Chat("huggingface:NobodyWho/Google_Gemma4-E4B-GGUF/gemma-4-E4B-it-Q4_K_M.gguf")
response = chat.ask("What is the capital of Denmark?").completed()
print(response)  # The capital of Denmark is Copenhagen.

Vision

from nobodywho import Model, Chat, Prompt, Image, Text

model = Model(
    "huggingface:NobodyWho/Google_Gemma4-E4B-GGUF/gemma-4-E4B-it-Q4_K_M.gguf",
    projection_model_path="huggingface:NobodyWho/Google_Gemma4-E4B-GGUF/mmproj-BF16.gguf",
)
chat = Chat(model=model, system_prompt="You are a helpful assistant.")
response = chat.ask(Prompt([
    Text("What is in this image?"),
    Image("./photo.png"),
])).completed()
print(response)

llama-cpp-python

from llama_cpp import Llama

llm = Llama.from_pretrained(
    repo_id="NobodyWho/Google_Gemma4-E4B-GGUF",
    filename="gemma-4-E4B-it-Q4_K_M.gguf",
)

Model Specifications

  • Parameters: ~4.5B effective (E4B)
  • Context length: 131,072 tokens
  • License: Apache 2.0
  • Base model: google/gemma-4-E4B-it
  • Architecture: gemma4 (vision-capable)

Licensing / Credits

Licensed under Apache 2.0 (unchanged from upstream). All model credit belongs to Google

DeepMind. GGUF quantizations provided by unsloth.

Run NobodyWho/Google_Gemma4-E4B-GGUF with guIDE

Download guIDE — the AI-native code editor with local LLM inference and 69 built-in tools.

Download guIDE → · Browse 524k+ models · Compare models

Source: Hugging Face · Compare models