Sen Lin, Fundador de PrepPass · Verificado con official AWS AIF-C01 exam guide / current AWS documentation · Cómo revisamos
MUESTRA GRATIS · LEE EN LÍNEACapítulo 1 · 20% del examen

AWS Certified AI Practitioner (AIF-C01) Study Guide — 2026 Edition

Este es el capítulo inicial de AWS Certified AI Practitioner (AIF-C01) — Complete Study Guide (2026), gratis para leer aquí mismo — sin descargas ni correo. Es el mismo texto del eBook. Al llegar al final, la guía completa está a un clic.

Published by PrepPass — free Chapter 1 sample

This is the free sample chapter. The complete guide covers all five AIF-C01 domains, a 55-question practice exam with full answer explanations, and pairs with a free timed mock at PrepPass.org. This is an independent study guide, not affiliated with or endorsed by Amazon Web Services.

Chapter 1 — Fundamentals of AI and ML

This domain builds the vocabulary the rest of the exam depends on. Before you can reason about generative AI, foundation models, or responsible AI, you need to know what "AI," "machine learning," and "deep learning" actually mean, how they nest inside one another, how a model is trained and then used, and where the core AWS machine-learning services fit. None of it is hard, but the exam is precise, and a single loose definition is enough to turn an easy question into a wrong answer. Master this chapter and you will move faster through every chapter that follows, because the same terms reappear constantly.

1.1 AI, Machine Learning, and Deep Learning

Start with the three-ring nesting, because the exam tests it directly and uses it as a trap in later questions.

Artificial intelligence (AI) is the broadest idea: the goal of getting computers to perform tasks that normally require human intelligence — understanding language, recognizing images, making decisions, solving problems. AI is the outer ring. It is a field and an aspiration, not a single technique. A hand-written rule-based "expert system" that plays chess is AI even though it contains no learning at all.

Machine learning (ML) is a subset of AI. In machine learning, a system is not explicitly programmed with the rules for a task; instead it learns the patterns directly from data. You show it many examples, and it infers a model that maps inputs to outputs. This is the middle ring. The defining shift is from "a human writes the rules" to "the system derives the rules from examples."

Deep learning is a further subset of ML — the inner ring. Deep learning uses multi-layer neural networks, loosely inspired by the interconnected neurons of the brain, to model very complex patterns. "Deep" refers to the many layers stacked between input and output. Deep learning is what powers modern image recognition, speech, and the large language models behind generative AI. Every deep-learning system is machine learning, and every machine-learning system is AI — but not the reverse.

Memory hook: Deep learning ⊂ Machine learning ⊂ Artificial intelligence. Three nested rings, smallest inside largest. The classic wrong answer flips the order (claims deep learning is the umbrella that "contains" AI). If you can draw the three rings, you will get this family of questions right every time.

1.2 The Main Types of Machine Learning

Machine learning is usually divided into three paradigms, and the exam constantly asks you to match a described business scenario to the correct one. Learn the one-line trigger for each.

Supervised learning trains on labeled data: every training example is a pair of an input and its known, correct output (the label). The model learns the mapping so it can predict the label for new, unlabeled inputs. The trigger word is labeled. Supervised learning splits into two sub-types by the kind of output:

  • Classification predicts a discrete category — spam vs. not spam, fraud vs. legitimate, which of ten animal species is in a photo. The output is a class.
  • Regression predicts a continuous number — a house price, tomorrow's temperature, an expected sales figure. The output is a quantity on a scale.

Telling classification from regression is a favorite exam distinction: if the answer is a category, it is classification; if the answer is a number on a continuum, it is regression.

Unsupervised learning works on unlabeled data to find hidden structure that no one specified in advance. The signature task is clustering — grouping similar records together, such as segmenting customers into natural groups when you do not know the groups ahead of time. The trigger is no labels / discover groups. Because nobody told the model what the "right" groups are, unsupervised learning is used for discovery, segmentation, and anomaly detection rather than prediction of a known target.

Reinforcement learning (RL) trains an agent to take actions in an environment so as to maximize a reward signal over time. There are no labeled input-output pairs; instead the agent tries actions, receives rewards or penalties, and learns a policy that earns the most reward. The triggers are agent, action, reward. Think of a system learning to play a game, control a robot, or optimize a process through trial and feedback.

A fourth term worth recognizing is transfer learning — reusing a model trained on one task as the starting point for a related task, which is conceptually how foundation models get adapted. It is a legitimate concept but a common distractor when the real answer is plain supervised learning.

1.3 The ML Lifecycle: Training, Evaluation, and Inference

A machine-learning model has two big phases in its life, and the exam wants you to keep them straight.

Training is where the model is built. You feed it training data, and the model adjusts its internal parameters (called weights) to reduce the error between its predictions and the known answers. Training is compute-intensive and happens before deployment. Adjusting weights is the essence of training — remember that phrase, because "adjusting the model's internal weights" is the tell for training on the exam.

Evaluation measures how good the trained model is. The crucial practice is to hold out a separate test set — data the model did not see during training — and measure performance on it. Why? Because a model can look great on data it has already memorized while being useless on anything new. Evaluating on unseen data estimates real-world performance and exposes overfitting.

Two failure modes anchor a whole family of questions:

  • Overfitting — the model learns the training data too well, memorizing its noise and quirks, and then performs poorly on new data. The classic symptom is a large gap: near-perfect on training data, much worse on the test set. The model is "too complex" or "over-trained" for the signal that is really there.
  • Underfitting — the opposite. The model is too simple to capture the underlying pattern and performs poorly even on the training data. Neither training nor test accuracy is good.

Inference is the payoff phase: taking a finished, trained model and using it to generate predictions on brand-new inputs in production. No weights change during inference; the model is fixed and simply produces outputs. Every time a deployed spam filter classifies a new email, that is inference. Keep the pair straight: training adjusts weights; inference uses the fixed model to predict.

1.4 Features, Labels, and Why Data Quality Rules Everything

Two more terms complete the core vocabulary.

A feature is an input variable the model reads — a column of data such as a customer's age, a house's square footage, or the words in an email. Features are what the model looks at.

A label is the target value the model learns to predict — the "right answer" attached to each training example. In a spam model, the words are features and "spam / not spam" is the label. In a house-price model, square footage and location are features and the sale price is the label. In supervised learning, every training example pairs features with a known label; unsupervised learning has features but no labels.

The single most important practical truth in this chapter: the quality, quantity, and representativeness of the data largely determine how good a model can be. This is why data preparation — collecting, cleaning, labeling, and balancing data — typically consumes the majority of a real ML project's effort. And it sets up a theme that dominates Chapters 4 and 5: poor or biased data produces poor or biased models. "Garbage in, garbage out" is not a slogan on this exam; it is the correct answer to a surprising number of questions about why a model failed or behaved unfairly.

1.5 When to Use AI/ML — and Where AWS Fits

Not every problem needs machine learning, and the exam rewards the judgment to know the difference.

Use ML when the patterns are complex, changing, or hard to write down as explicit rules, and when you have enough representative data to learn from. Recognizing thousands of objects across millions of images, detecting subtle fraud patterns that shift over time, understanding natural language — these resist hand-written rules and are ideal for ML.

Prefer a traditional rule-based system when the logic is well understood, stable, and can be written as clear deterministic rules. A rule-based approach is simpler, cheaper, more transparent, and easier to audit. Calculating sales tax or enforcing a fixed business policy does not need a neural network. The exam likes to offer ML as the "sophisticated" answer to a problem that is really just a set of known rules — resist it.

Where AWS fits is the other half of this domain, and it maps cleanly onto the "build vs. buy" choice:

  • Amazon SageMaker AI is the managed platform for the end-to-end ML lifecycle — preparing data, building, training, tuning, and deploying your own custom models at scale. Reach for SageMaker AI when you need to build a model, not just call one. (SageMaker AI is covered in depth in Chapters 3 and 4.)
  • Pre-built AI servicesAmazon Rekognition (images and video), Amazon Comprehend (text analysis), Amazon Textract (document extraction), and their siblings — provide ready-made AI capabilities through a simple API, so a team can add intelligence without training any model at all. Reach for these when a common capability already exists as a service. (These are covered in Chapter 3.)

That build-versus-buy axis — custom model on SageMaker AI versus a managed AI service you simply call — is one of the most heavily tested ideas on the entire exam, so fix it now: if the scenario needs a common, general capability with no training, pick the managed service; if it needs a bespoke model trained on your own data, pick SageMaker AI.

Key Facts — Chapter 1 (memorize cold)

  • Nesting: Deep Learning ⊂ Machine Learning ⊂ Artificial Intelligence (smallest inside largest).
  • Supervised = labeled data. Classification → discrete category; Regression → continuous number.
  • Unsupervised = unlabeled data; clustering groups similar records (customer segmentation).
  • Reinforcement learning = agent + actions + reward, maximized over time.
  • Feature = input variable; label = target being predicted.
  • Training adjusts the model's weights; inference uses the fixed, trained model to predict on new data.
  • Overfitting = great on training, poor on new data (memorized noise). Underfitting = too simple, poor even on training data.
  • Split into train/test; evaluate on the held-out test set to estimate real-world performance.
  • Data quality, quantity, and representativeness cap how good a model can be. Bad data → bad/biased model.
  • Rule-based beats ML when logic is known, stable, and writable as clear rules.
  • Amazon SageMaker AI = build/train/deploy custom models. Pre-built AI services (Rekognition, Comprehend, Textract…) = ready capability via API, no training.

Worked Scenario — Choosing the Paradigm

A logistics company has three projects. (a) It has two years of delivery records labeled "late" or "on-time" and wants to predict whether a new shipment will be late. (b) It wants to group its 50,000 customers into natural segments for marketing, with no predefined groups. (c) It wants a system that learns, through trial and reward, the best sequence of warehouse-robot moves to minimize travel time. Which ML paradigm fits each?

Work it by the trigger words. Project (a) has labeled examples and predicts a category (late / on-time) — that is supervised classification. Project (b) has no labels and wants to discover groups — that is unsupervised learning, specifically clustering. Project (c) has an agent taking actions to maximize a reward over time — that is reinforcement learning. Notice that all three are "learning," but the data (labeled? unlabeled? reward-driven?) decides the paradigm. That is exactly how the exam frames these questions: read for whether labels exist and what the output is.

Exam Traps — Chapter 1

  • Flipping the nesting. Any answer that says deep learning "contains" ML or AI is wrong. AI is the biggest ring.
  • Classification vs. regression by output type. If the target is a number on a continuum → regression. If it is a category → classification. "Predict the price" is regression; "predict which class" is classification.
  • Calling clustering "supervised." Clustering is unsupervised — there are no labels. If the scenario says "no predefined categories/groups," it is unsupervised.
  • Training vs. inference. "Adjusting weights to reduce error" = training. "Using the trained model on new inputs" = inference. Do not swap them.
  • Overfitting vs. underfitting. Great-on-training-but-bad-on-new = overfitting. Bad-on-everything (too simple) = underfitting. "Convergence" and "regularization" are distractors, not names for this gap.
  • Reaching for ML when rules suffice. If experts can write the logic down and it is stable, the rule-based system is the better, cheaper, more transparent answer.
  • Confusing SageMaker AI with a pre-built service. SageMaker AI is a platform to build your own model; Rekognition/Comprehend/Textract are finished capabilities you call. CloudWatch and Route 53 are not ML services at all — pure distractors.
Has leído el capítulo gratis

Obtén la guía completa

Ese fue el Capítulo 1. El eBook completo mantiene la misma profundidad en cada sección del examen, más preguntas de práctica con explicaciones — en un PDF y EPUB limpios que conservas para siempre.

  • All 5 official AIF-C01 domains at their real exam weights
  • Generative AI: foundation models, tokens, embeddings, prompting, RAG, fine-tuning
  • Amazon Bedrock, SageMaker AI, Amazon Q, and the AWS AI service catalog
  • Responsible AI + security/governance (Guardrails, Clarify, IAM, Macie)
  • 55 original practice questions with answer explanations
  • PDF (print & tab it) + EPUB (phone / e-reader)

Ten el libro completo — PDF + EPUB

Las preguntas de práctica y el simulacro siguen gratis. El libro es la mitad de estudio:

  • Enseñado capítulo a capítulo — cada sección explicada en orden, no solo preguntas
  • Imprímelo y márcalo — una referencia en papel para subrayar y anotar
  • Funciona sin conexión — PDF para imprimir, EPUB para el móvil o e-reader
  • Todo en un archivo — capítulos, resúmenes y preguntas de práctica juntos
$9.99pago único · descarga de por vida · sin suscripción

Garantía de devolución de 14 días — ¿no te convence? Escríbenos y te reembolsamos el 100%, sin preguntas. Política de reembolso

El Capítulo 1 es gratis en esta página — pruébalo antes de comprar. Un solo pago desbloquea el libro completo (PDF + EPUB, preguntas con explicaciones, resúmenes por capítulo).

Pago único de $9.99 · PDF + EPUB · tuyo para siempre · ve todo lo que incluye.

Muestra gratis — el capítulo inicial de la guía de AWS Certified AI Practitioner (AIF-C01). Resumen educativo, no asesoría profesional ni legal — confirma siempre las reglas vigentes con la fuente oficial. Última actualización: August 2026.

Reportar