H13-311_V3.5 · Question #227
Grid search is a method of parameter adjustment.
The correct answer is B. FALSE. Option B is correct because grid search is a method of hyperparameter tuning, not parameter adjustment - these are two distinct concepts in machine learning. Parameters (such as weights and biases in a neural network) are learned automatically during the training process via…
Question
Grid search is a method of parameter adjustment.
Options
- ATRUE
- BFALSE
How the community answered
(32 responses)- A16% (5)
- B84% (27)
Explanation
Option B is correct because grid search is a method of hyperparameter tuning, not parameter adjustment - these are two distinct concepts in machine learning. Parameters (such as weights and biases in a neural network) are learned automatically during the training process via optimization algorithms like gradient descent. Hyperparameters (such as learning rate, tree depth, or regularization strength) are set before training and cannot be learned from data - grid search exhaustively evaluates a predefined grid of hyperparameter combinations to find the best-performing configuration.
Option A is wrong because it conflates "parameters" with "hyperparameters," which is a common but critical mix-up.
Memory tip: Think of it this way - parameters are found by the model, while hyperparameters are found for the model. Grid search belongs to the "for the model" category, making it a hyperparameter search strategy, not a parameter adjustment method.
Topics
Community Discussion
No community discussion yet for this question.