Week 1 Flashcards

1
Q

What is unsupervised learning? And what are some examples

A

Extracting patterns from input data with no inputted target label (ie doesn’t know

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

What is supervised learning? And what are some examples

A

Minimising the error between prediction and targets (ie training knows exactly how far from optimal and what the optimal is)

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

What is reinforcement learning? And what are some examples

A

Note: RL is neither supervised nor unsupervised

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

What is the difference between underfitting and overfitting?

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

What is a method involving the dataset to reduce overfitting

A

Split the dataset

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

What are the 3 data splits, their usages and their typical percentages

A

(Just train val = 80:20) Val is used to select the model (ie early stopping) test is purely for performance.

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

How does cross-validation work and what problem is it designed to solve

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

What is the curse of dimensionality

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

What is the no free lunch theorem

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

What is the difference between parametric and non-parametric models

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

What are the pros / cons of parametric models (and an example model)

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

What are the pros / cons of non-parametric models (and an example)

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

What is linear regression

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

What is the linear regression error function and what is the closed form optimisation solution

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

How can you use linear regression to model non-linear relationships

A

Functions to modify input data into features. Note: linear refers to the weights being linear

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

How does regression work with probabilistic models

A
17
Q

What is maximum likelihood estimation used for

A
18
Q

What is the math definition of MLE

A
19
Q

What is the MLE recipe (and what is the likelihood function)

A
20
Q

How does the least squares solution relate to the MLE solution

A
21
Q

Why are probabilistic models often better than deterministic models

A
22
Q

What is classification

A
23
Q

What is a simple linear discriminant function and how does it relate to classification

A

Linear discriminant can be considered to be the decision boundary (ie line/hyperplane)

24
Q

What is linear separability

A
25
Q

What is logistic regression and how does it work

A
26
Q

How does MLE work for logistic regression

A

Gradient descent. No closed form

27
Q

How does MLE using gradient descent work

A