Google Cloud Professional Machine Learning Engineer — Question 42
You have a functioning end-to-end ML pipeline that involves tuning the hyperparameters of your ML model using AI Platform, and then using the best-tuned parameters for training. Hypertuning is taking longer than expected and is delaying the downstream processes. You want to speed up the tuning job without significantly compromising its effectiveness. Which actions should you take? (Choose two.)
Answer options
- A. Decrease the number of parallel trials.
- B. Decrease the range of floating-point values.
- C. Set the early stopping parameter to TRUE.
- D. Change the search algorithm from Bayesian search to random search.
- E. Decrease the maximum number of trials during subsequent training phases.
Correct answer: C, E
Explanation
The correct actions are to set the early stopping parameter to TRUE (C), which allows the process to halt unproductive trials early, and to decrease the maximum number of trials in subsequent phases (E), which helps in saving time. The other options either decrease the effectiveness of the tuning process or do not significantly expedite it.