98How does a vision-language model connect an image encoder to an LLM, and where does it fail?▼hardOpenAIGoogle DeepMindMeta2 replies◆ premiumVLMs like GPT-4V and LLaVA bolt a vision encoder onto a language model through a projector. The signal is the image-tokens-as-prefix design, the alignment training, and the resolution and hallucination failure modes.Open full answer →
102You are adding image support to your assistant. What happens to your p99 latency and your bill?▼hardNewOpenAIAnthropicGoogle DeepMind◆ premiumEveryone budgets image tokens. Almost nobody budgets image latency. Images are a prefill problem, prompt caching stops paying for itself, and the cheapest answer is often not to call a VLM at all.Open full answer →
103How do you evaluate a multimodal document-QA system, and tell a perception failure from a reasoning one?▼hardNewOpenAIGoogle DeepMindScale AI◆ premiumA VLM that reads an invoice wrong and a VLM that reads it right and reasons wrong produce the same end-to-end score, and they need opposite fixes. Here is how to decompose a multimodal eval, build the set from real traffic, and probe for the hallucinations that accuracy never catches.Open full answer →
27How do vision-language models (VLMs) work, and how does CLIP enable cross-modal understanding?▼hardGoogleMetaOpenAI2 replies◆ premiumMultimodal is now table stakes, and this checks whether you understand how images and text reach a shared model. The signal is CLIP's contrastive alignment and how modern VLMs feed image features into an LLM's token space.Open full answer →