{ "@context": "https://schema.org", "@type": "Organization", "name": "Brainscape", "url": "https://www.brainscape.com/", "logo": "https://www.brainscape.com/pks/images/cms/public-views/shared/Brainscape-logo-c4e172b280b4616f7fda.svg", "sameAs": [ "https://www.facebook.com/Brainscape", "https://x.com/brainscape", "https://www.linkedin.com/company/brainscape", "https://www.instagram.com/brainscape/", "https://www.tiktok.com/@brainscapeu", "https://www.pinterest.com/brainscape/", "https://www.youtube.com/@BrainscapeNY" ], "contactPoint": { "@type": "ContactPoint", "telephone": "(929) 334-4005", "contactType": "customer service", "availableLanguage": ["English"] }, "founder": { "@type": "Person", "name": "Andrew Cohen" }, "description": "Brainscape’s spaced repetition system is proven to DOUBLE learning results! Find, make, and study flashcards online or in our mobile app. Serious learners only.", "address": { "@type": "PostalAddress", "streetAddress": "159 W 25th St, Ste 517", "addressLocality": "New York", "addressRegion": "NY", "postalCode": "10001", "addressCountry": "USA" } }

IFN580 Week 3: Supervised Learning (11%) Flashcards

(16 cards)

1
Q

What is overfitting?

A

When the model memorises the training data, rather than finding the patterns

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

What is underfitting?

A

When the model overlooks the underlying patterns in the training data

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

What is bias?

A

Errors due to oversimplistic assumptions in the model - leads to underfitting

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

What is variance?

A

The variability of the model - how much of a model’s predictions will change if it’s trained on a different training set?

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

An overfitting model will have _ bias, _ variance

A

Low bias, high variance

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

An underfitting model will have _ bias, _ variance

A

High bias, low variance

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

What is bias-variance tradeoff?

A

The balance between bias and variance that affects generalisation. Low bias and Low variance are ideal

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

What is training data?

A

Used to train the model

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

What is test data?

A

Used to estimate the models performance

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

What is validation?

A

Used to monitor the model’s performance during training

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

What is batch testing?

A

Splitting the data into training and test sets

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

What is N-fold cross validatrion?

A

Splitting the data into N parts and training model on n-1 parts

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

What is random sampling, and when should it be used?

A

Randomly selecting data points, use when data is balanced

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

What is stratified sampling, and when should it be used?

A

Use the same proportions in both training and test data, use when data is skewed

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

What’s the formula for Precision/Accuracy?

A

CORRECT PREDICTIONS / TOTAL PREDICTIONS

OR

TP+FP / TP+FP+TN+FN

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

What’s the formula for RECALL?