Linear Regression v2 (Notes)

studied byStudied by 0 people
0.0(0)
learn
LearnA personalized and smart learning plan
exam
Practice TestTake a test on your terms and definitions
spaced repetition
Spaced RepetitionScientifically backed study method
heart puzzle
Matching GameHow quick can you match all your cards?
flashcards
FlashcardsStudy terms and definitions

1 / 25

encourage image

There's no tags or description

Looks like no one added any tags here yet for you.

26 Terms

1
Linear Regression
A method to model the relationship between a dependent variable and one or more independent variables.
New cards
2
Multiple Linear Regression
An extension of simple linear regression that uses multiple features to predict a dependent variable.
New cards
3
Dependent variable (y)
The variable that we are trying to predict in regression analysis.
New cards
4
Independent variables (x1, x2, ..., xn)
The predictors or features used to predict the dependent variable in regression.
New cards
5
Residuals
The difference between the observed values and the predicted values in a regression model.
New cards
6
Gradient Descent
An optimization algorithm used to minimize a loss function by iteratively adjusting model parameters.
New cards
7
Mean Squared Error (MSE)
A loss function that measures the average of the squares of the errors or deviations.
New cards
8
Sum of Squared Errors (SSE)
Measures the total deviation of the predicted values from the actual values.
New cards
9
Ridge Regression
A technique in linear regression that adds an L2 penalty to prevent overfitting by shrinking coefficients.
New cards
10
Lasso Regression
A regression method that adds an L1 penalty, allowing for feature selection by shrinking some coefficients to zero.
New cards
11
Elastic Net
A regression method that combines L1 and L2 penalties to improve performance in models with correlated features.
New cards
12
Learning Rate (α)
A parameter that controls the step size during the adjustment of coefficients in gradient descent.
New cards
13
Intercept (β0)
The expected mean value of the dependent variable when all independent variables are equal to zero.
New cards
14
Coefficient (βj)
The value that represents the degree of change in the dependent variable for each unit of change in an independent variable.
New cards
15
Loss Function
A method of evaluating how well specific algorithm models the data; commonly used in regression.
New cards
16
Feature Selection
The process of selecting a subset of relevant features for model construction.
New cards
17
Training set
The portion of the dataset used to train the model.
New cards
18
Test set
The portion of the dataset used to evaluate the performance of the model.
New cards
19
Cross Validation
A technique for assessing how the results of a statistical analysis will generalize to an independent data set.
New cards
20
Regularization
A technique used to prevent overfitting by adding a penalty to the loss function.
New cards
21
Bias-Variance Tradeoff
A key concept in machine learning that describes the trade-off between the error due to bias and the error due to variance.
New cards
22

When to use Ridge regression?

when you have many predictors that are correlated, and you want to keep all of them in the model but reduce their influence

New cards
23

When to use Lasso Regression?

when you suspect that only a few predictors are important, and you want to automatically select the most relevant ones

New cards
24

When to use Elastic net?

when you have a mix of correlated and uncorrelated predictors, or when you want the benefits of both Ridge and Lasso

New cards
25

Overfitting

Low training error, high test error

New cards
26

undercutting

high training error, high test error

New cards
robot