Question 281 of 1,755
ModelinghardMultiple ChoiceObjective-mapped

Quick Answer

The answer is to implement early stopping with a patience parameter. This is correct because the described behavior—training loss plateauing at a high value while validation loss increases—is a classic sign of overfitting in deep learning; early stopping with patience halts training when validation performance stops improving over a set number of epochs, preventing the model from memorizing noise and directly improving generalization. On the AWS Certified Machine Learning Specialty MLS-C01 exam, this scenario tests your ability to diagnose overfitting from loss curves and select the simplest regularization technique without altering architecture or data. A common trap is to assume more epochs always help, but patience ensures you stop at the point of best validation performance. Memory tip: think of “patience” as a countdown timer for validation loss—if it doesn’t improve for N epochs, training ends.

MLS-C01 Modeling Practice Question

This MLS-C01 practice question tests your understanding of modeling. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.

A data scientist is training a deep learning model for object detection. The training loss decreases rapidly in the first few epochs but then plateaus at a high value. The validation loss starts increasing after a few epochs. Which adjustment is MOST likely to improve generalization?

Clue words in this question

Noticing these words before you look at the options changes how you read each choice.

  • Clue: "first"

    Why it matters: Order matters here. You are being tested on which action comes before the others — not which action is generally useful.

  • Clue: "most likely"

    Why it matters: Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.

Question 1hardmultiple choice
Full question →

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

Implement early stopping with a patience parameter

The described behavior—training loss plateauing at a high value while validation loss increases—is a classic sign of overfitting. Early stopping with a patience parameter halts training when validation performance stops improving, preventing the model from memorizing noise and thus improving generalization. This directly addresses the overfitting without altering the model architecture or data distribution.

Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • Add more convolutional layers

    Why it's wrong here

    Adding layers increases model capacity and may worsen overfitting.

  • Use more aggressive data augmentation

    Why it's wrong here

    Data augmentation can help but may not address the specific overfitting pattern as directly as early stopping.

  • Increase the learning rate

    Why it's wrong here

    A higher learning rate can cause the loss to diverge.

  • Implement early stopping with a patience parameter

    Why this is correct

    Early stopping prevents overfitting by terminating training when validation loss degrades.

    Clue confirmation

    The clue words "first", "most likely" in the question point toward this answer.

    Related concept

    Read the scenario before looking for a memorised answer.

Common exam traps

Common exam trap: answer the scenario, not the keyword

AWS often tests the distinction between underfitting and overfitting symptoms, and candidates may mistakenly choose data augmentation (Option B) as a universal fix, but the plateauing training loss and rising validation loss specifically indicate overfitting, where early stopping is the most direct remedy.

Detailed technical explanation

How to think about this question

Early stopping works by monitoring a validation metric (e.g., loss) and stopping training after the metric has not improved for a specified number of epochs (patience). This prevents the model from entering the overfitting regime where it begins to memorize training data. In practice, the patience parameter should be tuned based on the dataset size and model complexity; a common starting value is 5–10 epochs. The technique is often combined with model checkpointing to save the best weights.

KKey Concepts to Remember

  • Read the scenario before looking for a memorised answer.
  • Find the constraint that changes the correct option.
  • Eliminate answers that are true in general but not in this case.

TExam Day Tips

  • Watch for words such as best, first, most likely and least administrative effort.
  • Review why wrong options are wrong, not only why the correct option is correct.

Key takeaway

Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Real-world example

How this comes up in practice

A media company stores terabytes of video archives that are accessed once a year for audit purposes. Moving these objects to a cold storage tier (Azure Archive, S3 Glacier, or Google Nearline) costs a fraction of hot storage. Questions like this test whether you understand storage tiers, access frequency tradeoffs, and retrieval latency requirements.

What to study next

Got this wrong? Here's your next step.

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Related practice questions

Related MLS-C01 practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free MLS-C01 practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this MLS-C01 question test?

Modeling — This question tests Modeling — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: Implement early stopping with a patience parameter — The described behavior—training loss plateauing at a high value while validation loss increases—is a classic sign of overfitting. Early stopping with a patience parameter halts training when validation performance stops improving, preventing the model from memorizing noise and thus improving generalization. This directly addresses the overfitting without altering the model architecture or data distribution.

What should I do if I get this MLS-C01 question wrong?

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Are there clue words in this question I should notice?

Yes — watch for: "first", "most likely". Order matters here. You are being tested on which action comes before the others — not which action is generally useful.

What is the key concept behind this question?

Read the scenario before looking for a memorised answer.

About these practice questions

Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

Same concept, more angles

4 more ways this is tested on MLS-C01

These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.

Variation 1. A data scientist is training a neural network on a dataset with 1 million images. The training loss decreases steadily but the validation loss starts to increase after 10 epochs. Which action should the scientist take to improve generalization?

medium
  • A.Implement early stopping
  • B.Add more layers to the network
  • C.Reduce the learning rate
  • D.Increase the number of epochs

Why A: Increasing validation loss indicates overfitting. Early stopping halts training when validation loss stops improving, preventing overfitting. Increasing epochs would worsen overfitting. Reducing learning rate might help but early stopping directly addresses the issue. Adding more layers could increase overfitting. Option A: Early stopping is correct. Option B: Increasing epochs would worsen overfitting. Option C: Reducing learning rate might help but not as directly. Option D: Adding more layers could increase overfitting.

Variation 2. A data scientist is training a regression model. The training loss is decreasing but the validation loss starts to increase after a few epochs. Which technique should the scientist use to address this issue?

medium
  • A.Decrease the batch size.
  • B.Implement early stopping based on validation loss.
  • C.Add more layers to the model.
  • D.Increase the learning rate.

Why B: Option B is correct because early stopping halts training when validation loss stops improving, preventing overfitting. Option A is wrong because adding more layers may worsen overfitting. Option C is wrong because increasing learning rate can cause divergence. Option D is wrong because decreasing batch size may increase noise but not directly address overfitting.

Variation 3. A data scientist is training a deep learning model for image segmentation using a U-Net architecture. The model overfits severely. The scientist tries L2 regularization, dropout, and data augmentation, but validation loss remains high while training loss approaches zero. Which additional strategy is most likely to reduce overfitting?

hard
  • A.Implement early stopping based on validation loss
  • B.Increase the batch size
  • C.Use a larger learning rate
  • D.Add more convolutional layers to increase model capacity

Why A: Early stopping monitors validation loss and halts training when it stops improving, directly addressing overfitting by preventing the model from memorizing noise after it has learned generalizable features. Since the training loss is near zero but validation loss remains high, the model has already started overfitting, and early stopping can cut training at the point just before overfitting worsens.

Variation 4. A data scientist is training a deep learning model on a GPU instance. The training loss is decreasing, but the validation loss starts increasing after a few epochs. Which action should the data scientist take to address this?

medium
  • A.Reduce the batch size
  • B.Implement early stopping
  • C.Increase the learning rate
  • D.Add more layers to the model

Why B: Option B is correct because early stopping stops training when validation loss starts increasing, preventing overfitting. Option A is wrong because increasing learning rate may cause divergence. Option C is wrong because adding more layers increases complexity and overfitting. Option D is wrong because reducing batch size may increase noise.

Keep practising

More MLS-C01 practice questions

Last reviewed: Jun 30, 2026

Question Discussion

Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.

Loading comments…

Sign in to join the discussion.

This MLS-C01 practice question is part of Courseiva's free Amazon Web Services certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the MLS-C01 exam.