Machine Learning - Linear Regression

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/9

flashcard set

Earn XP

Description and Tags

These flashcards cover key vocabulary and concepts related to linear regression in machine learning.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

10 Terms

1
New cards

Simple linear regression

A method to model the relationship between one independent variable (x) and a dependent variable (y) by fitting a linear equation.

2
New cards

Loss function

A function that measures the difference between predicted values (ŷ) and actual values (y).

3
New cards

L1 loss

Absolute-value loss defined as L1(y, ŷ) = |y - ŷ|, indicating the magnitude of prediction errors.

4
New cards

L2 loss

Squared-error loss defined as L2(y, ŷ) = (y - ŷ)², which emphasizes larger errors more than smaller ones.

5
New cards

Least squares

A method used in regression analysis that minimizes the sum of the squares of the residuals to find the best-fitting line.

6
New cards

Gradient descent

An iterative optimization algorithm used to minimize the loss function by updating weights incrementally based on the gradient.

7
New cards

Learning rate (α)

A hyperparameter that determines the size of the steps taken towards the minimum of the loss function during optimization.

8
New cards

Stochastic gradient descent (SGD)

A variant of gradient descent where the weights are updated using a randomly selected subset of training examples.

9
New cards

Multivariable linear regression

A type of regression analysis where two or more predictor variables are used to predict the outcome of a response variable.

10
New cards

Regularization

A technique used to prevent overfitting by adding a penalty to large coefficients in the loss function.