Framing Flashcards
In general, what is supervised learning ?
we combine multiple inputs, to build models, to predict outputs on previously unseen data.
What is a label ?
The value we’re predicting
What is a feature ?
The inputs values describing the data
How is a label represented mathematically ?
y
How is a feature represented mathematically ?
{x1, x2, x3,…xn}
What is an “labeled example” ?
one piece of data with label, i.e. (x,y)
what are labeled example used for ?
to train the model
What is an unlabeled example ?
piece of data without labels (x, ?)
What are unlabeled examples used for ?
make predictions on new data
What is a model ?
The state machine that is performing the predicting
What’s the difference between a regression model and and classification model ?
regression models predict continuous values while classification models predict discrete values