Machine Learning

Explore learning methods, model architectures, datasets, and practical applications.

Explore articles

Reset filters
Browse subtopics: Statistics

Articles that also belong to these categories. Counts cover all of Machine Learning.

Showing 1-60 of 90 articles

A/B Testing

A/B testing (also called split testing, bucket testing, or an online controlled experiment) is a randomized controlled experiment that compares two variants, a control (A) and a treatment (B), by randomly…

Data ScienceStatistics

ARIMA

ARIMA (Autoregressive Integrated Moving Average) is a class of statistical models for analyzing and forecasting time series data, specified by three non-negative integer orders written as ARIMA(p, d, q): p is…

Statistics

AUC-ROC

AUC (Area Under the Curve), most often the area under the ROC curve (AUC-ROC), is a threshold-independent evaluation metric that measures how well a binary classification model ranks positive cases above…

Model EvaluationStatistics

Area under the curve

Area under the curve (AUC) is a single scalar metric that summarizes the performance of a binary classifier or diagnostic test across all possible decision thresholds by integrating the area beneath a…

Model EvaluationStatistics

Bayes' theorem

Bayes' theorem (also called Bayes' rule or Bayes' law) is a fundamental theorem of probability theory that describes how to update the probability of a hypothesis given new evidence.

MathematicsStatistics

Bayesian inference

Bayesian inference is a method of statistical inference in which Bayes' theorem is used to update the probability of a hypothesis as new evidence or data becomes available.

Statistics

Bayesian network

A Bayesian network (also called a belief network, Bayes net, directed graphical model, or probabilistic causal network) is a probabilistic graphical model that represents a set of random variables and their…

Statistics

Bias-variance tradeoff

The bias-variance tradeoff is a foundational concept in machine learning and statistics that describes the tension between two competing sources of error in predictive models: bias (error from overly…

Statistics

Calibration (machine learning)

Calibration in machine learning is the property that the probability scores produced by a probabilistic classifier match the empirical frequency of the predicted event: a model that assigns a confidence of 0.8…

Statistics

Categorical Data

Categorical data, also called qualitative data, is data whose values are discrete labels or groups (such as colors, country names, or blood types) rather than measurable quantities, so they cannot be…

Data & DatasetsStatistics

Causal inference

Causal inference is the field of study concerned with drawing conclusions about cause-and-effect relationships from data, answering questions of the form "what would happen to outcome Y if we intervened on…

Statistics

Concept drift

Concept drift is the change over time in the statistical relationship between a model's inputs and its target, formally when the joint distribution P(X, Y) (and in the most damaging case the conditional P(Y |…

Data ScienceMLOps

Continuous Feature

A continuous feature is a numeric input variable in machine learning and statistics that can take any value within a range, including decimals and fractions, rather than a fixed set of categories or counts.

Data & DatasetsStatistics

Convenience Sampling

Convenience sampling (also called grab sampling, accidental sampling, or opportunity sampling) is a non-probability sampling method in which data points or participants are selected because they are easy to…

Data & DatasetsStatistics

Counterfactual Fairness

Counterfactual fairness is a formal definition of algorithmic fairness rooted in causal inference: a prediction is counterfactually fair toward an individual if it would remain unchanged in a counterfactual…

AI EthicsStatistics

Curse of Dimensionality

The curse of dimensionality is the set of problems that arise when data has a large number of features (dimensions): as dimensions increase, the volume of the space grows exponentially, the available data…

MathematicsStatistics

Data Analysis

Data analysis is the process of inspecting, cleaning, transforming, and modeling data to discover useful information, draw conclusions, and support decision-making.

Data ScienceStatistics

Data Science

Data science is an interdisciplinary field that uses statistics, programming, and domain expertise to extract knowledge and insights from structured and unstructured data.

Computer ScienceEducation AI

Estimator

An estimator is a rule, function, or algorithm that takes observed data and produces a value intended to approximate some unknown quantity, typically a parameter of a probability distribution or a function…

Statistics

Expectation-Maximization (EM) Algorithm

The Expectation-Maximization (EM) algorithm is an iterative method for finding maximum likelihood or maximum a posteriori (MAP) estimates of the parameters of statistical models that involve latent…

Statistics

Experimenter's Bias

Experimenter's bias (also called the observer-expectancy effect, experimenter expectancy effect, or experimenter effect) is a type of cognitive bias in which a researcher's expectations or beliefs about the…

AI EthicsStatistics

F1 score

The F1 score (also written as F1-score, F-score, or F-measure) is the harmonic mean of precision and recall, calculated as $$F_1 = \frac{2 \cdot (\text{Precision} \cdot \text{Recall})}{\text{Precision} +…

Model EvaluationStatistics

False Negative Rate

The false negative rate (FNR), also known as the miss rate, is the proportion of actual positive instances that a model or test incorrectly classifies as negative, computed as FNR = FN / (FN + TP).

Model EvaluationStatistics

False Positive Rate (FPR)

The false positive rate (FPR) is the proportion of actual negative cases that a test, model, or decision process incorrectly classifies as positive, defined as FPR = FP / (FP + TN) where FP is the number of…

Model EvaluationStatistics

False negative

A false negative (FN), also called a Type II error or a miss, is an instance whose true label is positive but that a classification model or test predicts as negative: a real positive case that the model fails…

Model EvaluationStatistics

False positive

A false positive (FP), also called a Type I error or a false alarm, is an instance whose true label is negative but whose predicted label is positive: the classifier raises an alarm where none was warranted.

Model EvaluationStatistics

Gaussian Process

A Gaussian process (GP) is a probabilistic machine learning model defined as a collection of random variables, any finite number of which have a joint Gaussian distribution.

Statistics

Generalized Linear Model

A generalized linear model (GLM) is a flexible extension of ordinary linear regression that allows the response variable to follow any distribution from the exponential family, not just the normal distribution

Statistics

Iris dataset

The Iris dataset, sometimes referred to as Fisher's Iris dataset or the Iris flower dataset, is a multivariate dataset introduced by the British statistician and biologist Ronald Fisher in his 1936 paper "The…

AI BenchmarksData & Datasets

Kalman Filter

The Kalman filter is a recursive algorithm that estimates the hidden state of a dynamic system from a sequence of noisy measurements.

AlgorithmsRobotics

L1 Loss

L1 loss is a regression loss function equal to the average of the absolute differences between predicted values and target values, written as $$\frac{1}{n} \sum \lvert y_i - \hat{y}_i \rvert$$.

StatisticsTraining & Optimization

L2 Loss

L2 loss is the squared-error loss function: for a true value $$y$$ and a predicted value $$\hat{y}$$, it is the squared difference $$(y - \hat{y})^2$$, and averaging it across a dataset gives the mean squared…

StatisticsTraining & Optimization

Least Squares Regression

Least squares regression is a statistical method that fits a model to data by choosing the parameters that minimize the sum of the squared residuals, the squared differences between the observed values and the…

Statistics

Leo Breiman

Leo Breiman (January 27, 1928 to July 5, 2005) was an American statistician at UC Berkeley whose work on tree-based prediction supplied machine learning with several of its most durable tools.

AI HistoryPeople

Linear Discriminant Analysis

Linear Discriminant Analysis (LDA) is a classical statistical method for classification and dimensionality reduction that finds the linear combination of features which best separates two or more classes by…

Statistics

Linear Regression

Linear regression is a statistical method that models the relationship between one or more independent variables (the predictors or features) and a continuous dependent variable (the response) by fitting a…

Statistics

Linear model

A linear model is any statistics or machine learning model whose prediction is a linear function of its input features, of the form f(x) = g(w_1 x_1 + w_2 x_2 + ... + w_p x_p + b)

Statistics

Log-Odds

Log-odds, also known as the logit, is a mathematical transformation that converts a probability value between 0 and 1 into a real number spanning from negative infinity to positive infinity.

MathematicsStatistics

Logistic Regression

Logistic regression is a statistical model for a binary response. It represents the conditional probability of one outcome as the logistic transformation of a linear predictor.

Statistics

Logits

In machine learning and statistics, logits refer to the raw, unnormalized scores output by a model before they are converted into probabilities.

Deep LearningNeural Networks

Maximum likelihood estimation (MLE)

Maximum likelihood estimation (MLE) is the method of choosing the parameters of a probability model so that they make the observed data as probable as possible: given a parametric model with density (or mass)…

Statistics

Multi-armed bandit

A multi-armed bandit is a sequential decision problem in which a learner repeatedly picks one action from a fixed set, receives a random reward for that action only, and tries to accumulate as much reward as…

AlgorithmsReinforcement Learning

Naive Bayes

Naive Bayes is a family of probabilistic classification algorithms that apply Bayes' theorem under a strong ("naive") assumption that every feature is conditionally independent of every other feature given the…

Statistics

Non-Response Bias

Non-response bias is the error that arises when the people or units that do not respond to a survey, study, or data collection process differ systematically from those that do

Data & DatasetsStatistics

Nonstationarity

Nonstationarity refers to the condition in which the statistical properties of a data-generating process change over time.

Statistics

Outlier Detection

Outlier detection is the process of identifying data points, observations, or patterns that deviate so markedly from the rest of a dataset that they are likely to have been generated by a different process.

Data & DatasetsStatistics

Outliers

An outlier is a data point that differs so markedly from the rest of a dataset that it appears not to belong to the same population.

Statistics

Participation Bias

Participation bias is a systematic error that arises when the individuals who choose to take part in a study, survey, or data collection effort differ in meaningful ways from those who do not, so the resulting…

Data & DatasetsStatistics

Particle Filter

A particle filter is a simulation-based method for estimating the changing, unobserved state of a system from a sequence of noisy observations.

AlgorithmsRobotics