{ "@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 5: Regression Modelling (11%) Flashcards

(15 cards)

1
Q

Logistic regression is a ________ regression technique that is used to model data
having a _____ outcome.

A

linear, binary

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

Simple regression assumes a __________ relationship between the input attribute(s)
and the output attribute.

A

linear

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

What is the equation for simple linear regression?

A

y = b0 + b1x

where b0 is the y-intercept, b1 is the slope and x is the predictor value

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

What type of data are regression models used on?

A

Linear regression is used on continuous numerical variables, Logistic is used on binary classification

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

Nonlinear regression fits what type of line?

A

Fits a non-linear function

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

What is R2?

A

Measures how much total “noise” (variance) is reduced

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

What is Root Mean Squared Error (RMSE)

A

Measures how much deviation occurs at each point

Lower is better

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

What does it mean if RMSE is high but R² is also high?

A

The model explains the trend well, but absolute prediction errors are large

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

What is polynomial regression?

A

A form of regression where the relationship between the independent and dependent variable is modeled as an 𝑛th degree polynomial

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

What’s the formula for residual

A

Residual = y^ - yi

where y^ = predicted value
yi = observed value

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

When do we use Logistic regression?

A

When the data is binary
when data is always between 0 & 1
when the predicted values are the probability

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

What are the assumptions for Linear Regression?

A
  1. Linearity = there’s a linear relationship b/w the two variables
  2. Independence = Residuals are independent
  3. Homoscedasticity = residuals have constant variance @ every level of x
  4. Normality = residuals follow a normal distribution, centered at 0
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What are the assumptions for Linear Regression?

A
  1. Curvilinear
  2. Independence = Residuals are independent
  3. Homoscedasticity = residuals have constant variance @ every level of x
  4. Normality = residuals follow a normal distribution, centered at 0
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Which 𝑅2 value indicates that the line perfectly fits the model?

A

1

0 would mean that there is no linear relationship

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

The objective of a support vector machine is to find an optimal ________ that best
separates classes from a dataset

A

hyperplane

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