AI Dictionary of Terms

Generative AI

A class of artificial intelligence systems designed to create new, original content—such as text, images, audio, video, or code—by learning the underlying patterns and structures of existing data, rather than simply classifying or analyzing it.

The Simple Version

Imagine two types of art students.

The first student is an art critic (Discriminative AI). You show them a painting, and they can tell you if it’s a Picasso or a fake, what style it is, and what year it was painted. They are excellent at analyzing and categorizing existing art.

The second student is an art forger or creator (Generative AI). You show them thousands of Picasso paintings. They study the brushstrokes, the color palettes, and the shapes. Then, you ask them to “paint a new picture of a guitar in the style of Picasso.” They don’t copy an existing painting; they generate a brand new, original painting that looks exactly like something Picasso might have created.

Generative AI is that second student. It doesn’t just label data; it creates new data that resembles the training data.

Detailed Explanation

Historically, AI was predominantly discriminative (or predictive). It focused on drawing boundaries between categories: Is this email spam or not? Is this tumor malignant or benign? What is the price of this house?

Generative AI flips this paradigm. Instead of modeling the boundary between classes, it models the underlying probability distribution of the data itself. Once it understands how the data is distributed, it can sample from that distribution to create novel instances.

Core Generative Architectures:

1. Generative Adversarial Networks (GANs):

2. Variational Autoencoders (VAEs):

3. Autoregressive Models (LLMs):

4. Diffusion Models:

Key Capabilities:

Key Characteristics

Business Context

Generative AI is driving the current wave of enterprise AI adoption, shifting the focus from “analyzing the past” to “creating the future”:

Enterprise Applications:

Strategic Considerations:

Real-World Analogy

A master chef who has tasted thousands of dishes. If you ask them to “make a dessert that tastes like a cross between a lemon tart and a chocolate lava cake, but vegan,” they don’t look up a recipe. They draw upon their deep understanding of flavors, textures, and chemical reactions to invent a brand new recipe on the spot. That is generative AI.

Code Example

# Generative AI: Text generation using an LLM
from openai import OpenAI

client = OpenAI()

# The prompt acts as the creative brief for the generative model
prompt = """
Write a short, 3-sentence product description for a new smart water bottle.
Target audience: Busy professionals.
Key features: Tracks hydration, glows to remind you to drink, keeps water cold for 24 hours.
Tone: Professional, encouraging, and sleek.
"""

response = client.chat.com300)

print("Generated Product Description:")
print(response.choices[0].message.content)

# The model doesn't retrieve this from a database; it generates it 
# token-by-token based on the patterns it learned during training.

Common Misconceptions

Sources & Further Reading