Lukas' Notes

machine-learning

Definition

Hypothesis (Machine Learning)

A hypothesis is a single specific function that maps inputs to outputs, chosen by a learning algorithm from a model (hypothesis class).

A model defines the space of possibilities. The hypothesis is the point within that space that the algorithm selects after training on data.

Hypothesis vs Model

HypothesisModel
What it isa single specific functionthe set of all candidate functions
When it mattersafter training (the result)before training (defines capacity)
Examplelinear regression: all lines
Synonymhypothesis class