← Master Index
Vol. 02 Module 2.3 Lecture

Standard Deviation

Probability & Statistics

How This Lesson Fits the Module

Variance measured spread in squared units—mathematically clean but hard to interpret (“2.3 ms2”). Standard deviation σ is the square root of variance, restoring the original scale (“1.5 ms”).

In AI engineering, standard deviation is the lingua franca of normalization: z-scores standardize features to mean 0 and std 1; the empirical rule (68–95–99.7) gives quick sanity checks on model inputs and outputs; outlier thresholds are often set at μ ± 3σ. Every StandardScaler in scikit-learn, every “normalize by std” line in PyTorch, every confidence interval on a metric report—all depend on σ.

Master standard deviation and you can read dashboards, design preprocessing pipelines, and debug training instability caused by poorly scaled data.

Learning Objectives

By the end of this lesson, students should be able to:

  • Define standard deviation σ as the square root of variance and compute it for small datasets.
  • Distinguish population σ vs sample s and match library conventions (ddof).
  • Compute and interpret z-scores: z = (x − μ) / σ.
  • State the empirical rule for normal-like data and apply it to quick EDA checks.
  • Explain feature scaling (standardization) and why it matters for gradient-based and distance-based models.
  • Implement standardization with sklearn and PyTorch and invert transforms when needed.
  • Recognize when standardization helps vs when alternatives (min-max, robust scaling) are preferable.
  • Connect σ to monitoring (drift, outliers) and reporting uncertainty on validation metrics.

Introduction: Spread in Original Units

If mean daily active users is 10,000 with variance 4,000,000, the standard deviation is √4,000,000 = 2,000 users. You can now say: “Typical day-to-day fluctuation is about two thousand users,” which is actionable for capacity planning.

Standard deviation (σ for populations, s for samples) is the nonnegative square root of variance:

σ = √Var(X),   s = √s2

It measures typical distance from the mean in the same units as the data—milliseconds, dollars, pixels, logits. That interpretability makes σ the default spread statistic in ML tooling and research papers.

Population and Sample Standard Deviation

Definition — Standard Deviation

For a population with variance σ2:

σ = √[(1/N) ∑i=1N (xi − μ)2]

For a sample with sample variance s2 (denominator n − 1):

s = √[(1/(n − 1)) ∑i=1n (xi)2]

Context Symbol Denominator NumPy Typical ML Use
Full population σ N np.std(x, ddof=0) Theoretical distributions, known params
Sample estimate s n − 1 np.std(x, ddof=1) StandardScaler, EDA on training set
Worked Example — Inference Latency

Batch latencies (ms): 45, 48, 50, 52, 55. Sample mean = 50.

  • Sample variance s2 = 62.5 / 4 = 15.625 (using n − 1 = 4)
  • Sample std s = √15.625 ≈ 3.95 ms

Interpretation: most requests fall within roughly ±4 ms of 50 ms under normal-like assumptions (refined by the empirical rule below).

Z-Scores: Standardizing Individual Observations

Definition — Z-Score

The z-score (standard score) of a value x is how many standard deviations it lies from the mean:

z = (x − μ) / σ  (or (x) / s for samples)

A z-score of 2 means x is two standard deviations above the mean; −1.5 means 1.5 standard deviations below.

Why z-scores matter in ML:

import numpy as np

x = np.array([45, 48, 50, 52, 55])
mu, sigma = x.mean(), x.std(ddof=1)
z = (x - mu) / sigma
# z for 55: (55 - 50) / 3.95 ≈ 1.27

Z-scoring an entire feature column transforms it to mean 0 and standard deviation 1 (when σ > 0). That transformation is the core of standardization in preprocessing pipelines.

The Empirical Rule (68–95–99.7)

For data that are approximately normal (bell-shaped), the empirical rule gives fast probability-style summaries:

≈ 68%

Within μ ± 1σ

Roughly two-thirds of values land one std from the mean.

≈ 95%

Within μ ± 2σ

Most typical observations; beyond 2σ is uncommon.

≈ 99.7%

Within μ ± 3σ

Classic outlier cutoff for Gaussian-like features.

AI Sanity Check

After training, plot histograms of key numeric features and model residuals. If data are roughly normal, ~95% of residuals should fall within ±2σ. Systematic violations suggest wrong distributional assumptions, heavy tails, or data bugs. The empirical rule is a heuristic—skewed or multimodal data break it—but it catches gross preprocessing errors in minutes.

The empirical rule is exact for normal distributions and approximate otherwise. Heavy-tailed metrics (API latency, financial returns) often exceed 3σ more often than 0.3%—use robust methods (median, IQR) when tails are fat.

Feature Scaling in Machine Learning

Gradient descent, logistic regression, SVMs with RBF kernels, k-NN, and neural networks all behave better when input features share comparable scale. Standardization (z-score scaling) transforms each feature using training-set mean and standard deviation:

x′ = (x − μtrain) / σtrain

Fit on training data — Compute μ and σ per feature from X_train only Transform train, val, test — Apply the same μ, σ to all splits (never refit on test) Train model — Gradients and distances treat features fairly Inference — Production pipeline applies stored μ, σ from training Monitor drift — Alert if production μ or σ diverges from training baseline
from sklearn.preprocessing import StandardScaler
from sklearn.pipeline import Pipeline
from sklearn.linear_model import LogisticRegression

pipe = Pipeline([
    ("scaler", StandardScaler()),   # x' = (x - mean) / std per column
    ("clf", LogisticRegression()),
])
pipe.fit(X_train, y_train)
pipe.predict(X_test)              # test scaled with train statistics

PyTorch note: Image pipelines often use fixed normalization (e.g., ImageNet mean/std per channel) instead of per-dataset μ, σ—same math, pretrained expectations:

transforms.Normalize(mean=[0.485, 0.456, 0.406],
                     std=[0.229, 0.224, 0.225])  # torchvision preset

Standardization vs Other Scalers

Method Formula (per feature) Best When
StandardScaler (x − μ) / σ Features roughly symmetric; outliers mild; linear models, neural nets
MinMaxScaler (x − min) / (max − min) Bounded input needed (e.g., [0,1]); sensitive to outliers
RobustScaler (x − median) / IQR Heavy outliers; skewed distributions

Critical rule: If σ = 0 (constant feature), division is undefined—drop the column or skip scaling. sklearn raises or produces NaNs depending on settings; handle constant features in EDA first.

Standard Deviation in Training and Evaluation

Common Misconceptions

Misconception 1: “Standardization always improves every model.”

Why people believe it: Scaling is taught as a universal preprocessing step.

Reality: Tree-based models (random forests, gradient boosting) are scale-invariant. Standardization matters most for linear models, neural nets, SVMs, and k-NN.

Misconception 2: “|z| > 3 always means a data error.”

Why people believe it: The 99.7% rule is memorable.

Reality: Heavy-tailed and multimodal data produce legitimate points beyond 3σ. Investigate, do not auto-delete.

Misconception 3: “Fit StandardScaler on the full dataset before splitting.”

Why people believe it: Faster to scale everything at once.

Reality: Test statistics leak into μ and σ, inflating evaluation metrics. Fit only on training data inside a pipeline or cross-validation fold.

Misconception 4: “Standard deviation and standard error are the same.”

Why people believe it: Both abbreviate to “std” in casual speech.

Reality: Standard deviation measures spread of data. Standard error measures uncertainty of a statistic (e.g., SE of the mean = σ/√n). Do not confuse them in experiment reports.

Quick Knowledge Check

  1. Short Answer: How is σ related to variance? Answer: σ = √Var(X).
  2. Computation: If Var(X) = 25, what is σ? Answer: 5.
  3. Short Answer: Write the z-score formula. Answer: z = (x − μ) / σ.
  4. True/False: StandardScaler fits mean and std on the test set. Answer: False—fit on training data only.
  5. Multiple Choice: Under the empirical rule for normal-like data, about what % falls within μ ± 2σ? (a) 68%, (b) 95%, (c) 99.7%, (d) 50%. Answer: (b) 95%.
  6. Short Answer: A latency of 62 ms has z = 2 when mean is 50 ms and std is 6 ms. Is that correct? Answer: Yes—(62−50)/6 = 2.
  7. Multiple Choice: Which model family is least sensitive to feature scale? (a) k-NN, (b) Logistic regression, (c) Random forest, (d) Neural network. Answer: (c) Random forest.
  8. True/False: You should standardize features with zero variance. Answer: False—drop constant features; division by zero is undefined.
  9. Short Answer: What does standardization do to a feature’s mean and std (approximately)? Answer: Mean becomes 0, std becomes 1 (on the training distribution used to fit).
  10. Short Answer: Why is the empirical rule unreliable for heavily skewed API latency data? Answer: Skew/heavy tails violate normality; more than 0.3% of values can exceed 3σ legitimately.

Key Takeaways

  • Standard deviation σ is the square root of variance—spread in original units.
  • Z-scores measure distance from the mean in σ-units; they power standardization and outlier heuristics.
  • The 68–95–99.7 rule gives quick checks for roughly normal data and residuals.
  • StandardScaler applies training-set μ and σ to all splits—never leak test statistics.
  • Scale-sensitive models (linear, neural, k-NN, SVM-RBF) benefit; tree models often do not.
  • Constant features (σ = 0) must be removed before scaling.
  • Monitor production μ and σ against training baselines to detect data drift.
  • Next: Distribution formalizes the probability models behind these summaries.

Further Reading & References

Books

Documentation

Trainer’s Guide

Demo: Train logistic regression on unscaled vs StandardScaler-wrapped data. Show coefficient magnitudes and convergence iterations changing.

z-score exercise: Given μ = 100, σ = 15, compute z for 70, 100, 130. Map each to the empirical rule bands.

Leakage trap: Deliberately fit scaler on full data, then on train-only pipeline. Compare test accuracy—students remember leakage when the metric lies.

Bridge: Standard deviation summarizes spread for one variable; Distribution describes the full probability law of random variables—the bridge to Gaussian models and generative AI.

What’s Next Continue to Distribution to study probability distributions as the mathematical objects behind means, variances, and standard deviations. Review Variance if the link between s2 and σ needs reinforcement.