Table of Contents
Quick Answer
- Generative AI: produces new text, images, audio, or code
- Predictive AI: estimates the probability of a future outcome
ChatGPT is generative. A credit score model is predictive.
What Do These Terms Mean?
Generative AI models learn the distribution of training data and sample from it — they can produce plausible new examples. Predictive AI (aka classical ML) learns a mapping from inputs to a label or number (Stanford HAI AI Index, 2024; Google AI blog).
Generative models answer "what could this look like?" Predictive models answer "what will happen?"
How Each Works
Generative AI
- Models: GPT, Claude, Gemini, Stable Diffusion, Suno
- Output: text, image, audio, video, 3D, code
- Training: self-supervised on massive unlabeled data
- Typical use: content creation, chat, summarization
Predictive AI
- Models: XGBoost, random forests, logistic regression, deep nets for tabular
- Output: label, score, probability, numeric forecast
- Training: supervised on labeled data
- Typical use: churn, fraud, demand forecasting, recommendations
Examples
- Generative: ChatGPT writing an email
- Predictive: Credit card fraud probability 0.87
- Generative: Midjourney creating a product mockup
- Predictive: Netflix probability user watches Stranger Things
- Hybrid: LLM writes product description, predictive model decides which users see it
Generative vs Predictive
| Aspect | Generative | Predictive |
|---|---|---|
| Output | New content | Score / label |
| Training data | Raw corpora | Labeled rows |
| Evaluation | BLEU, human rating, FID | Accuracy, AUC, RMSE |
| Deterministic? | No (sampling) | Often yes |
| Risk | Hallucination, copyright | Bias, calibration error |
| Common deployment | Chat UI, editor plugin | Batch scoring, scoring API |
When to Use Each
- Need to create something -> Generative
- Need to decide something from known patterns -> Predictive
- Marketing copy at scale -> Generative
- Customer churn forecasting -> Predictive
- Personalized email (write + target) -> Both
Conclusion
Generative AI is the storyteller; predictive AI is the analyst. The best products use each for what it does best. More on Misar Blog.
