July 2017
Beginner to intermediate
378 pages
10h 26m
English
Representation is how a model is formally constructed in a way which a computer can interpret. Examples are decision trees, support vector machines, and neural nets. ML models are commonly referred to by the name of the representation. A classifier is an instance in the set of possible models generated by the representation. When you make the choice of which representation to use, you are determining the possibilities of classifiers that your model is able to learn. The range of possibilities is known as the hypothesis space.
If the true (and remember, unknown) classifier model is not in the hypothesis space, it cannot be learned. Most representation models you will use have a large hypothesis space, so this is probably not ...