Module 01

What is Generative AI?

Generative AI refers to artificial intelligence systems that create new content — text, images, audio, video, and code — by learning patterns from training data. This module explains how these systems work, what they can and cannot do, and why understanding them is now a core professional skill.

Key takeaway: Generative AI models do not understand or think — they learn statistical patterns from billions of examples and use those patterns to generate plausible new content. Understanding this distinction is essential for evaluating AI outputs, setting organizational policies, and making informed decisions about AI in your work.

How Generative AI Works

At the core of every generative AI system is a statistical model trained on large amounts of data. The model learns relationships between elements (words, pixels, audio samples) and uses those relationships to generate new content that follows similar patterns. The key insight: the model does not understand meaning — it predicts what comes next based on what it has seen before.

text_fields

Large Language Models

GPT-4, Claude, Gemini, Llama. Predict the next word (token) in a sequence. Trained on trillions of words from books, websites, and code.

image

Image Generators

DALL-E, Midjourney, Stable Diffusion. Use diffusion models that learn to remove noise from images, effectively learning to create images from random noise guided by text descriptions.

graphic_eq

Audio & Video

Voice cloning (ElevenLabs), music generation (Suno), video generation (Sora). Apply similar neural network architectures to other media types.

The Training Process

Training a generative AI model involves three phases. Understanding this process helps you predict where AI outputs will be strong and where they will be weak.

1
Pre-training. The model processes massive datasets (billions of web pages, books, code repositories) and learns statistical relationships between tokens. This creates a foundation of "world knowledge" — not true understanding, but pattern recognition at enormous scale.
2
Fine-tuning (RLHF). Human trainers evaluate model outputs and teach the model to prefer helpful, accurate, and safe responses over raw text prediction. Reinforcement Learning from Human Feedback (RLHF) is why modern AI assistants are conversational rather than just completing text.
3
Deployment and guardrails. Safety filters, content policies, and usage guidelines constrain the model's behavior for public-facing use. These are separate from the model's training and can be adjusted independently.

What AI Can and Cannot Do

AI Can AI Cannot
Generate fluent, grammatically correct text in any styleGuarantee factual accuracy (hallucinations)
Summarize, translate, and restructure existing contentHave genuine experiences, opinions, or consciousness
Write code, analyze data, and solve structured problemsAccess information after its training cutoff date (without tools)
Generate photorealistic images from text descriptionsReliably count, do precise math, or reason about spatial relationships
Mimic writing styles, tones, and formatsVerify its own outputs or know when it is wrong

AI Hallucinations

One of the most important concepts for AI literacy is "hallucination" — when an AI model generates plausible-sounding but factually incorrect information. This happens because the model is optimized for fluency (producing text that sounds right), not accuracy (producing text that is right). Hallucinations are particularly dangerous because they are delivered with the same confident tone as accurate information.

warning

Real-World Impact

In 2023, lawyers submitted a legal brief containing fabricated case citations generated by ChatGPT. The cases did not exist. This incident demonstrated why AI detection training is essential for anyone working with AI outputs in professional contexts.

Recognizing AI-Generated Text

While automated AI detection tools can help, developing your own ability to recognize AI-generated content is valuable. Common indicators include overly balanced and hedging language, lists and structured formatting where a human would use flowing prose, generic examples rather than specific personal experience, and consistent paragraph length and complexity throughout.

For hands-on practice with text detection, continue to the Detecting AI Chatbot Output module, which covers specific patterns and practical exercises.