H13-311_V3.5 · Question #57
Which of the following does not belong to automatic hyperparameter optimization algorithm?
The correct answer is B. Random gradient descent. Random gradient descent (B) is an optimization algorithm used to minimize a model's loss function during training - it tunes model parameters (weights), not hyperparameters. Hyperparameters, by definition, must be set before training begins and cannot be learned by gradient…
Question
Which of the following does not belong to automatic hyperparameter optimization algorithm?
Options
- AGrid search
- BRandom gradient descent
- CRandom search
- DModel-based hyper parameter optimization
How the community answered
(15 responses)- A7% (1)
- B87% (13)
- C7% (1)
Explanation
Random gradient descent (B) is an optimization algorithm used to minimize a model's loss function during training - it tunes model parameters (weights), not hyperparameters. Hyperparameters, by definition, must be set before training begins and cannot be learned by gradient descent.
Grid search (A) is a classic automatic method that exhaustively evaluates every combination in a predefined hyperparameter grid. Random search (C) is also automatic, sampling combinations randomly from the search space and is often more efficient than grid search. Model-based hyperparameter optimization (D) - typically Bayesian optimization - automatically builds a surrogate model of the objective function to intelligently select the next hyperparameter configuration to try.
Memory tip: If an algorithm uses gradients and updates weights during training, it belongs to model optimization, not hyperparameter optimization. Hyperparameter tuners work around training runs, not inside them.
Topics
Community Discussion
No community discussion yet for this question.