DP-100 · Question #523
You have an Azure Machine Learning workspace. You plan to implement automated hyperparameter tuning for model training in the workspace. You need to select the sweep jobs parameter sampling method tha
The correct answer is A. Sobol. Sobol sampling is a quasi-random, low-discrepancy sequence method. Unlike true random sampling, Sobol uses a deterministic mathematical sequence that covers the search space evenly while remaining reproducible - running the sweep again with the same configuration produces the sam
Question
Options
- ASobol
- BGrid
- CRandom
- DBayesian
How the community answered
(20 responses)- A80% (16)
- B5% (1)
- C10% (2)
- D5% (1)
Explanation
Sobol sampling is a quasi-random, low-discrepancy sequence method. Unlike true random sampling, Sobol uses a deterministic mathematical sequence that covers the search space evenly while remaining reproducible - running the sweep again with the same configuration produces the same sequence of hyperparameter combinations. Grid search is exhaustive (not randomized). Random sampling is non-deterministic and cannot reproduce exact results without a fixed seed. Bayesian sampling uses prior results to guide the next selection, making it adaptive rather than reproducible in the same sense.
Topics
Community Discussion
No community discussion yet for this question.