LDS history archive · GM-001Source-led research edition
The history of generative and multimodal AIHow machines learned to make what they could once only recognize.
Follow the samplers, representations, losses, datasets, and public systems that turned image, sound, and video synthesis from hand-written rules into models that connect media through language.
Each record links to primary research or an official archive or release. Preview dates, papers, weights, APIs, product access, and later retirements are kept separate, and contested credit is marked.
The output changed when the representation changed.
This history starts before neural generation. It follows sampling, computer art, energy-based learning, latent variables, adversarial training, autoregression, and diffusion before tracing the paired data and native multimodal systems that joined text, images, audio, and video. Product names appear only where access or capability changed the technical record.
Record 01 · Monte Carlo samplingPublished June 1, 1953; received March 6, 1953
An accept-or-reject rule makes difficult distributions sampleable
What changed
The Los Alamos team proposed a Markov-chain procedure that accepted or rejected simulated states so their long-run frequencies followed a target distribution. It turned distributions that were hard to calculate directly into distributions a computer could sample.
Why it lasted
Many generative models ultimately need to draw plausible states from a learned distribution. This paper supplied one of the durable computational foundations for doing that.
Record 02 · Algorithmic musicFirst three movements performed August 9, 1956
ILLIAC I composes material for a string quartet
What changed
Hiller and Isaacson encoded musical constraints, generated candidate notes on the ILLIAC I, and selected material through rule-based and stochastic experiments. The generated material was transcribed into a score that musicians performed as a string quartet.
Why it lasted
The project made computational generation audible in public decades before neural audio models. It also showed that a creative system could combine formal rules with controlled randomness.
Record 03 · Algorithmic visual artExhibition opened February 5, 1965
Georg Nees exhibits drawings generated by algorithms
What changed
Nees wrote programs that used geometric rules and controlled randomness, then rendered their output with a Zuse Graphomat plotter. The Stuttgart exhibition presented the drawings as aesthetic work rather than a graphics demonstration.
Why it lasted
The exhibition made a generative visual process visible to a public audience. The program described a space of possible drawings instead of storing one finished picture.
Record 04 · Rule-based AI artDevelopment at Stanford AI Lab began in 1973
AARON turns an artist's drawing knowledge into executable rules
What changed
Cohen encoded drawing strategies, spatial constraints, and random choices in a program that issued instructions to custom plotters. AARON could produce an open-ended sequence of distinct drawings without copying a stored image.
Why it lasted
AARON brought an explicit AI artmaking system into museums and sustained the same research question for decades: which parts of an artist's knowledge can be expressed as a procedure?
Record 05 · Probabilistic image modelingNovember 1984
Image structure becomes a Gibbs distribution
What changed
The Gemans represented neighboring image values with a Markov random field and an equivalent Gibbs distribution. Stochastic relaxation and annealing then searched the model for a plausible restored image.
Why it lasted
The paper connected local image statistics, an energy function, and sampling. That combination became part of the conceptual foundation for later energy-based image models.
Record 06 · Energy-based neural networksJanuary to March 1985 issue
A stochastic energy model learns from examples
What changed
A Boltzmann machine assigned low energy to compatible states and used stochastic units to explore alternatives. Its learning rule compared correlations when visible units were clamped to data with correlations when the network ran freely.
Why it lasted
The system learned a probability distribution rather than only a decision boundary. It established a durable pattern for training energy-based generative models.
Record 07 · Latent-variable generative modelsSeptember 1995
A recognition model learns to help a generator
What changed
The Helmholtz machine paired a top-down model that generated observations with a bottom-up network that inferred their hidden causes. Training used the recognition network to make learning in the generator tractable.
Why it lasted
The separation between generation and approximate recognition anticipated the encoder-decoder structure of later variational models.
Record 08 · Deep generative learningPublished July 1, 2006
Deep generative models train one layer at a time
What changed
The authors trained a stack of restricted Boltzmann machines greedily, using each learned representation as data for the next layer. The resulting deep belief net could then be refined as a generative model.
Why it lasted
Layer-wise pretraining made deep probabilistic networks workable at a moment when direct optimization often failed. It helped restore interest in learned deep representations.
Record 09 · Multimodal representation learningICML 2011, June 28 to July 2
Deep networks learn a shared space for sound and vision
What changed
The team trained deep models on paired audio and video of speech, then tested whether one modality could improve or reconstruct the other. Hidden units learned relationships between acoustic patterns and visible mouth movements.
Why it lasted
It offered an early deep-learning account of how separate sensory streams could meet in a shared representation, a core problem for later multimodal systems.
Record 10 · Variational generative modelingPreprint submitted December 20, 2013
The variational autoencoder makes latent generation trainable
What changed
Kingma and Welling used a learned recognition model to approximate hidden variables and rewrote stochastic sampling so gradients could pass through it. A decoder then learned to generate observations from the continuous latent space.
Why it lasted
The reparameterized objective made expressive latent-variable generators straightforward to train with backpropagation and mini-batches. It established the model family now called variational autoencoders.
Record 11 · Adversarial generative modelingPreprint submitted June 10, 2014
A generator learns by trying to fool a discriminator
What changed
A generator transformed noise into synthetic examples while a discriminator tried to separate them from training data. Each network improved against the other in a two-player minimax game.
Why it lasted
GANs supplied a new way to train sharp sample generators without writing an explicit likelihood or running a Markov chain when producing an example.
Record 12 · Recurrent image generationPreprint submitted February 16, 2015
DRAW generates an image through a sequence of glimpses
What changed
DRAW used recurrent encoder and decoder networks to inspect part of an image, update a latent representation, and add to a canvas over several steps. Its attention windows exposed a generation process rather than a single pass.
Why it lasted
The model joined variational learning, recurrence, and visual attention in a generator whose intermediate construction could be inspected.
Record 13 · Diffusion probabilistic modelsPreprint submitted March 12, 2015
A learned reverse diffusion process restores structure from noise
What changed
The model gradually destroyed structure in data through a fixed forward diffusion process, then learned a finite-time reverse process that turned noise back into samples. The formulation provided tractable training, sampling, and probability evaluation.
Why it lasted
This paper established the modern diffusion probabilistic model lineage. Later denoising objectives, score models, and faster samplers would make the same broad idea practical at image scale.
Record 14 · Neural image synthesisPreprint submitted August 26, 2015
Neural features provide separate objectives for content and style
What changed
The method optimized a new image so deep convolutional features matched the subject matter of one image and texture statistics from another. The result recombined two source images through a pretrained network's internal representation.
Why it lasted
It turned learned features into a practical creative medium and showed that a recognition network could also define a useful objective for image synthesis.
Record 15 · Autoregressive image generationPreprint submitted January 25, 2016
PixelRNN and PixelCNN generate images one conditional at a time
What changed
The models factored an image into a sequence of conditional probabilities, predicting each color value from pixels and channels already generated. PixelRNN used recurrent layers, while PixelCNN used masked convolutions.
Why it lasted
The work made exact likelihood training and high-capacity autoregressive image sampling practical at a larger scale, connecting image generation to next-step prediction.
Record 16 · Text-to-image generationPreprint submitted May 17, 2016
A GAN turns written descriptions into small images
What changed
The model embedded a written description and passed that representation into both generator and discriminator. It learned to synthesize images of birds and flowers whose colors and parts reflected the prompt.
Why it lasted
The paper directly connected natural-language descriptions to learned image synthesis, establishing a recognizable ancestor of prompt-driven image generation.
Record 17 · Autoregressive audio generationAnnounced September 8; preprint submitted September 12, 2016
WaveNet generates speech and music as raw audio
What changed
WaveNet predicted the next raw audio sample from earlier samples using causal, dilated convolutions. The same probabilistic architecture produced speech conditioned on text and speaker identity, as well as musical fragments.
Why it lasted
It moved neural generation below spectrograms and hand-built speech units to the waveform itself, with a clear jump in perceived speech naturalness in the reported listening tests.
Record 18 · Discrete representation learning2 November 2017
VQ-VAE teaches a generator to work with discrete codes
What changed
VQ-VAE mapped images, video, and speech into entries from a learned codebook. A separate prior could then model those discrete codes instead of every pixel or audio sample.
Why it lasted
Discrete media tokens became a practical bridge between representation learning and generation. The same broad pattern later appeared in VQ-VAE-2, Jukebox, and the first DALL-E.
Record 19 · Large-scale adversarial generation28 September 2018
BigGAN shows what adversarial generation gains from scale
What changed
BigGAN scaled model capacity and batch size for class-conditional ImageNet generation. Orthogonal regularization and the truncation trick gave users a direct way to exchange sample variety for visual fidelity.
Why it lasted
The study showed how far GAN image quality could move with compute, data, and careful training. It also documented the instability that accompanied that scale.
Record 20 · Controllable adversarial generation12 December 2018
StyleGAN moves visual control inside the generator
What changed
StyleGAN fed a transformed latent code into the generator at multiple resolutions and added separate stochastic noise. Coarse structure and fine detail became easier to vary independently than in earlier GANs.
Why it lasted
The architecture made high-resolution synthesis more controllable and gave later editing work a useful latent space to inspect and manipulate.
Record 21 · Score-based generative modelingPreprint submitted July 12, 2019
A score network learns which way probability rises
What changed
Song and Ermon trained one network to estimate the score, the gradient of log probability, across several noise levels. Annealed Langevin dynamics followed those vector fields from heavy noise toward the data distribution.
Why it lasted
The work made score estimation a competitive route to neural generation and supplied a direct bridge between denoising, stochastic sampling, and the diffusion systems that followed.
Jukebox compressed raw audio with a multiscale VQ-VAE, then modeled the codes with autoregressive Transformers. It generated songs conditioned on genre, artist, and unaligned lyrics, including rough singing.
Why it lasted
The discrete-token approach moved from images and speech fragments into minutes of music. The weights, code, and a large sample archive made the result inspectable outside the paper.
DDPM trained a neural network to reverse a gradual noise process. Its weighted objective connected diffusion probabilistic models with denoising score matching and produced strong image samples with a comparatively simple recipe.
Why it lasted
Denoising became a credible alternative to adversarial training. Later guidance, conditioning, and latent-space methods turned this recipe into a principal foundation for modern text-to-image systems.
Record 24 · Discrete-latent image synthesis17 December 2020
VQGAN gives transformers a compact visual vocabulary
What changed
Taming Transformers paired a perceptually trained convolutional VQGAN with an autoregressive Transformer. The codebook reduced an image to context-rich visual tokens, while the Transformer learned how those tokens fit together across the scene.
Why it lasted
High-resolution image modeling became practical without asking attention to process every pixel. The work connected VQ-VAE-style compression to Transformer generation and helped establish the compressed-representation pattern later used by latent diffusion.
Record 25 · Vision-language representation learning5 January 2021 release; 26 February 2021 preprint
CLIP uses language to organize visual concepts
What changed
CLIP learned to match images with natural-language descriptions across 400 million web image-text pairs. A user could name candidate visual concepts in text rather than train a new classifier for each task.
Why it lasted
Its shared embedding space became useful for retrieval, zero-shot recognition, evaluation, and guidance. It also supplied a semantic layer for DALL-E 2 and many later image systems.
Record 26 · Autoregressive text-to-image generation5 January 2021 announcement; 24 February 2021 preprint
DALL-E puts words and image tokens in one sequence
What changed
DALL-E represented text and discrete image codes as one autoregressive sequence. At scale, the model combined objects, attributes, viewpoints, and styles from open-ended written descriptions.
Why it lasted
The project made broad text-to-image composition visible beyond specialist benchmarks. It also joined the discrete-latent lineage of VQ-VAE with large Transformer training.
Record 27 · Multimodal data infrastructure20 August 2021 release; 31 March 2022 expansion
Open image-text data reaches web scale
What changed
LAION-400M made 400 million CLIP-filtered image-text pairs and search indices available for research. LAION-5B expanded the same public-data effort to 5.85 billion pairs in March 2022.
Why it lasted
Researchers outside a few large companies gained access to image-text metadata at a scale suitable for training OpenCLIP and generative models. LAION data later supported Stable Diffusion and other open multimodal projects.
Record 28 · Text-conditioned diffusion and editing20 December 2021, 18:42 UTC
GLIDE makes text guidance native to diffusion
What changed
GLIDE conditioned a 3.5-billion-parameter diffusion model directly on text and compared CLIP guidance with classifier-free guidance. Human raters preferred classifier-free guidance, and fine-tuning the model supported text-driven inpainting.
Why it lasted
The study supplied an early, complete diffusion recipe for text-to-image synthesis and editing before the DALL-E 2 preview. OpenAI also released code and weights for a smaller model trained on filtered data.
Record 29 · Efficient diffusion models20 December 2021, 18:55 UTC
Diffusion moves from pixels into a compressed latent space
What changed
Latent diffusion trained the denoising process inside a learned image representation instead of pixel space. Cross-attention let text, layouts, and other signals condition the same broad model design.
Why it lasted
High-resolution diffusion became substantially cheaper to train and run without discarding the detail needed for useful images. The method formed the technical base for Stable Diffusion.
Record 30 · Text-guided image generation and editing6 April 2022 preview; 13 April 2022 preprint
DALL-E 2 joins CLIP representations with diffusion
What changed
DALL-E 2 generated a CLIP image representation from text, then decoded it with diffusion. The same representation supported higher-resolution synthesis, variations, inpainting, and language-guided changes.
Why it lasted
Text-to-image generation became an interactive editing system rather than only a collection of research samples. The project also made staged deployment and system-level safeguards part of the public record.
Record 31 · Generative visual-language models28 April 2022 announcement; 29 April 2022 preprint
Flamingo makes images and video part of a few-shot prompt
What changed
Flamingo connected pretrained vision and language components with layers that handled interleaved images, video, and text. A single model could attempt captioning, visual question answering, and classification from examples placed in its prompt.
Why it lasted
Few-shot prompting moved beyond text-only inputs. The model provided an architectural pattern for later systems that place visual evidence directly inside a conversational context.
Record 32 · Language-conditioned diffusion23 May 2022
Imagen shows how much the text encoder matters
What changed
Imagen paired a large frozen text encoder with a cascade of diffusion models. Its ablations found that enlarging the language encoder improved image fidelity and caption alignment more than enlarging the image generator alone.
Why it lasted
The result clarified that text understanding was a central part of text-to-image quality. DrawBench also tested composition, counting, spatial relations, and written text beyond one aggregate score.
Record 33 · Open-weight text-to-image systems22 August 2022
Stable Diffusion makes capable weights downloadable
What changed
Stable Diffusion combined latent diffusion with image-text representations and web-scale data in downloadable model weights. Version 1.4 could run on a single GPU with about 6.9 GB of video memory.
Why it lasted
Developers and researchers could inspect, run, fine-tune, and extend a capable text-to-image model locally. A large ecosystem of interfaces, adapters, and specialized checkpoints followed.
Record 34 · Text-to-video generation29 September 2022
Make-A-Video carries image priors into moving pictures
What changed
Make-A-Video learned appearance and language alignment from paired text-image data, then learned motion from video without captions. Spatial and temporal modules adapted an image-generation pipeline to short clips.
Why it lasted
The project showed a practical route from the 2022 text-to-image wave into open-domain video research without requiring a comparably large paired text-video collection.
Record 35 · Transformer diffusion backbones19 December 2022
Diffusion Transformers replace the U-Net with scalable attention
What changed
DiT divided a latent image representation into patches and processed them with a Transformer instead of the usual convolutional U-Net. Larger models and more latent tokens raised compute and consistently improved sample quality across the study.
Why it lasted
The work showed that a denoising backbone could inherit Transformer scaling behavior. OpenAI later described Sora as a diffusion transformer operating on spacetime patches of compressed video and image latents, extending the same architectural line from images to video.
Record 36 · Visual instruction tuning17 April 2023
LLaVA makes visual instruction tuning reproducible
What changed
LLaVA connected a pretrained vision encoder to a language model, then tuned the system on image-language conversations synthesized with GPT-4. The paper and public implementation gave researchers a compact recipe for building an assistant that could discuss an image rather than classify it into a fixed set of labels.
Why it lasted
Visual instruction tuning became a repeatable bridge between image encoders and conversational language models. The released code, data, and model artifacts also gave independent teams a practical base for multimodal assistant research.
Record 37 · Shared multimodal representations9 May 2023
ImageBind aligns six modalities without every possible pair
What changed
ImageBind learned one embedding space for images, text, audio, depth, thermal measurements, and inertial data. Instead of collecting every pair of modalities, the team used images as the common anchor and trained each other modality against image-paired data.
Why it lasted
The work showed that several senses could be aligned through a shared pivot. That made cross-modal retrieval and composition possible even for modality pairs that had never appeared together during training.
Record 38 · Open-weight image generation4 July 2023 paper; 26 July 2023 SDXL 1.0 release
SDXL raises the working resolution of open latent diffusion
What changed
SDXL enlarged the latent-diffusion backbone, added a second text encoder, trained across multiple image sizes and aspect ratios, and paired a base model with an optional refiner. The public 1.0 release generated at a native 1024-pixel resolution and exposed the model to a broad tooling ecosystem.
Why it lasted
High-resolution text-to-image generation became easier to inspect, adapt, and run outside a hosted product. SDXL's model files and implementation encouraged fine-tunes, control tools, and local creative workflows.
Record 39 · Deployed vision-language models25 September 2023 rollout and system card
GPT-4V brings image reasoning into ChatGPT
What changed
GPT-4V let ChatGPT users submit photographs, screenshots, diagrams, and documents alongside text. OpenAI paired the rollout with a vision-specific system card that examined person identification, medical advice, scientific tasks, and other risks introduced by image input.
Why it lasted
Image reasoning reached a widely used general-purpose chat interface, and multimodal deployment received its own safety and limitation record. The release also made the gap between public capability and reproducible model detail more visible.
Record 40 · Text-to-image alignment3 October 2023 system card; 16 October 2023 beta rollout
DALL-E 3 makes better captions a training lever
What changed
OpenAI trained an image captioner to replace terse web labels with detailed descriptions, then trained DALL-E 3 on the recaptioned data. In ChatGPT, a language model expanded ordinary requests into richer prompts and let users refine the result through conversation.
Why it lasted
The work identified caption quality as a major control point for prompt fidelity. Recaptioning later carried into video systems, while the ChatGPT integration reduced the need for users to learn a separate prompt dialect.
Record 41 · Native multimodal foundation models6 December 2023 announcement; 13 December 2023 API
Gemini 1.0 trains across modalities from the start
What changed
Gemini 1.0 was trained to work across text, code, images, audio, and video, with Ultra, Pro, and Nano variants aimed at different compute settings. Gemini Pro entered Bard on announcement day, and Pro and Pro Vision reached developers through the Gemini API one week later.
Why it lasted
A major model family treated multimodal training as a foundation rather than attaching vision only at the product edge. The same family spanned data-center models, developer access, and on-device deployment.
Record 42 · Text-to-video generation15 February 2024 research preview; 9 December 2024 product
Sora scales diffusion transformers across space and time
What changed
Sora compressed images and videos into a latent space, split that representation into spacetime patches, and trained a diffusion transformer across different durations, resolutions, and aspect ratios. It also carried DALL-E 3's recaptioning method into video training and prompt expansion.
Why it lasted
Video generation acquired a scalable representation analogous to tokens in language models. One model could generate, extend, transform, and connect visual sequences without forcing every training example into one fixed shape.
Record 43 · Real-time multimodal interaction13 May 2024 announcement; staged modality rollout
GPT-4o unifies text, vision, and audio in one network
What changed
GPT-4o accepted combinations of text, audio, images, and video and could produce text, audio, and images. Unlike the earlier ChatGPT voice pipeline, one end-to-end neural network processed audio input and produced audio output, preserving information such as tone, timing, and overlapping voices that transcription could discard.
Why it lasted
Real-time multimodal conversation moved from a chain of speech and language models toward a single trained system. The model's reported audio response latency approached the timing of ordinary human conversation.
Record 44 · Media foundation models4 October 2024 research preview; 16 October 2024 paper record
Movie Gen joins video, editing, personalization, and sound
What changed
Movie Gen paired a 30-billion-parameter image-and-video transformer with systems for personalized video and instruction-based editing. A separate 13-billion-parameter audio model generated music and sound effects from video, with optional text guidance for the soundtrack.
Why it lasted
Generation, identity-preserving personalization, local editing, and synchronized audio appeared as parts of one research stack. The work framed a media model as an editable production system rather than a prompt-to-clip demo.
Record 45 · Native multimodal image generation25 March 2025 ChatGPT release; 23 April 2025 API
GPT-4o brings image generation inside the conversational model
What changed
OpenAI trained GPT-4o over a joint distribution of text and images so the same conversational model could understand references, use chat context, edit an uploaded image, and generate a new one. The transformer produced compressed representations that a separate decoder turned into pixels.
Why it lasted
Image generation gained the language model's world knowledge, in-context examples, and multi-turn memory without handing every request to a separate image product. Text rendering and iterative editing became central use cases rather than side effects.
Record 46 · Open-weight omni models26 March 2025 paper and weights; 27 March 2025 post
Qwen2.5-Omni opens a streaming vision, audio, and speech system
What changed
Qwen2.5-Omni used a Thinker-Talker design to process text, images, audio, and video while streaming both text and synthesized speech. Time-aligned multimodal rotary position embeddings synchronized video frames with audio, and a sliding-window diffusion transformer reduced delay in speech decoding.
Why it lasted
A documented end-to-end omni architecture, implementation, and model weights became available outside a proprietary interface. Researchers could inspect how streaming perception and speech generation were divided while still being trained and run as one system.
Veo 3 generates video and synchronized sound together
What changed
Veo 3 generated a video's visuals together with dialogue, ambient sound, and effects. Google released it to US subscribers through Gemini and Flow on announcement day, with enterprise access through Vertex AI, rather than presenting audio as a separate post-production step.
Why it lasted
Synchronized sound became part of a deployed video generator's core output. Prompting could describe both what appeared on screen and what the scene should sound like.
Record 48 · Interactive world models5 August 2025 preview; 29 January 2026 user prototype
Genie 3 turns generated video into a navigable world
What changed
Genie 3 generated a 720p environment from a text prompt and updated it at 24 frames per second as a user moved through the scene. It could retain broad consistency for a few minutes and accept promptable events that changed the generated world during interaction.
Why it lasted
Generative video stopped being only a fixed clip and became an action-conditioned environment. That opened a route toward interactive prototyping and synthetic worlds in which people or agents could act.
Record 49 · Multimodal video creation and editing19 May 2026 product rollout; 30 June 2026 API preview
Gemini Omni makes video creation conversational and multimodal
What changed
Gemini Omni Flash accepted combinations of text, images, audio, and video as references, then generated video with sound. Its conversational interface carried prior edits forward, letting a user alter actions, viewpoints, settings, and visual details over multiple turns.
Why it lasted
A reasoning model and a media generator were presented as one iterative creation system. Video editing could use mixed references and dialogue instead of restarting from one text prompt for every change.
Record 50 · Agentic media generation7 July 2026 Muse Image launch; Muse Video preview
Muse Image adds tools and self-refinement to generation
What changed
Muse Image could search for visual references, write and run code for precise graphics, inspect its own drafts, and spend additional inference-time computation on revisions. Meta released it across several consumer surfaces while separately previewing Muse Video, a native-audio model built on the same pretraining base.
Why it lasted
Media generation became a deliberative process around the model, not only a single sampling pass. Tool use, self-critique, multi-reference composition, and inference-time scaling became explicit parts of the generation loop.
A record is included when it materially changed the history of generative and multimodal AI and the claim can be traced to a reliable source. The timeline separates the original contribution from interpretations that appeared later.
Primary evidence firstOriginal papers, books, standards, archives, and official technical records anchor each milestone.
People named by roleContributors are linked to public profiles and described by the work they performed, not by a vague credit line.
Disputes stay visibleCompeting claims, retrospective labels, and uncertain dates are identified instead of being flattened into one story.
Corrections are welcomeReaders can inspect every cited source and report a factual issue through the public corrections process.
122 links to papers, preprints, proceedings, technical reports, dataset papers, institutional and museum archives, model cards, system cards, and official releases. A research result is not treated as a public product. The archive separates a paper from a preview, downloadable weights, API access, general availability, and retirement. It also distinguishes a model that understands media from one that generates it.
Continue into the histories of artificial intelligence, machine learning, language models, and agents to see which ideas this archive inherits and which systems it later feeds.