Google's Gemma 4 12B Runs Text, Images and Audio on a 16GB Laptop
Google's Gemma 4 12B lands in LM Studio with a novel encoder-free architecture that brings near-26B performance, native audio, and multimodal reasoning to any 16GB laptop — for free.

- Gemma 4 12B is live in LM Studio — Google's new open-weight multimodal model runs on any 16GB laptop under Apache 2.0.
- Near-26B performance at half the memory — benchmarks show it matches or beats Gemma 4 26B MoE, and clearly outperforms Gemma 3 27B on MMLU Pro (77.2% vs 67.6%).
- Encoder-free unified architecture — no separate vision or audio encoders; raw images and audio project directly into the LLM's token space, cutting latency and enabling single-pass fine-tuning.
- First mid-sized Gemma with native audio — text, images, audio, and video all handled natively in one 11.95B-parameter decoder-only transformer with a 256K context window.
- MTP drafters built in — speculative decoding support ships by default, improving inference speed without quality loss.
- Coding is a known weak spot — community feedback flags Qwen 3.5 as stronger for coding tasks; Gemma 4 12B shines more on reasoning, document QA, and multimodal agentic workflows.
Google just filled the most important gap in its open-model lineup. Gemma 4 12B is now available in LM Studio, and it's the first mid-sized model in the Gemma family to natively handle text, images, audio, and video , all in a single decoder-only transformer, no separate encoders required. The kicker: it runs on a standard 16GB laptop.
The gap it fills
The original Gemma 4 family, released in April, held four models: two tuned for phones (E2B and E4B) and two built for heavier work (a 26B Mixture of Experts and a 31B Dense). A wide gap sat in the middle , and the new 12-billion-parameter model drops right into it.
Gemma 4 12B delivers performance nearing the larger 26B MoE model on standard benchmarks, but at less than half the total memory footprint. Google says it clearly beats the older Gemma 3 27B across tests like GPQA Diamond, MMLU Pro, and DocVQA. Concretely, Gemma 4 12B scores 77.2% on MMLU Pro, beating last year's Gemma 3 27B (67.6%).
The architecture that makes it possible
The headline here isn't just size , it's how the model is built. Most multimodal models bolt on separate encoders for images and audio, which adds latency, memory overhead, and makes end-to-end fine-tuning awkward. Gemma 4 12B throws that playbook out.
Unlike traditional multimodal models (including the rest of Google's own Gemma family), Gemma 4 12B doesn't use separate encoders to translate images and audio into representations for LLM processing. Instead, it passes those inputs directly into the LLM backbone. Here's how each modality works:
- Vision: A lightweight embedding module , essentially a single matrix multiplication plus positional embeddings and normalizations , replaces the full vision encoder. The LLM backbone handles visual processing itself.
- Audio: Even simpler. There is no audio encoder at all. Raw audio waveforms are projected directly into the same dimensional space as text tokens.
Gemma 4 12B Unified has 11.95B parameters, 48 layers, 1024-token sliding window attention, a 256K context window, a 262K vocabulary, and support for text, image, and audio inputs. The model uses a hybrid attention mechanism that interleaves local sliding window attention with full global attention, with the final layer always global. It also uses unified keys and values in global layers and Proportional RoPE for long-context efficiency.
Faster inference out of the box
Gemma 4 12B is "drafter-ready," meaning it supports Multi-Token Prediction (MTP) drafters for speculative decoding. A smaller draft model predicts several future tokens, while the target model verifies them in parallel, improving decoding speed without changing the final verified output quality. This is baked in by default , not an optional add-on.
What it's good at (and where it falls short)
The model shines at multi-step reasoning, document understanding, and agentic workflows that mix text and images. Benchmarks show the 12B neck and neck with 26B's performance, even pushing past the older model on DocVQA (Document Visual Question Answering). Another reason it's turning developers' heads is that its unified architecture enables native audio inputs , it's Google's first mid-sized model to do so.
The honest weakness: coding. Community discussions on Hacker News and Reddit flag that Gemma 4 12B likely trails dedicated coding-focused models. Against Qwen 3.5, Qwen edges Gemma 4 12B on certain reasoning and coding rows. If your primary use case is agentic coding, benchmark both on your actual task before committing.
What the community is saying
Early reception has been enthusiastic, especially around the audio angle. One r/LocalLLaMA commenter called it "one of the most exciting models I've heard about in a long time,