Introduction to Machine Learning and Statistical Learning

0.0(0)
Studied by 1 person
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/25

flashcard set

Earn XP

Description and Tags

Historical and conceptual overview of machine learning and statistical learning, including definitions for regression, classification, bias-variance tradeoff, and data types.

Last updated 9:22 PM on 7/18/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

26 Terms

1
New cards

Drag Force Equation

The formula used to compute drag as a function of velocity: FD=12ρACDv2F_D = \frac{1}{2} \rho A C_D v^2, where ρ\rho is air density, AA is frontal area, CDC_D is the drag coefficient, and vv is velocity.

2
New cards

Statistical Learning Problem Equation

The relationship defined as Y = f(X) + \text{\epsilon}, where ff is the relationship between target YY and input XX, and \text{\epsilon} is independent error noise.

3
New cards

Target Variable

Also known as the response, dependent variable, or YY; it is what the model wishes to predict.

4
New cards

Predictors

Also known as inputs, features, independent variables, or XX; these are used to predict the target.

5
New cards

Categorical Data

A type of data limited to a fixed set of qualitative values, such as True vs False or specific labels like a favorite Formula 1 team.

6
New cards

Ordinal Data

A form of data consisting of a scale of increasing values.

7
New cards

n

In tabular data representation, this represents the number of observations, examples, or instances.

8
New cards

p

In tabular data representation, this represents the number of inputs, predictors, or features.

9
New cards

Inference

One of the main uses of f^(X)\hat{f}(X), focused on understanding how the features of XX affect the target YY.

10
New cards

Loss Function

A function that quantifies the prediction error of a model and depends on the specific problem being solved.

11
New cards

Mean Squared Error (MSE)

The most common loss function for regression problems, defined for all observations as: \mathcal{L}_{MSE} = \frac{1}{n} \text{\sum}_{i=1}^{n} (y_i - \text{\hat{f}}(x_i))^2.

12
New cards

Regression Function

The ideal relationship defined as the average value of YY for datapoints with X=xX = x, expressed as: f(x)=E(YX=x)f(x) = E(Y | X = x).

13
New cards

Nearest Neighbor Approach

A method that relaxes the regression function definition by averaging YY values in a neighborhood N(x)\mathcal{N}(x) of xx, expressed as f^(x)=Ave{YXN(x)}\hat{f}(x) = \text{Ave} \{ Y | X \in \mathcal{N}(x) \}.

14
New cards

Curse of Dimensionality

A phenomenon where nearest neighbor methods perform poorly when pp is large because neighbors tend to be far away in high dimensions.

15
New cards

George Box Quote

"Essentially, all models are wrong, but some are useful."

16
New cards

Parametric Models

Models that assume ff follows a fixed functional form with parameters, such as linear regression: Y=β0+β1X1+β2X2+...+βpXpY = \beta_0 + \beta_1 X_1 + \beta_2 X_2 + \text{...} + \beta_p X_p.

17
New cards

Non-parametric Models

Models that do not make assumptions about the functional form of ff, deriving predictions directly from the data (e.g., nearest-neighbors).

18
New cards

Generalization

The ability of a machine learning model to predict accurately on unseen data.

19
New cards

Data Splitting Ratio

The typical division of data into 70-80%70\text{-}80\% for training sets and 20-30%20\text{-}30\% for test sets.

20
New cards

Bias-Variance Tradeoff Decomposition

The mathematical breakdown of expected prediction error: E(y_0 - \text{\hat{f}}(x_0))^2 = \text{Var}(\text{\hat{f}}(x_0)) + \text{Bias}(\text{\hat{f}}(x_0))^2 + \text{Var}(\text{\epsilon}).

21
New cards

Variance (Bias-Variance Tradeoff)

Reflects how much the estimated model f^\hat{f} changes depending on the training data used.

22
New cards

Bias (Bias-Variance Tradeoff)

Reflects the difference between the estimated model f^\hat{f} and the true relationship ff.

23
New cards

Irreducible Error

The error represented by Var(ϵ)\text{Var}(\epsilon) which cannot be estimated or removed even if the model is perfect.

24
New cards

Binary Classification

The simplest classification problem where the target YY has exactly K=2K = 2 classes.

25
New cards

Misclassification Rate

The most common error metric for classification, defined as: \text{Ave}(I(y_0 \neq \text{\hat{y}}_0)), where II is an indicator variable.

26
New cards

Unsupervised Learning

A type of learning where there is no outcome variable YY, and the objective is to find groups or combinations of features involving the predictors.