Courseiva
Machine Learning Implementation and OperationshardMultiple ChoiceObjective-mapped

Overcoming a Plateau in Bayesian Hyperparameter Tuning

A data scientist is using Amazon SageMaker for hyperparameter tuning. The tuning job uses a Bayesian optimization strategy. After 10 training jobs, the objective metric (validation accuracy) has plateaued at 0.85. The data scientist wants to explore more diverse hyperparameter combinations. What should the data scientist do?

Quick Answer

Bayesian optimization for hyperparameter tuning works by balancing two competing behaviors: exploitation, which samples near hyperparameter combinations that have already performed well, and exploration, which samples in less-tested regions of the search space to see if better combinations exist elsewhere. When the objective metric plateaus after a batch of training jobs, as it has here at 0.85 validation accuracy, that's often a sign the acquisition function has settled into exploiting a local region of good-but-not-great hyperparameter combinations rather than continuing to probe the broader space. Increasing the exploration weight directly shifts that balance, encouraging the algorithm to sample more diverse, less-explored combinations even if they look less promising based on the current model of the search space, which gives the tuning job a better chance of discovering hyperparameter regions the exploitation-heavy phase had been passing over. This is the mechanism by which Bayesian optimization escapes a plateau: it isn't that the current best hyperparameters are wrong, it's that the search has narrowed too much around them, and deliberately widening the search via exploration weight reopens the possibility of finding something better. The broader concept to take away is that any plateau in an automated hyperparameter search is a signal to examine the exploration-exploitation balance of the search strategy itself, not just the model or data. When a tuning job's objective metric stalls and the question asks how to encourage more diverse hyperparameter combinations, look for the setting that explicitly controls exploration.

⚠ Common exam trap

The MLS-C01 exam often tests the misconception that increasing parallel jobs or switching to random search is the best way to increase diversity, when in fact Bayesian optimization's exploration weight is the precise control for this purpose.

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

Increase the exploration weight in the tuning job configuration.

In Bayesian optimization, the exploration weight controls the trade-off between exploring new hyperparameter regions and exploiting known good regions. Increasing this weight encourages the acquisition function to sample more diverse combinations, which can help escape a plateau. Option C is correct because it directly addresses the need for greater diversity in the search space.

Answer analysis

Option-by-option breakdown

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

  • Decrease the exploration weight in the tuning job configuration.

    Why it's wrong here

    Decreasing exploration weight makes the search more exploitative, worsening the plateau.

  • Switch to random search strategy.

    Why it's wrong here

    Random search might help but is less efficient; Bayesian with adjusted weights is better.

  • Increase the exploration weight in the tuning job configuration.

    Why this is correct

    Increasing exploration weight prompts the algorithm to try more diverse combinations.

  • Increase the number of parallel training jobs.

    Why it's wrong here

    Parallelism does not alter the search strategy.

About these practice questions

Courseiva writes every MLS-C01 question from scratch — 1,672 in total, each with an explanation and a wrong-answer breakdown. None are copied from real exams or dumps. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

Same concept, more angles

1 more way 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 performing hyperparameter tuning using Amazon SageMaker Automatic Model Tuning (AMT). The job uses a random search strategy. After 20 training jobs, the best objective metric value has plateaued. The data scientist wants to explore more of the hyperparameter space. Which action should the data scientist take?

medium
  • A.Change the tuning strategy from Random to Bayesian.
  • B.Enable early stopping.
  • C.Decrease the maximum number of training jobs.
  • D.Increase the number of parallel training jobs.

Why A: Changing the tuning strategy from Random to Bayesian allows the tuning job to use previous results to guide the search toward more promising hyperparameter regions, which can explore the space more efficiently after plateauing. Option B is incorrect because enabling early stopping terminates underperforming trials early but does not alter the search strategy itself; it may even reduce exploration. Option C is incorrect because decreasing the maximum number of training jobs reduces the total exploration of the hyperparameter space. Option D is incorrect because increasing the number of parallel training jobs only speeds up the process but still uses the same random search strategy, which is unlikely to escape the plateau.

JA

Written by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

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.