Meta is back with Muse Glimmer: local, agentic, multimodal, and open source
02:00 · August 10, 2026 · Hugging Face Blog

Summary
Muse Glimmer is a 30B-parameter dense multimodal vision-language model released by Meta with day-0 support across major inference and training libraries. It pairs a 2B-parameter ViT-style vision encoder, derived from Meta’s earlier Perception Encoder work, with a text decoder that employs alternating window and full attention layers, 2D rotary position embeddings, and a pixel-shuffle projection step that reduces visual token count by a factor of four. The same encoder processes both still images and video frames at two frames per second, up to a 96-frame limit, inserting timestamped placeholders that allow interleaved text and visual tokens.
The model ships with an optional DFlash speculative-decoding drafter that trades modest extra memory for faster generation, particularly on structured outputs such as code. Integrations cover transformers via AutoModelForMultimodalLM and AutoProcessor, llama.cpp with pre-calibrated GGUF weights, vLLM through the transformers backend, and managed Inference Endpoints that expose an OpenAI-compatible API. Quantized variants and hardware-specific optimizations for CUDA, ROCm, and XPU are provided out of the box.
Fine-tuning is supported through TRL on 80 GB Hopper GPUs, with published examples covering supervised fine-tuning on structured image tasks and asynchronous GRPO on coding environments. Additional utilities include multimodal tool calling, open-ended object detection, and video question answering without audio.
Beyond conventional inference, the release highlights agentic workflows in which the model can inspect its own weights on the Hub, produce a quantized GGUF variant, launch a local llama-server, deploy itself to Inference Endpoints, and iteratively benchmark hardware-specific serving configurations while retaining only correctness-preserving changes. These demonstrations illustrate how a locally runnable 30B VLM can manage parts of its own deployment and optimization pipeline.
Why it matters
Directly actionable for ML Engineers: concrete architecture specs, latency/memory trade-offs via speculative decoding, cross-vendor GPU support, fine-tuning recipes, and MLOps patterns that Dutch teams can apply immediately to local/agentic multimodal systems.









