Multimodal AI

How AI works across modalities — what multimodal AI is (beyond text, the shared-representation idea), how models see (CNNs to Vision Transformers), connecting modalities with CLIP and shared embedding spaces, vision-language models (LLMs that see), image generation with diffusion, audio and speech (recognition and synthesis), video and beyond (the temporal frontier), and building with multimodal AI toward the any-to-any future.

8 parts · written by Pratik Dhanave. Start with Part 1 →

← All series · All posts

Part 1 · ·8 min read

What Multimodal AI Is

For most of the deep-learning era, an AI model did one thing with one kind of data: this model classifies images, that one translates text, another transcribes speech. Multimodal AI breaks that separation. A single model can now look at an image and describe it, answer questions about a chart, generate a picture from a sentence, or transcribe and reason about audio — because it works across modalities rather than being confined to one. This shift, from single-modality specialists to models that bridge vision, language, audio, and more, is one of the most important developments in modern AI.

For most of deep learning, a model did one thing with one kind of data. Multimodal AI breaks that separation: a single model can look at an image and describe it, generate a picture from a sentence, or transcribe and reason about audio — working across modalities rather than being confined to one. It's one of the most important developments in modern AI.

Part 2 · ·8 min read

How Models See

To a computer, an image is just a grid of numbers — millions of pixel values with no inherent meaning. Turning that raw grid into something a model can understand (this is a dog, that's a face, here's text on a sign) is the problem of computer vision, and the way it's solved has changed dramatically. The field moved from hand-crafted feature detectors, to convolutional networks that learn features, to — most recently — the surprising discovery that the transformer architecture behind language models works remarkably well for images too. Understanding how models see is the foundation of the vision side of multimodal AI.

To a computer, an image is just a grid of numbers with no inherent meaning. Turning that raw grid into understanding is computer vision, and the field moved from hand-crafted features, to convolutional networks, to the surprising discovery that the transformer architecture behind language models works remarkably well for images too.

Part 3 · ·8 min read

Connecting Modalities: CLIP and Shared Embedding Spaces

The magic trick at the heart of modern multimodal AI is deceptively simple: train an image encoder and a text encoder together so that a picture of a dog and the words "a photo of a dog" land at the same spot in a shared space. Once images and text live in one common representational space, a cascade of capabilities follows — searching images by text, classifying without task-specific training, and grounding language generation in vision. CLIP is the model that made this idea famous, and understanding it is understanding how modalities actually get connected.

The magic trick at the heart of modern multimodal AI is deceptively simple: train an image encoder and a text encoder together so a picture of a dog and the words 'a photo of a dog' land at the same spot in a shared space. Once images and text live in one common space, a cascade of capabilities follows. CLIP is the model that made this famous.

Part 4 · ·8 min read

Vision-Language Models

The multimodal capability people actually experience — uploading a photo and asking a chatbot what's in it, or having it read a screenshot, explain a diagram, or extract data from a chart — comes from vision-language models: LLMs that can see. The clever part is how it's done. Rather than build a seeing-and-reasoning model from scratch, you take a language model that already reasons brilliantly and give it eyes, by connecting a vision encoder to it. Understanding how that connection works explains the multimodal AI most people use.

The multimodal capability people actually experience — uploading a photo and asking a chatbot what's in it — comes from vision-language models: LLMs that can see. The clever part is how it's done: take a language model that already reasons brilliantly and give it eyes by connecting a vision encoder to it.

Part 5 · ·8 min read

Generating Images

Typing a sentence and watching a detailed, coherent, never-before-seen image appear is one of the most striking capabilities in modern AI — and the technique behind it is beautifully counterintuitive. Rather than paint an image stroke by stroke, these models start with pure noise and gradually remove it, step by step, sculpting a picture out of static, guided by your text. Understanding diffusion — and how text steers it — demystifies text-to-image generation and reveals one of the most important generative techniques in AI.

Typing a sentence and watching a detailed, never-before-seen image appear is one of the most striking capabilities in modern AI — and the technique behind it is beautifully counterintuitive. These models start with pure noise and gradually remove it, sculpting a picture out of static, guided by your text. That's diffusion.

Part 6 · ·8 min read

Audio and Speech

Sound is the modality that makes AI conversational — the difference between typing to a machine and talking to it. And the same architectural ideas that transformed text and vision transformed audio too: treat the waveform as a sequence, train at scale, and one model can transcribe speech across languages, or synthesize a natural-sounding voice from text. Understanding how AI handles audio — recognition, synthesis, and understanding — completes the picture of the core modalities and shows how general the multimodal recipe has become.

Sound is the modality that makes AI conversational — the difference between typing to a machine and talking to it. The same architectural ideas that transformed text and vision transformed audio too: treat the waveform as a sequence, train at scale, and one model can transcribe speech across languages, or synthesize a natural voice from text.

Part 7 · ·8 min read

Video and Beyond

Video is where multimodal AI gets genuinely hard. It's not just images — it's images over time, plus audio, at a scale that dwarfs a single picture. The temporal dimension adds motion, causality, and continuity that a still frame can't capture, and the sheer data volume strains everything. Video is also the frontier where the most impressive recent generation results have appeared, and where multimodal AI is actively pushing forward. Understanding video — and the other modalities beyond the core ones — shows where the field is heading.

Video is where multimodal AI gets genuinely hard. It's not just images — it's images over time, plus audio, at a scale that dwarfs a single picture. The temporal dimension adds motion, causality, and continuity a still frame can't capture, and it's the frontier where the most impressive recent generation results have appeared.

Part 8 · ·9 min read

Building with Multimodal AI

The gap between "multimodal AI exists" and "I built something useful with it" is smaller than it's ever been — you can call a vision-language model, a speech recognizer, or an image generator with an API and a few lines of code. But building well with multimodal AI means knowing what these models can and can't reliably do, how to combine them, and where the pitfalls are. This closing post is the practical one: how to actually build multimodal applications, and where the whole field is heading — toward general, any-to-any models.

The gap between 'multimodal AI exists' and 'I built something useful with it' is smaller than ever — you can call a vision-language model, a speech recognizer, or an image generator with a few lines of code. But building well means knowing what these models can and can't reliably do, how to combine them, and where the pitfalls are. Plus the any-to-any future.

This series is part of a larger body of work by Pratik Dhanave, an Agentic AI Architect writing about production AI systems, distributed systems, and cloud-native engineering. Explore all course series, browse every post, or find topics via the tag index.