Kubnal Bridge

Core Concepts

Hyperparameter

Hyperparameters are configuration variables set before training—such as learning rate, batch size, number of layers, and dropout rate—as opposed to model parameters which are learned from data. Choosing good hyperparameters is critical to model performance.

Hyperparameter tuning (using grid search, random search, or Bayesian optimization) is one of the most time-consuming parts of ML development. AutoML tools aim to automate this process.

Authority Links

Related Terms