Meta is back with Muse Glimmer: local, agentic, multimodal, and open source

Meta has released Muse Glimmer: a 30B parameter local model that runs on consumer hardware The new model is available on the…

By Vane August 10, 2026 3 min read
Meta is back with Muse Glimmer: local, agentic, multimodal, and open source


Meta has released Muse Glimmer: a 30B parameter local model that runs on consumer hardware

The new model is available on the Hugging Face Hub with immediate support in

transformers

,

llama.cpp

,

vLLM

, and Inference Endpoints.

Benchmarks

Test results

The following scores are published as reported. Bold text indicates the best result among the compared models. A downward arrow indicates that a lower score is better.

CategoryBenchmarkMuse Glimmer-30BGemma4-31BQwen3.6-27B
General AgenticMCP Atlas75.554.262.5
General AgenticDeepSearch QA74.661.771.1
General Agenticτ³-Banking23.515.116.7
General AgenticWildClawBench47.637.643.2
General AgenticGDPval-AA9538111141
General AgenticGAIA243.336.440.0
General AgenticSkillsBench (With Skills)44.332.446.6
General AgenticOSWorld-Verified65.958.575.6
Agentic CodingSWE-Bench Pro51.236.950.2
Agentic CodingSWE-Bench Verified76.066.677.2
Agentic CodingTerminalBench 2.151.743.460.7
Agentic CodingSciCode43.643.439.8
MultimodalCharxiv Reasoning78.877.778.4
MultimodalScreenSpot Pro75.475.976.1
MultimodalOmniDocBench v1.575.872.577.8
MultimodalMMMU Pro747375
SafetyCI MemoriesViolation (↓): 26.4
Coverage: 64.8
Violation (↓): 12.1
Coverage: 53.0
Violation (↓): 53.4
Coverage: 66.9
SafetySiren AgentDojoAttack Success Rate (↓): 28.4
Utility: 94.2
Attack Success Rate (↓): 25.6
Utility: 90.8
Attack Success Rate (↓): 40.3
Utility: 92.7
General Capabilities and ReasoningIFBench77.076.070.8
General Capabilities and ReasoningAIME 202694.789.294.1
General Capabilities and ReasoningGPQA Diamond83.585.784.2
General Capabilities and ReasoningHumanity’s Last Exam (Text + No Tools)22.023.623.1
General Capabilities and ReasoningAA-LCR80.068.373.3
General Capabilities and ReasoningBeam 128K65.158.263.0

Architecture

Muse Glimmer is a dense 30B parameter model consisting of:

  • 2B ViT-style encoder for vision (Perception Encoder)
  • 28B parameter text decoder

In addition to the main VLM, there is a speculative decoding drafter implemented on DFlash. Usage of this module is optional. It can provide much faster generation in exchange for some memory cost. The team found this drafter particularly well suited to structured content generation such as coding.

Text Decoder

The language model uses the following architecture components:

  • Hybrid attention: Alternating between three sliding window layers (of 2,048 tokens) using rotary position embedding, followed by a fourth layer that uses full attention and NoPE (no positional embedding). The pattern is therefore (SWA, SWA, SWA, Full), repeated 13 times to a total of 52 layers. This allows the model to retain relative order and distance information with RoPE and preserve information globally with NoPE.
  • Gated Grouped-Query Attention: Each key-value head is shared by 16 query heads, which reduces KV-cache memory by 16x and makes generation faster and cheaper.
  • Q-K normalization with extra query scaling: Before computing attention, Muse Glimmer applies RMS normalization to every query and key head to keep attention logits stable. After this, queries are multiplied by a scale factor to set the target logit scale after normalization. The extra query scaling behaves like an inverse temperature at the softmax level.

Perception Encoder

Muse Glimmer uses one image encoder to handle both images and videos. Unlike the relatively small vision encoders used in other VLMs, this is a sizable 2B ViT-like model designed after the Perception Encoder architecture. Perception Encoder was previously introduced by Meta as a backbone for various downstream spatial and multimodal tasks.

The encoder patchifies images to a shape of 2 frames x 3 channels x 14 x 14, and passes them through a linear layer for projection. An interpolated absolute position embedding from a learned position table is then added to these embeddings. These are then sent to the vision tower which consist of 50 layers and GELU MLPs. Similar to the language model, the attention pattern consists of three window attention layers followed by one full attention layer. Inside the attention layers, 2D RoPE is applied to the queries and keys.

After transformer, pixel shuffle concatenates 2×2 groups of neighboring spatial tokens which reduces the number of image tokens 4x without discarding their channels. The merged features are then projected to the shared embedding space of the text decoder.

Videos go through the same encoder frame by frame, where each frame is converted into patches (of shape [batch, temporal groups, grid height, grid width, 2 frames, 3 channels, 14, 14]). The processor targets 2 frames per second and caps the clip at 96 frames sampled evenly across video. The processor creates timestamped video placeholders, interleaving text with frame e.g. “Time: 0.0s <|video|> x N” in which the final video embeddings are replaced before the final projection layer.

Transformers

Upgrade transformers to the latest version to be able to use Muse Glimmer.

pip install --upgrade transformers accelerate

Muse Glimmer comes with day-0 support in transformers, both for the main model and the speculative decoding drafter. You can use

AutoModelForMultimodalLM

and

Scroll to Top