Supervised Learning Flashcards

1
Q

Define Machine Learning.

A

Machine Learning is the field of study that gives computers the ability to learn without being explicitly programmed (Arthur Samuel, 1959).

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

What is the basic premise of learning from data?

A

The basic premise is to use a set of observations to uncover an underlying process when no analytic solution is available.

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

What are the key elements of the learning problem?

A

Observing training data, using a machine learning method to estimate f, where f(X)=Y

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

Differentiate between regression and classification in supervised learning.

A

Regression estimates numerical values of a target variable, while classification assigns labels to instances based on their attributes.

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

What is the formula for linear regression?

A

Yi​=f(Xi​)+ϵi​, where ϵi​ is the random error term.

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

How is the “best fit” determined in linear regression?

A

By minimizing the least square errors: ∑i=1 n2.

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

Name three algorithms used in supervised learning besides linear regression.

A

Decision Trees, Random Forests, and K-Nearest Neighbors (k-NN).

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

What is the main advantage of Random Forests over individual decision trees?

A

It reduces overfitting by combining predictions from multiple trees.

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

Explain the k-NN algorithm’s prediction process.

A

Calculate distances to all data points, find the kk-nearest neighbors, and determine the majority class (classification) or average value (regression).

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