Framing Flashcards

1
Q

In general, what is supervised learning ?

A

we combine multiple inputs, to build models, to predict outputs on previously unseen data.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is a label ?

A

The value we’re predicting

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is a feature ?

A

The inputs values describing the data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How is a label represented mathematically ?

A

y

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How is a feature represented mathematically ?

A

{x1, x2, x3,…xn}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is an “labeled example” ?

A

one piece of data with label, i.e. (x,y)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

what are labeled example used for ?

A

to train the model

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is an unlabeled example ?

A

piece of data without labels (x, ?)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What are unlabeled examples used for ?

A

make predictions on new data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is a model ?

A

The state machine that is performing the predicting

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What’s the difference between a regression model and and classification model ?

A

regression models predict continuous values while classification models predict discrete values

How well did you know this?
1
Not at all
2
3
4
5
Perfectly