Key points
- What Monet is: A framework from Peking University, Kuaishou, and MIT that lets multimodal LLMs reason in a *continuous latent visual space*, producing latent embeddings as intermediate "visual thoughts" instead of explicit auxiliary images or external tool calls. It moves beyond the "Thinking with Images" paradigm, which still operates in pixel space (cropping, highlighting, depth estimation, code interpreters).
- Two identified challenges: 1. Latent–visual alignment is computationally expensive; naive feature compression (e.g., average pooling) distorts fine visual details. 2. Standard next-token-prediction and RL methods (e.g., GRPO) supervise only discrete text tokens, leaving latent embeddings under-optimized.
- Stage 1 (Warm-up): Standard SFT on Monet-SFT-125K (125,000 samples spanning real scenes, charts, OCR, geometry) so the base model (Qwen2.5-VL-7B) learns interleaved image–text reasoning and "obs tokens" encode visual information.
- Stage 2 (Target latent embeddings): A teacher model sees ground-truth auxiliary images; a student model generates autoregressive latent embeddings instead. Cosine-similarity alignment losses across all hidden layers match the student's hidden states to the teacher's, attention masks force text tokens to receive visual information only via the latents, and gradients flow *only* through the latent embeddings to prevent shortcut learning.
- Stage 3 (Autonomous generation): The model is retrained without auxiliary images, aligning its self-generated latents with Stage 2 targets—enabling fully self-sufficient latent reasoning at inference time.
- GRPO cannot directly optimize continuous embeddings. VLPO treats old-policy latents as samples from a Gaussian centered on the current policy's output, yielding an approximate probability:
- This gives a policy ratio r_t(θ) = π_θ(h_old) / π_old(h_old) used in a PPO-like clipped objective, so reward signals shape both text tokens *and* latent embeddings.
- Monet-7B consistently outperforms baselines (Qwen2.5-VL-7B, SFT+GRPO, cropping/tool-based methods) on real-world perception and reasoning benchmarks, with the largest gains on out-of-distribution abstract reasoning tasks.
- Ablations confirm the latent–visual alignment mechanism (Stage 2) is key to success, Stage 3's image-free training drives generalization, and VLPO is essential for difficult tasks.
- High-dimensional data concentrates on low-dimensional manifolds; reasoning in pixel space is like wandering a desert, while latent reasoning follows the "correct road" along the manifold. SFT teaches the model to capture this structure; VLPO penalizes latents that drift off-manifold (leading to wrong answers).
- Monet represents a step toward internal "mental models": machines that can simulate scenarios (e.g., a rescue robot imagining structural stability, or an AI predicting treatment outcomes in medicine). The authors note current limits—Monet is validated mainly on visual reasoning, and richer temporal, causal, and commonsense simulation remains future work.
Three-stage distillation SFT pipeline
Visual-Latent Policy Optimization (VLPO)
> π_θ(h_old | Q, I, o_<t) ∝ exp(-||h_old - μ_θ||² / (2σ²))