- A
Use grid search to exhaustively explore all combinations.
Why wrong: Grid search is inefficient for many hyperparameters.
- B
Use early stopping to terminate poorly performing training jobs.
Early stopping avoids wasted resources.
- C
Include all algorithm hyperparameters in the tuning job.
Why wrong: May include irrelevant hyperparameters.
- D
Use a larger training dataset to improve tuning results.
Why wrong: Dataset size does not directly affect tuning efficiency.
- E
Use automatic model tuning with Bayesian optimization.
Bayesian optimization finds good hyperparameters efficiently.
Quick Answer
The answer is to use automatic model tuning with Bayesian optimization and to enable early stopping. Bayesian optimization is the correct approach because it intelligently explores the hyperparameter space by building a probabilistic model of the objective function, focusing on promising regions to find optimal values with far fewer trials than grid or random search. Early stopping, often implemented via Amazon SageMaker’s managed warm start or the `EarlyStopping` flag, automatically terminates poorly performing training jobs, saving significant compute time and cost without sacrificing model quality. On the AWS Certified Machine Learning Specialty exam, this question tests your understanding of efficient tuning strategies versus brute-force methods; a common trap is assuming that more training data or tuning every possible parameter yields better results, when in fact it wastes resources. Remember the mnemonic “BOES” – Bayesian Optimization and Early Stopping – to recall the two pillars of efficient SageMaker hyperparameter tuning.
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.
Which TWO of the following are best practices for hyperparameter tuning using Amazon SageMaker? (Choose 2)
Clue words in this question
Noticing these words before you look at the options changes how you read each choice.
Clue:
"best"Why it matters: Signals that multiple options may be partially correct. Choose the option that most directly solves the exact problem described, not the one that sounds most complete.
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
Use early stopping to terminate poorly performing training jobs.
Option A is correct because early stopping saves time and cost. Option C is correct because automatic tuning with Bayesian optimization is efficient. Option B is wrong because manual grid search is less efficient. Option D is wrong because tuning all parameters may be unnecessary. Option E is wrong because more training data does not improve tuning efficiency.
Key principle: NAT direction and interface roles matter as much as the IP address mapping. Inside/outside designation controls which traffic is translated.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Use grid search to exhaustively explore all combinations.
Why it's wrong here
Grid search is inefficient for many hyperparameters.
- ✓
Use early stopping to terminate poorly performing training jobs.
Why this is correct
Early stopping avoids wasted resources.
Clue confirmation
The clue word "best" in the question point toward this answer.
Related concept
Static NAT maps one inside address to one outside address.
- ✗
Include all algorithm hyperparameters in the tuning job.
Why it's wrong here
May include irrelevant hyperparameters.
- ✗
Use a larger training dataset to improve tuning results.
Why it's wrong here
Dataset size does not directly affect tuning efficiency.
- ✓
Use automatic model tuning with Bayesian optimization.
Why this is correct
Bayesian optimization finds good hyperparameters efficiently.
Clue confirmation
The clue word "best" in the question point toward this answer.
Related concept
Static NAT maps one inside address to one outside address.
Common exam traps
Common exam trap: NAT rules depend on direction and matching traffic
NAT is not only about the public address. The inside/outside interface roles and the ACL or rule that matches traffic are just as important.
Detailed technical explanation
How to think about this question
NAT questions usually test address translation, overload/PAT behaviour, static mappings and whether the right traffic is being translated. Read the interface direction and address terms carefully.
KKey Concepts to Remember
- Static NAT maps one inside address to one outside address.
- PAT allows many inside hosts to share one public address using ports.
- Inside local and inside global describe the private and translated addresses.
- NAT ACLs identify traffic for translation, not always security filtering.
TExam Day Tips
- Identify inside and outside interfaces first.
- Check whether the scenario needs static NAT, dynamic NAT or PAT.
- Do not confuse NAT matching ACLs with normal packet-filtering intent.
Key takeaway
NAT direction and interface roles matter as much as the IP address mapping. Inside/outside designation controls which traffic is translated.
Real-world example
How this comes up in practice
A startup's cloud architect reviews their monthly bill and notices costs are higher than expected for a long-running batch job. Switching from on-demand instances to Reserved Instances — or using Spot/Preemptible VMs — can reduce compute costs by up to 72 %. Questions like this test whether you understand the tradeoffs between commitment, flexibility, and cost across cloud pricing models.
What to study next
Got this wrong? Here's your next step.
Review the four NAT address types (inside local, inside global, outside local, outside global), PAT port overload, and static vs dynamic NAT use cases. Then practise related MLS-C01 NAT questions on configuration and troubleshooting.
- →
Modeling — study guide chapter
Learn the concepts, then practise the questions
- →
Modeling practice questions
Targeted practice on this topic area only
- →
All MLS-C01 questions
1,755 questions across all exam domains
- →
AWS Certified Machine Learning Specialty MLS-C01 study guide
Full concept coverage aligned to exam objectives
- →
MLS-C01 practice test guide
How to use practice tests most effectively before exam day
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.
Data Engineering practice questions
Practise MLS-C01 questions linked to Data Engineering.
Machine Learning Implementation and Operations practice questions
Practise MLS-C01 questions linked to Machine Learning Implementation and Operations.
Modeling practice questions
Practise MLS-C01 questions linked to Modeling.
Exploratory Data Analysis practice questions
Practise MLS-C01 questions linked to Exploratory Data Analysis.
MLS-C01 fundamentals practice questions
Practise MLS-C01 questions linked to MLS-C01 fundamentals.
MLS-C01 scenario practice questions
Practise MLS-C01 questions linked to MLS-C01 scenario.
MLS-C01 troubleshooting practice questions
Practise MLS-C01 questions linked to MLS-C01 troubleshooting.
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 — Static NAT maps one inside address to one outside address..
What is the correct answer to this question?
The correct answer is: Use early stopping to terminate poorly performing training jobs. — Option A is correct because early stopping saves time and cost. Option C is correct because automatic tuning with Bayesian optimization is efficient. Option B is wrong because manual grid search is less efficient. Option D is wrong because tuning all parameters may be unnecessary. Option E is wrong because more training data does not improve tuning efficiency.
What should I do if I get this MLS-C01 question wrong?
Review the four NAT address types (inside local, inside global, outside local, outside global), PAT port overload, and static vs dynamic NAT use cases. Then practise related MLS-C01 NAT questions on configuration and troubleshooting.
Are there clue words in this question I should notice?
Yes — watch for: "best". Signals that multiple options may be partially correct. Choose the option that most directly solves the exact problem described, not the one that sounds most complete.
What is the key concept behind this question?
Static NAT maps one inside address to one outside address.
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 →
Same concept, more angles
1 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 company is using Amazon SageMaker to tune hyperparameters for a gradient boosting model. The objective is to minimize root mean squared error (RMSE). The data scientist wants to explore the hyperparameter space efficiently. Which THREE hyperparameter tuning strategies should the data scientist consider? (Choose 3.)
hard- ✓ A.Bayesian optimization
- ✓ B.Random search
- C.Grid search
- D.Manual search
- ✓ E.Hyperband
Why A: Bayesian optimization is correct because it builds a probabilistic model of the objective function (RMSE) and uses an acquisition function to select the next hyperparameter combination to evaluate. This approach is sample-efficient, making it ideal for expensive-to-evaluate models like gradient boosting, as it balances exploration and exploitation to find optimal hyperparameters with fewer trials.
Last reviewed: Jun 20, 2026
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.
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.
Sign in to join the discussion.