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 5
AIF-C01· AssociateWeek 1 · Day 5~15 min read

Day 5 - Week 1 Wrap-Up: AI/ML Fundamentals Review

Introduction

This week we learned the most fundamental concepts of AI and machine learning step by step. Today we will weave together the content from Day 1 through Day 4 for review, and go over the parts most often confused on the exam once more.

Review is not mere memorization — it is a time to redraw "how the concepts connect." This week's core flow is as follows.

[Day1] The AI > ML > DL relationship
   ↓
[Day2] ML learning types (supervised, unsupervised, reinforcement)
   ↓
[Day3] Problems where ML fits vs. where it doesn't
   ↓
[Day4] Key terms (model, training, inference, feature, label, overfitting)

Day 1 Review: The Relationship Between AI, ML, and DL

The first thing to remember is the nested relationship.

  • AI ⊃ Machine Learning ⊃ Deep Learning
  • AI: any technology that mimics intelligent behavior (including rule-based systems)
  • Machine learning: a method of learning rules from data
  • Deep learning: a type of machine learning that stacks neural networks deeply

All deep learning is machine learning, but not all AI is machine learning. A system whose rules were written directly by a human may be AI, but it is not machine learning.

Day 2 Review: Learning Types

Machine learning is divided into three types by learning approach.

Learning typeAnswers (labels)Representative tasks
Supervised learningPresentClassification (categories), regression (numbers)
Unsupervised learningAbsentClustering, dimensionality reduction
Reinforcement learningReplaced by rewardsGames, robotics, control

Let's revisit the two most commonly confused pairs.

  • Classification vs. regression: If the output is a category, it's classification; if a number, regression.
  • Classification vs. clustering: With answer labels, it's classification; without, clustering.

Day 3 Review: Problems Where ML Fits

Machine learning is not a cure-all. Judge its suitability by the following criteria.

  • Traditional programming: data + rules → results
  • Machine learning: data + results → rules
Machine learning fitsMachine learning doesn't fit
Rules are complex or hard to defineRules are simple and clear
Data is plentifulThere is almost no data
Some margin of error is acceptable100% accuracy and full explainability are mandatory

Remember that choosing the simplest method that is sufficient is good design.

Day 4 Review: Key Terms

Let's redraw the machine learning flow in terms of the vocabulary.

Features + labels [training data]
   ↓ Training
[Model] completed
   ↓ Inference
New input (features) → predicted label
   ↓
Evaluate with [test data] → check for overfitting/underfitting
  • Model: a learned bundle of rules
  • Training vs. inference: the process of building the model vs. predicting with the built model
  • Feature vs. label: input information vs. the answer to get right
  • Overfitting vs. underfitting: memorizing only the training data vs. insufficient learning

💡 Related theory: This week's content is the foundation of the "AI/ML fundamental concepts" domain of the AIF-C01 exam. You need a clear grasp of this flow to comfortably follow the advanced topics ahead, such as generative AI and AWS AI services.

Common Traps to Watch For

Here are the points where mistakes are easy to make on the exam.

TrapCorrect understanding
"Deep learning is the broadest concept"AI is the broadest. Deep learning is the narrowest
"Classification and regression are the same"Classification = categories, regression = numbers
"Classification and clustering are the same"They differ in the presence of answer labels
"Machine learning is always better"The traditional approach wins for simple problems
"It's fine to evaluate with training data"Honest evaluation requires test data
"Overfitting = not enough learning"Overfitting is actually memorizing too much

One-Sentence Summaries

Compressing this week into one sentence per day:

  • Day 1: AI is the broadest, machine learning learns from data, and deep learning is neural network-based machine learning.
  • Day 2: Learning types are divided into supervised, unsupervised, and reinforcement based on the presence of answers and the use of rewards.
  • Day 3: Machine learning fits when the rules are complex and data is plentiful.
  • Day 4: Train a model with features and labels, predict with inference, and watch out for overfitting.

Next Week Preview

Starting next week, we go one step further on the foundation learned today. We will expand into how machine learning and deep learning are actually used, and into the concept of generative AI, which is drawing the most attention these days. Be sure to consolidate this week's core flow.

📝 Practice Questions

Click a choice to reveal the answer and explanation.

Question 1

Which statement about the relationship between AI, machine learning, and deep learning and about learning types is correct?

Question 2

"Automatically grouping customer data into similar tendencies without answers" and "predicting tomorrow's temperature as a number" are, respectively, which tasks?

Question 3

In a certain business task, the rules are very simple and clear ("amount × fixed tax rate"), and the results must always be 100% accurate. Which judgment is most appropriate?

Question 4

A trained model is nearly perfect on the training data but its performance drops sharply on new data. You are also asked for the definitions of feature and label. Which statement is correct?

Question 5

Putting together what was learned this week, which is the most appropriate judgment for using machine learning well?

PreviousKey Terms: Model, Training, Inference, Feature, Label, OverfittingWeek 1 · Day 4Next ML Lifecycle Overview: One Complete Cycle from Data to OperationsWeek 2 · Day 1

On this page

  • Introduction
  • Day 1 Review: The Relationship Between AI, ML, and DL
  • Day 2 Review: Learning Types
  • Day 3 Review: Problems Where ML Fits
  • Day 4 Review: Key Terms
  • Common Traps to Watch For
  • One-Sentence Summaries
  • Next Week Preview
  • Practice Questions