Cert Notes/ Commute Study Notes
Roadmap
KOEN
CLF-C02 · FoundationalCloud Practitioner - Foundational
DVA-C02 · AssociateDeveloper - Associate
SAA-C03 · AssociateSolutions Architect - Associate
SOA-C02 · AssociateCloudOps Engineer - Associate
SAP-C02 · ProfessionalSolutions Architect - Professional
DOP-C02 · ProfessionalDevOps Engineer - Professional
SCS-C03 · SpecialtySecurity - Specialty
MLA-C01 · AssociateMachine Learning Engineer - Associate
AIF-C01 · FoundationalAI Practitioner - Foundational
  • Week 1
    • 1.The Relationship and Differences Between AI, Machine Learning, and Deep Learning
    • 2.Learning Types: Supervised, Unsupervised, and Reinforcement Learning
    • 3.Problems Where ML Fits vs. Problems Where It Doesn't
    • 4.Key Terms: Model, Training, Inference, Feature, Label, Overfitting
    • 5.Week 1 Wrap-Up: AI/ML Fundamentals Review
  • Week 2
    • 1.ML Lifecycle Overview: One Complete Cycle from Data to Operations
    • 2.Data: Structured vs Unstructured, Data Splitting, and the Power of Quality
    • 3.Model Evaluation Basics: Accuracy, Precision, Recall, and Overfitting/Underfitting
    • 4.The Human Role in ML Development: Labeling, Feedback, and Iterative Improvement
    • 5.Week 2 Summary: ML Lifecycle and Data at a Glance
  • Week 3
    • 1.What Is Generative AI: Difference from Traditional ML, and Foundation Models
    • 2.How LLMs Work: Tokens, Embeddings, Context Window, and Inference
    • 3.Prompt Engineering Basics: Good Prompts, Zero/Few-shot, and Limitations
    • 4.Limitations and Risks of Generative AI: Hallucinations, Bias, Non-determinism, and Appropriate Use Cases
    • 5.Week 3 Comprehensive Review: Wrapping Up Generative AI Fundamentals at a Glance
  • Week 4
    • 1.Amazon Bedrock: Fully Managed Service for Renting Foundation Models
    • 2.Amazon SageMaker: A Platform for Directly Training and Deploying ML Models
    • 3.AWS AI Services (1): Managed APIs Handling Images, Documents, Text, and Speech
    • 4.AWS AI Services (2) + Amazon Q: Chatbots, Search, Recommendations, Forecasting, and Generative Assistant
    • 5.Week 4 Comprehensive Review: Complete Map of AWS AI/ML Services
  • Week 5
    • 1.Principles of Responsible AI: Fairness, Bias, Transparency, Explainability, Robustness, Privacy
    • 2.AWS's Responsible AI Tools: SageMaker Clarify, Model Monitor, Bedrock Guardrails, AI Service Cards
    • 3.AI Security: Least Privilege IAM, Data Encryption, PII Protection, PrivateLink, Shared Responsibility Model
    • 4.Data Governance and Compliance: Data Origin·Quality, Model Governance, Audit·Logging, Legal and Ethical Considerations for Generative AI
    • 5.Week 5 Comprehensive Review: Binding Responsible AI·Security·Governance into One
  • Week 6
    • 1.Domain Review 1: AI/ML Fundamentals + Generative AI Fundamentals: Critical Summary
    • 2.Domain Review 2: Foundation Model Applications (AWS AI Services) Critical Summary
    • 3.Domain Review 3: Responsible AI + Security·Governance Critical Summary
    • 4.Full Mock Exam Pace: Five Domains Comprehensive Questions
    • 5.D-Day Wrap-Up: Exam Structure, Keyword → Service Translation Table, Frequently-Missed Traps
DEA-C01 · AssociateData Engineer - Associate
MLS-C01 · SpecialtyMachine Learning - Specialty
← AIF-C01/Week 1/Day 1
AIF-C01· AssociateWeek 1 · Day 1~17 min read

Day 1 - The Relationship and Differences Between AI, Machine Learning, and Deep Learning

Introduction

The AWS Certified AI Practitioner (AIF-C01) exam starts with understanding the fundamental concepts of AI and machine learning. Today we will clearly sort out the relationship between three of the most easily confused terms: Artificial Intelligence (AI), Machine Learning (ML), and Deep Learning (DL).

These three words are used almost interchangeably in news and advertising, but in reality they are distinct concepts that sit in a nested relationship. Understanding this difference precisely will help you speak much more clearly not only on exam questions but also in real-world conversations.

The Nested Relationship of the Three Concepts

The first picture to remember is a structure of "smaller circles inside a bigger circle."

┌─────────────────────────────────────┐
│ Artificial Intelligence (AI)         │
│  ┌────────────────────────────────┐  │
│  │ Machine Learning (ML)           │  │
│  │  ┌──────────────────────────┐  │  │
│  │  │ Deep Learning (DL)        │  │  │
│  │  └──────────────────────────┘  │  │
│  └────────────────────────────────┘  │
└─────────────────────────────────────┘
  • Artificial Intelligence (AI): The broadest concept. Any technology that mimics intelligent human behavior.
  • Machine Learning (ML): One way of implementing AI. A technique that "learns" rules from data.
  • Deep Learning (DL): A type of machine learning. A technique that learns by stacking artificial neural networks in multiple layers.

In other words, all deep learning is machine learning, and all machine learning is AI, but the reverse does not hold.

1. What Is Artificial Intelligence (AI)?

Artificial intelligence is the broadest field, aiming to "make machines think or act like humans." It includes not only machine learning but also approaches where humans write the rules one by one themselves (rule-based systems).

For example, an automatic thermostat that operates only on human-made rules such as "if the temperature exceeds 28 degrees, turn on the air conditioner" can be seen, in a broad sense, as an early form of AI. It does not need to learn from data.

💡 Related theory: The term AI was first officially used at the Dartmouth Conference in 1956. Early AI mostly took a "rule-based (expert system)" approach in which humans defined the rules directly.

2. What Is Machine Learning (ML)?

Machine learning is a method where, instead of a human writing out every rule, you show the machine data and let it find the rules (patterns) on its own.

The key differences can be compared as follows.

AspectRule-based programmingMachine learning
Who creates the rulesHumansThe machine learns them from data
InputData + rulesData + answers (examples)
OutputResultsRules (a model)
Adapting to new situationsRules must be rewrittenCan be retrained on new data

For example, consider the problem "filter out spam email." A rule-based approach has a human write conditions directly, such as "if the subject contains 'free,' it is spam." But when spammers change their wording, the rules must keep being revised. With machine learning, if you show it tens of thousands of spam/legitimate emails, it learns on its own which characteristics indicate spam.

💡 Related theory: The classic definition of machine learning is "a field of study that gives computers the ability to learn without being explicitly programmed" (Arthur Samuel, 1959).

3. What Is Deep Learning (DL)?

Deep learning is a branch of machine learning that learns complex patterns by stacking artificial neural networks in many layers (hence "deep"). The idea was inspired by the neuron structure of the human brain.

Deep learning is especially powerful with highly complex, unstructured data such as images, speech, and natural language. However, it has the following characteristics.

  • It requires large amounts of data.
  • It requires powerful computing resources (such as GPUs).
  • The learning process often looks like a "black box," making the results hard for humans to interpret.

The generative AI making headlines today (ChatGPT, image generation, etc.) is also entirely based on deep learning. We will cover this in more detail in later weeks.

💡 Related theory: The decisive moment when deep learning went mainstream was in 2012, when a neural network-based model showed overwhelming performance at the ImageNet image recognition competition. The combination of massive data and GPU computing was the key.

Summarizing with Everyday Examples

ExampleCategoryReason
An automatic thermostat operating on rulesAI (not machine learning)Operates only on human-made rules
Email spam filterMachine learningLearns spam patterns from data
Smartphone face-recognition unlockDeep learningRecognizes face images with a neural network
Speech recognition in voice assistants (Siri, Alexa)Deep learningConverts speech to text with a neural network
Product recommendations in an online storeMachine learningLearns preference patterns from purchase data

Looking at this table, the nested relationship — "deep learning is a special case of machine learning, and machine learning is one method of AI" — becomes intuitive.

Why This Distinction Matters

On the exam, you will see questions like "Which technology does this scenario correspond to?" or "How does deep learning differ from machine learning?" It is also the foundation for judging, in practice, "Does our problem really need deep learning, or is simple machine learning — or plain rules — enough?"

The key point is that more complex technology is not always better. Solving simple problems with simple methods is advantageous in terms of cost and maintenance.

Today's Summary

  • Remember the nested relationship: AI ⊃ Machine Learning ⊃ Deep Learning.
  • AI is the broadest: "any technology that mimics intelligent behavior."
  • Machine learning is a method that "learns rules from data."
  • Deep learning is a type of machine learning that "stacks neural networks deeply."
  • All deep learning is machine learning, but not all AI is machine learning.

📝 Practice Questions

Click a choice to reveal the answer and explanation.

Question 1

Which statement most accurately describes the relationship between Artificial Intelligence (AI), Machine Learning (ML), and Deep Learning (DL)?

Question 2

Which statement is correct about a system that operates entirely on rules a human wrote by hand, such as "if the subject contains a specific word, process it"?

Question 3

Compared with traditional machine learning, what does deep learning generally require more of?

Question 4

Which of the following data types does deep learning generally show its greatest strength with?

Next Learning Types: Supervised, Unsupervised, and Reinforcement LearningWeek 1 · Day 2

On this page

  • Introduction
  • The Nested Relationship of the Three Concepts
  • 1. What Is Artificial Intelligence (AI)?
  • 2. What Is Machine Learning (ML)?
  • 3. What Is Deep Learning (DL)?
  • Summarizing with Everyday Examples
  • Why This Distinction Matters
  • Today's Summary
  • Practice Questions