← All transcripts

Predictive vs Generative AI: How They Work and When to Use Each Transcript, AI Summary & Key Points

IBM Technology · May 11, 2026 · Education · 11:59 · EN

📄 Transcript

Searchable transcript of Predictive vs Generative AI: How They Work and When to Use Each — IBM Technology (11:59). Search for a phrase, then click its timestamp to jump straight to that moment in the video.

Captions sourced from the original video on YouTube, published by IBM Technology. The video, its captions and all related intellectual property remain the property of their respective owners; AINotes claims no ownership. Provided for research, accessibility and search — see the Transcript Notice and Copyright Policy.

00:00 Predictive AI, generative AI, sometimes people use these terms interchangeably. They shouldn't because these are fundamentally different tools that answer different questions. So predictive AI, that asks the question specifically, what will happen? What's going to happen next? It looks at historical data, and it forecasts an outcome. Is this transaction fraudulent or how many units will we sell next quarter?

00:33 So predictive AI is about making predictions about specific measurable things. Generative AI, that answers a pretty different question, which is what could this look like, which is fundamentally different to what will happen. Generative AI creates new content that resembles its training data. So write me an email or help me debug this code. So unlike predictive AI, it's not mapping to a specific label or value.

01:12 Instead it's producing or you know generating something that didn't exist before. Now what do these things actually output? Well, predictive AI, that gives you perhaps a number, or it gives you a category, like put this thing in the right box. It gives you a probability, something you can measure and verify, like there's a 87% chance this customer will cancel their subscription.

01:47 That's something you can check on later on. It can be right or it can be wrong. Generative AI gives you content. So the content that it gives you, might be some text like some sentences or a paragraph. It could be an AI-generated image. It could a piece of code. And in many cases, there isn't a single correct answer. If we ask a generative model to write a product description, well, there are thousands of valid ways to do that.

02:25 It's subjective. And what about the data that these systems consume? Well, predictive AI largely consumes structured data. This is rows and columns or database tables or sensor readings, stuff with nice, clean labels. Generative AI, well, that largely consumes unstructured data. So this is kind of the messy stuff, billions of words scraped from the internet or pixels in photos or random code snippets.

03:03 Generative AI takes this kind of chaos and finds patterns in it, which it can use to generate something new. So a question for you. Where do large language models fit into this picture? Generative, right? Well, right at this very moment, there's somebody tapping away in the comments section of this video saying large language models predict the next token, so LLMs are both generative and predictive.

03:45 Well, first, thank you for commenting. Please also remember to like and subscribe. And technically, yes, at the mechanism level, an LLM is a next-token prediction engine. But that's a bit like saying a gasoline-powered car is a series of controlled explosions. That's technically true, but it's not particularly useful for understanding what a car does.

04:09 So another way to see the difference is if we think about predictive AI. It is usually deterministic, deterministic at inference time. You feed in the same inputs, you get the same prediction every time. Generative AI, that is probabilistic. There's randomness baked in. If you ask it the same question twice and get, you might get, well, probably two different answers.

04:37 And that comes down to the temperature setting, which controls how much randomness the model uses when picking the next token. So yes, LLMs predict the next token, but, uh their purpose, well, it's primarily generative, we'll put them under generative AI. So let's get into how predictive AI actually works. Even though generative AI seems to get all the hype, it is predictive AI that quietly runs most of enterprise AI today.

05:06 Now predictive AI uses statistical and machine learning models trained on historical data. And there are a few main flavors. Depending on what you're trying to predict. So, if you are trying to predict a number, that's the point of your prediction. Like, I don't know, how many units you'll sell next month, or maybe what price a house will fetch. Well, what that is, as it comes down to regression.

05:36 That's where the model learns the relationship between input variables and continuous numerical output. What if you're predicting category instead? Like whether an email is spam or not spam. Well, that is classification. The output is discrete. It's this thing or it's this. And if you're predicting a value that will change over time, well if you are doing that, you are time series.

06:14 So this is where perhaps we're looking stock prices or server load or electricity demand. And these models pay attention to patterns like seasonality and trends particularly when we're looking at over time. Now the specific algorithms that are actually under the hood here, well they vary. There's a whole bunch. I mean you've got things like decision trees, you've got random forests, which are essentially a bunch of decision trees voting together.

06:44 You've got gradient boosting, which builds trees sequentially with each correcting the errors of the last. And then for time series, you've got classic sacks like a reamer or you've got deep learning approaches like LSTMs Yeah, good stuff. Now how and where do predictive algorithms actually get used? Well, let me give you a few example use cases. And I think the one that most people think about first of all is usually fraud detection.

07:18 Every time somebody swipes their credit card, a predictive model is asking, does this transaction look suspicious? That's classification, fraud or not fraud. Then there is demand forecasting, so retailers predicting how much inventory to stock or airlines predicting hammy seats they'll fill. Another common use case is predictive maintenance. So instead of replacing a machine part on a fixed schedule, you predict when it's likely to fail and replace it right before it does.

07:56 And then credit scoring is another common use case of predictive AI as well. So should we lend money to this person? What's the probability they'll default? Now let's get back to generative AI. Most generative AI today is built on a particular architecture called the transformer architecture. That's the architecture behind large language models. Now transformers use something called attention, and they use attention to let the model weigh which parts of the input matter when generating each piece of output and these

08:39 transform models, they're trained on massive data sets. And they learn patterns in that data well enough to produce new content. That's the generative part. That is generally for text. For images, you have a different type of model called a diffusion model. These are interesting because they work kind of backwards, so they're trained to remove noise from images.

09:08 So during training noise is gradually added to real images and then the model learns to reverse that process. So then at generation time, they start with pure noise and the model progressively denoises it into a coherent image guided by a user's prompt. So where does generative AI generally get used? What are the use cases? Well, you know, the obvious first one is content creation, marketing copy, emails, LinkedIn posts that people are pretending to write themselves.

09:44 You know, that's content creation. Another very popular one is code assistance. These are models that can write, explain and debug code. There is also, conversational AI, you've probably come across these. These are like customer service bots that can hold something of a conversation regarding customer queries. And there's summarization as well, which is to say, taking long documents and distilling them down to just the good stuff.

10:17 And look, so far, I've been kind of pitting these two types of AI against each other, but I think if we think about generative AI and predictive AI, we can really think that they do work kind of hand in hand. So you might use a predictive model to kind of figure out which of your customers are likely to churn and then hand that list to a generative model to write personalized retention emails for each one of these potential churning customers.

10:59 So the prediction identifies the problem and the generation that crafts the response. Or, and this is becoming ever more common, you could use the generative AI to create some amount of synthetic training data and then give that to a predictive model when the real data is scarce or sensitive. So predictive AI, that says what will happen. Generative AI asks, what could this look like? And my predictive model says, you're about to give this video a thumbs up. Don't make the model wrong. It's very sensitive.

💡 Answer

Use predictive AI when you need a measurable forecast, classification, or probability of what will happen; use generative AI when you need newly created text, images, code, or other content. They can also be combined, with predictive AI identifying an issue and generative AI crafting a response.

🧠 AI Summary

Predictive AI forecasts specific, measurable outcomes from historical structured data, while generative AI creates new content from patterns in largely unstructured data. Predictive AI commonly supports fraud detection, demand forecasting, predictive maintenance, and credit scoring; generative AI supports content creation, code assistance, conversational AI, and summarization. The two can work together by using predictions to identify problems and generation to create tailored responses.

🔑 Key Points

  • Predictive AI answers what will happen by forecasting specific measurable outcomes from historical data.
  • Generative AI answers what could this look like by producing new text, images, code, or other content.
  • Predictive AI generally consumes structured data, while generative AI largely consumes unstructured data.
  • Predictive AI is usually deterministic at inference time, whereas generative AI is probabilistic and influenced by temperature.
  • Predictive AI includes regression for numerical outputs, classification for discrete categories, and time series forecasting for values that change over time.
  • Predictive AI quietly runs much of enterprise AI, including fraud detection, demand forecasting, predictive maintenance, and credit scoring.
  • Most current generative AI uses transformer architecture for text, while image generation commonly uses diffusion models.
  • Predictive and generative AI can be combined to identify a problem and then create a tailored response.

✅ Actionable items

  • Use regression when the target is a continuous numerical value, classification when the target is a category, and time series methods when the target changes over time.
  • Use a predictive model to identify customers likely to churn, then provide that list to a generative model to create personalized retention emails.
  • Use generative AI to create synthetic training data for predictive models when real data is scarce or sensitive.
  • Adjust a generative model's temperature setting to control how much randomness it uses when selecting the next token.

🧰 Tools & AI usage

  • Decision trees — A predictive modeling algorithm.06:34
  • Random forests — Combine multiple decision trees whose outputs vote together.06:34
  • Gradient boosting — Build trees sequentially, with each tree correcting the errors of the previous one.06:44
  • LSTMs — A deep learning approach used for time series.06:51
  • Transformer architecture — Support generative AI, particularly large language models, by using attention to weigh relevant input parts during generation.08:09
  • Diffusion models — Generate images by progressively removing noise from an initial noise pattern.08:54

AI is used for

  • Fraud detection — Classify whether a transaction is suspicious or fraudulent.07:10
  • Demand forecasting — Predict inventory needs or how many seats airlines will fill.07:30
  • Predictive maintenance — Predict when a machine part is likely to fail so it can be replaced before failure.07:46
  • Credit scoring — Estimate whether a person will default on a loan.07:56
  • Content creation — Generate marketing copy, emails, and LinkedIn posts.09:27
  • Code assistance — Write, explain, and debug code.09:51
  • Conversational AI — Handle customer queries in a conversational format.09:56
  • Summarization — Distill long documents into their most important content.10:08
  • Churn response generation — Create personalized retention emails for customers predicted to churn.10:37
  • Synthetic data generation — Create training data for predictive models when real data is scarce or sensitive.10:59

⚖️ Advantages, risks & lessons

Advantages

  • Predictive AI produces outputs that can be measured, verified, and checked for correctness later.
  • Generative AI can produce new text, images, code, and other content with many valid possible answers.
  • Combining predictive and generative AI connects problem identification with tailored response creation.

Risks

  • Predictive AI predictions can be wrong.
  • Generative AI outputs are probabilistic and may differ when the same question is asked twice.
  • Generative outputs may be subjective because there is often no single correct answer.

Lessons

  • The most useful distinction is the system's purpose: predictive AI forecasts outcomes, while generative AI creates content.
  • Large language models predict the next token at the mechanism level but are primarily used as generative systems.

💬 Quotes

So the prediction identifies the problem and the generation that crafts the response.