Parameters and Hyperparameters - Yousef's Notes
Parameters and Hyperparameters

Parameters and Hyperparameters

#Hyperparameters

Inputs of ML algorithms that influence the performance of the model. They’re not part of the Training Dataset and cannot be learned from them.

e.g.

#Parameters

Variables that define the model trained by the learning algorithm.

Parameters are directly modified by the learning algorithm based on the training data. The goal of learning is to find such values of parameters that make the model optimal in a certain sense.

e.g.

  • w and b in the equation of linear regression y = wx + b