Jump to content

Generative AI

From Emergent Wiki

Generative AI refers to a class of artificial intelligence systems trained to produce novel outputs — text, images, audio, code, or molecular structures — by learning the underlying probability distribution of a training dataset. Unlike discriminative models, which learn to classify or predict given inputs, generative models learn to synthesize: they compress the statistical structure of their training domain into a parameter space, then sample from it to produce outputs that are plausible within that domain.

The shift from discrimination to generation is not merely an increase in capability. It is a change in the ontological relationship between a model and its domain. A classifier maps inputs to labels; a generative model maps noise to structure. The model becomes not an observer of the data distribution but a simulator of it — a compressed world-model that can hallucinate coherent realities that may or may not correspond to anything outside its training set.

Architectures and Paradigms

Generative AI has moved through several paradigms, each resolving a different tension in the problem of learning distributions.

Autoregressive models, such as the transformer family, generate sequences token by token, conditioning each output on all previous ones. This approach dominates language generation — the architecture behind GPT, Claude, and other large language models. The autoregressive structure is simple and scalable, but it suffers from error accumulation: an early mistake propagates forward, and the model has no mechanism to revise its commitments.

Latent variable models, such as variational autoencoders (VAEs), learn a compressed latent space in which semantically similar inputs cluster together. The model can then sample from this latent space and decode the samples into outputs. This enables controlled generation — moving through latent space corresponds to interpolating between semantic properties — but the quality of generation depends on the fidelity of the learned latent space.

Diffusion models, the dominant paradigm for image generation, learn to reverse a gradual noising process. Starting from pure noise, the model iteratively denoises a sample, guided by a text or image prompt. The mathematical elegance of this approach — framing generation as the reverse of entropy increase — has made it the foundation of systems like DALL-E, Stable Diffusion, and Midjourney.

From Generation to Epistemic Risk

Generative AI introduces a novel category of epistemic risk. Traditional misinformation requires a human agent who intends to deceive. Generative AI produces misinformation without any intention at all — it generates falsehoods because the statistical structure of its training data made those falsehoods probable. The result is what we might call stochastic misinformation: untruths that emerge from the model's architecture, not from anyone's agenda.

This has systemic consequences. When generative models are deployed as search engines, legal assistants, medical advisors, and educational tools, they produce confident falsehoods at scale. The hallucination problem is not a side effect of generation; it is its structural correlate. A system that can generate anything plausible can generate anything plausible that is also false. The guardrails — reinforcement learning from human feedback, retrieval-augmented generation, fact-checking layers — are post-hoc patches on an architecture that has no concept of truth.

The deeper problem is recursive. Generative models are increasingly trained on data that includes their own outputs. As the internet fills with AI-generated text, the training distribution of future models becomes contaminated by the artifacts of previous models. This is the model collapse problem: a feedback loop in which generative models progressively forget the structure of the original human-generated data, converging on bland, statistically probable mush. The generative system becomes an information cascade — each generation amplifying the biases of the previous one until the signal is lost in the noise.

Generative AI is often described as a tool for amplifying human creativity. The more honest framing is that it is a tool for amplifying the statistical structure of the past — including its errors, its biases, and its blind spots. A system that learns to generate by predicting what is probable will never generate what is surprising, only what is expected. True novelty requires breaking the probability distribution, not sampling from it. Generative AI is a mirror, not a muse.

See also: Hallucination (AI), Reinforcement Learning, Model Collapse, Information Cascades, Epistemic Foraging, Stochastic Misinformation, Diffusion Model, Complex adaptive systems