Machine Learning

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

Explore articles

Reset filters
Browse subtopics: Mathematics

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

Showing 1-48 of 48 articles

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

Broadcasting

Broadcasting is the set of rules that lets element-wise operations (addition, subtraction, multiplication, division) act on arrays or tensors of different but compatible shapes by virtually stretching the…

Deep LearningMathematics

Convergence

Convergence in machine learning is the point at which an iterative optimization algorithm reaches a stable solution, meaning the loss function stops decreasing meaningfully and further parameter updates yield…

MathematicsTraining & Optimization

Convex Function

A convex function is a real-valued function whose graph curves upward into a bowl or cup shape, so that the line segment (chord) connecting any two points on the graph lies on or above the graph itself.

MathematicsTraining & Optimization

Convolution

Convolution is a mathematical operation that combines two functions to produce a third function, expressing how the shape of one is modified by the other.

Deep LearningMathematics

Cross-Entropy

Cross-entropy is a measure from information theory of how many bits (or nats) are needed to encode data drawn from a true probability distribution P when using a code optimized for a different

Deep LearningMathematics

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

Entropy

Entropy is a quantitative measure of the uncertainty, randomness, or average information content in a probability distribution: for a discrete random variable it equals the average number of yes/no questions…

Mathematics

Gradient

In machine learning, the gradient is the vector of partial derivatives of a loss function with respect to every model parameter, and it points in the direction in which the loss increases most steeply.

MathematicsTraining & Optimization

Hyperplane

A hyperplane is a flat, affine subspace of dimension n-1 embedded in an n-dimensional space, defined by the linear equation $$w \cdot x + b = 0$$, where w is a normal vector and b is a scalar offset .

Mathematics

Information Gain

Information Gain (IG) is a measure from information theory that quantifies the reduction in entropy (uncertainty) achieved by partitioning a dataset on a particular feature: it equals the entropy of the parent…

Mathematics

Lambda

Lambda (the Greek letter λ) is a symbol used across machine learning, statistics, and computer science to denote several distinct quantities

Mathematics

Linear

In machine learning and mathematics, linear describes a function or relationship in which the output is built from the inputs only through addition and multiplication by constants.

Mathematics

Log Loss

Log loss is the negative log-likelihood of the predicted probabilities and the standard loss function for probabilistic classification: for binary labels it is computed as…

MathematicsTraining & Optimization

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

Manifold Hypothesis

The manifold hypothesis is the conjecture that real-world high-dimensional data, such as natural images, speech, and text representations, concentrates on or near a manifold of much lower dimension embedded…

Deep LearningMathematics

Matrix factorization

Matrix factorization is a family of mathematical techniques that decompose a matrix into a product of two or more smaller matrices.

Mathematics

Minimax Loss

Minimax loss is a loss function rooted in game theory and decision theory that measures the worst-case performance of a strategy, algorithm, or model.

Generative AIMathematics

Nonlinear

Nonlinear describes any function, model, or relationship that does not satisfy the property of linearity.

Mathematics

NumPy

NumPy (short for Numerical Python) is the foundational open-source library for numerical and scientific computing in Python, providing an n-dimensional array object called ndarray along with a large collection…

AI Tools & ProductsMathematics

Partial derivative

A partial derivative measures how a multivariable function changes when one of its inputs is varied while every other input is held fixed.

Mathematics

Perplexity

Perplexity has two distinct meanings in artificial intelligence. In information theory and natural language processing, perplexity (PPL) is an intrinsic score for a probabilistic model: on a specified sequence

MathematicsNatural Language Processing

Scalar

A scalar is a single numerical value, a quantity with magnitude but no direction, and the simplest object in linear algebra and machine learning.

Mathematics

Sigmoid Function

The sigmoid function is a mathematical function that maps any real number to a value between 0 and 1 using the formula $$\sigma(x) = \frac{1}{1 + e^{-x}}$$, producing a smooth S-shaped curve.

Deep LearningMathematics

Similarity Measure

A similarity measure (also called a similarity function or similarity metric) is a real-valued function that quantifies the degree of resemblance between two objects, returning a large value when the objects…

Information RetrievalMathematics

Singular value decomposition

Singular value decomposition (SVD) is a matrix factorization that writes any real or complex m x n matrix $$A$$ as the product $$A = U \Sigma V^\top$$, where U and V are orthogonal matrices (the left and right…

Mathematics

Tensor

In machine learning, a tensor is a multi-dimensional array of numbers that serves as the fundamental data structure for representing and manipulating data.

Deep LearningMathematics

Tensor Rank

The rank of a tensor, also referred to as its order or degree, is the number of dimensions (axes or indices) needed to describe the tensor.

Mathematics

VC dimension

The Vapnik-Chervonenkis dimension, almost always shortened to VC dimension, measures the capacity of a class of binary classifiers by asking how many points the class can label in every possible way.

MathematicsStatistics

Wasserstein Loss

Wasserstein loss is a loss function for training generative models that measures the distance between two probability distributions as the Wasserstein-1 distance

Generative AIMathematics

Weighted Sum

A weighted sum is a mathematical operation that combines multiple input values by multiplying each value by a corresponding weight (coefficient) and then summing the results.

MathematicsNeural Networks