Enable multimodal LLMs to generate and reason with latent visual embeddings as intermediate thoughts: implement supervised fine-tuning to produce continuous visual representations, then optimize via VLPO to treat embeddings as learnable actions in reinforcement learning.
Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.
Quelldateien prüfen
Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Ein direkter Befehl überspringt den Prüf-Prompt. Prüfen Sie die Quelle, bevor Sie ihn ausführen.
Monet: Reasoning in Latent Visual Space Beyond Images and Language
version
0.0.2
engine
skillxiv-v0.0.2-claude-opus-4.6
license
MIT
url
https://arxiv.org/abs/2511.21395
keywords
["Latent Visual Reasoning","Chain of Thought","VLM Enhancement","Vision-Language Models"]
description
Enable multimodal LLMs to generate and reason with latent visual embeddings as intermediate thoughts: implement supervised fine-tuning to produce continuous visual representations, then optimize via VLPO to treat embeddings as learnable actions in reinforcement learning.
Monet: Latent Visual Reasoning for Multimodal Models
Vision-language models often struggle with complex spatial reasoning because they must choose between text-only reasoning (losing visual detail) or generating external auxiliary images (expensive and error-prone). This skill demonstrates how to enable MLLMs to internally generate and reason with latent visual embeddings—intermediate visual thoughts that act as a third modality alongside text and images.
The core innovation is treating continuous latent embeddings as learnable "actions" that can be generated and optimized through reinforcement learning, enabling flexible reasoning that interleaves text and visual thought.
Core Concept
Monet enables MLLMs to generate continuous latent visual embeddings through:
Supervised Fine-Tuning (SFT): Three-stage training progressively teaching the model to generate and reason with latent embeddings
Vision-Language Policy Optimization (VLPO): Novel RL algorithm computing policy gradients directly for latent embeddings by treating them as continuous actions
Flexible Interleaving: Models learn to automatically decide when to generate latent reasoning tokens vs. continuing text generation
Architecture Overview
Latent Embedding Generation: Special tokens that decode to continuous visual embeddings
Attention Control Mechanism: Learnable flow control maintaining visual information through generation
Tasks where text+image inputs need internal visual reasoning
Scenarios where model flexibility in modality choice is valuable
When NOT to Use:
Simple VQA tasks (text-only reasoning sufficient)
Tasks where interpretability of every step is required
Very large models where training latent modules is prohibitively expensive
Key Hyperparameters:
latent_dim: Embedding dimension (256-512 typical)
num_latent_tokens: How many visual thought tokens (3-8)
sft_epochs_per_stage: Iterations per SFT stage (5-15)
vlpo_learning_rate: Gradient step for embeddings (1e-5 to 5e-5)
reward_scaling: How strongly to weight VLPO rewards (0.5-2.0)
Integration with Vision Models:
Monet works naturally with existing vision encoders. Use pre-trained vision embeddings as initialization for latent_encoder, reducing training data requirements by 30-40%.
Training Efficiency:
Stage 1: ~1 GPU-hour per 10K images
Stage 2: ~2 GPU-hours per 10K reasoning chains
Stage 3: ~4 GPU-hours per 10K full chains
VLPO: Continuous optimization, typically 2-4 epochs sufficient