Product Code Database
Example Keywords: the legend -mario $31-100
   » » Wiki: Softmax Function
Tag Wiki 'Softmax Function'.
Tag

The softmax function, also known as softargmax

(2025). 9780262035613, MIT Press. .
or normalized exponential function, converts a of real numbers into a probability distribution of possible outcomes. It is a generalization of the logistic function to multiple dimensions, and is used in multinomial logistic regression. The softmax function is often used as the last activation function of a neural network to normalize the output of a network to a probability distribution over predicted output classes.


Definition
The softmax function takes as input a tuple of real numbers, and normalizes it into a probability distribution consisting of probabilities proportional to the exponentials of the input numbers. That is, prior to applying softmax, some tuple components could be negative, or greater than one; and might not sum to 1; but after applying softmax, each component will be in the interval (0, 1), and the components will add up to 1, so that they can be interpreted as probabilities. Furthermore, the larger input components will correspond to larger probabilities.

Formally, the standard (unit) softmax function \sigma\colon \R^K \to (0, 1)^K, where , takes a tuple \mathbf{z} = (z_1, \dotsc, z_K) \in \R^K and computes each component of vector \sigma(\mathbf{z}) \in (0, 1)^K with

\sigma(\mathbf{z})_i = \frac{e^{z_i}}{\sum_{j=1}^K e^{z_j}}\,.

In words, the softmax applies the standard exponential function to each element z_i of the input tuple \mathbf z (consisting of K real numbers), and normalizes these values by dividing by the sum of all these exponentials. The normalization ensures that the sum of the components of the output vector \sigma(\mathbf z) is 1. The term "softmax" derives from the amplifying effects of the exponential on any maxima in the input tuple. For example, the standard softmax of (1,2,8) is approximately (0.001,0.002,0.997), which amounts to assigning almost all of the total unit weight in the result to the position of the tuple's maximal element (of 8).

In general, instead of a different base can be used. As above, if then larger input components will result in larger output probabilities, and increasing the value of will create probability distributions that are more concentrated around the positions of the largest input values. Conversely, if then smaller input components will result in larger output probabilities, and decreasing the value of will create probability distributions that are more concentrated around the positions of the smallest input values. Writing b = e^\beta or b = e^{-\beta} (for real ) yields the expressions:

\sigma(\mathbf{z})_i = \frac{e^{\beta z_i}}{\sum_{j=1}^K e^{\beta z_j}} \text{ or } \sigma(\mathbf{z})_i = \frac{e^{-\beta z_i}}{\sum_{j=1}^K e^{-\beta z_j}} \text{ for } i = 1, \dotsc , K .

A value proportional to the reciprocal of is sometimes referred to as the temperature: \beta = 1 / kT, where is typically 1 or the Boltzmann constant and is the temperature. A higher temperature results in a more uniform output distribution (i.e. with higher entropy; it is "more random"), while a lower temperature results in a sharper output distribution, with one value dominating.

In some fields, the base is fixed, corresponding to a fixed scale, while in others the parameter (or ) is varied.


Interpretations

Smooth arg max
The Softmax function is a smooth approximation to the function: the function whose value is the index of a tuple's largest element. The name "softmax" may be misleading. Softmax is not a (that is, a smooth approximation to the function). The term "softmax" is also used for the closely related function, which is a smooth maximum. For this reason, some prefer the more accurate term "softargmax", though the term "softmax" is conventional in machine learning. This section uses the term "softargmax" for clarity.

Formally, instead of considering the arg max as a function with categorical output 1, \dots, n (corresponding to the index), consider the arg max function with representation of the output (assuming there is a unique maximum arg): \operatorname{arg\,max}(z_1,\, \dots,\, z_n) = (y_1,\, \dots,\, y_n) = (0,\, \dots,\, 0,\, 1,\, 0,\, \dots,\, 0), where the output coordinate y_i = 1 if and only if i is the arg max of (z_1, \dots, z_n), meaning z_i is the unique maximum value of (z_1,\, \dots,\, z_n). For example, in this encoding \operatorname{arg\,max}(1, 5, 10) = (0, 0, 1), since the third argument is the maximum.

This can be generalized to multiple arg max values (multiple equal z_i being the maximum) by dividing the 1 between all max args; formally where is the number of arguments assuming the maximum. For example, \operatorname{arg\,max}(1,\, 5,\, 5) = (0,\, 1/2,\, 1/2), since the second and third argument are both the maximum. In case all arguments are equal, this is simply \operatorname{arg\,max}(z, \dots, z) = (1/n, \dots, 1/n). Points with multiple arg max values are singular points (or singularities, and form the singular set) – these are the points where arg max is discontinuous (with a jump discontinuity) – while points with a single arg max are known as non-singular or regular points.

With the last expression given in the introduction, softargmax is now a smooth approximation of arg max: as , softargmax converges to arg max. There are various notions of convergence of a function; softargmax converges to arg max pointwise, meaning for each fixed input as , \sigma_\beta(\mathbf{z}) \to \operatorname{arg\,max}(\mathbf{z}). However, softargmax does not converge uniformly to arg max, meaning intuitively that different points converge at different rates, and may converge arbitrarily slowly. In fact, softargmax is continuous, but arg max is not continuous at the singular set where two coordinates are equal, while the uniform limit of continuous functions is continuous. The reason it fails to converge uniformly is that for inputs where two coordinates are almost equal (and one is the maximum), the arg max is the index of one or the other, so a small change in input yields a large change in output. For example, \sigma_\beta(1,\, 1.0001) \to (0, 1), but \sigma_\beta(1,\, 0.9999) \to (1,\, 0), and \sigma_\beta(1,\, 1) = 1/2 for all inputs: the closer the points are to the singular set (x, x), the slower they converge. However, softargmax does converge compactly on the non-singular set.

Conversely, as , softargmax converges to arg min in the same way, where here the singular set is points with two arg min values. In the language of tropical analysis, the softmax is a deformation or "quantization" of arg max and arg min, corresponding to using the instead of the max-plus semiring (respectively min-plus semiring), and recovering the arg max or arg min by taking the limit is called "tropicalization" or "dequantization".

It is also the case that, for any fixed , if one input is much larger than the others relative to the temperature, T = 1/\beta, the output is approximately the arg max. For example, a difference of 10 is large relative to a temperature of 1: \sigma(0,\, 10) := \sigma_1(0,\, 10) = \left(1/\left(1 + e^{10}\right),\, e^{10}/\left(1 + e^{10}\right)\right) \approx (0.00005,\, 0.99995) However, if the difference is small relative to the temperature, the value is not close to the arg max. For example, a difference of 10 is small relative to a temperature of 100: \sigma_{1/100}(0,\, 10) = \left(1/\left(1 + e^{1/10}\right),\, e^{1/10}/\left(1 + e^{1/10}\right)\right) \approx (0.475,\, 0.525). As , temperature goes to zero, T = 1/\beta \to 0, so eventually all differences become large (relative to a shrinking temperature), which gives another interpretation for the limit behavior.


Statistical mechanics
In statistical mechanics, the softargmax function is known as the Boltzmann distribution (or Gibbs distribution):
(2025). 9780262026178, MIT Press. .
the index set {1,\, \dots,\, k} are the microstates of the system; the inputs z_i are the energies of that state; the denominator is known as the partition function, often denoted by ; and the factor is called the (or thermodynamic beta, or inverse temperature).


Applications
The softmax function is used in various multiclass classification methods, such as multinomial logistic regression (also known as softmax regression),
(2025). 9780387310732, Springer.
multiclass linear discriminant analysis, naive Bayes classifiers, and artificial neural networks.ai-faq What is a softmax activation function? Specifically, in multinomial logistic regression and linear discriminant analysis, the input to the function is the result of distinct , and the predicted probability for the th class given a sample tuple and a weighting vector is:

P(y=j\mid \mathbf{x}) = \frac{e^{\mathbf{x}^\mathsf{T}\mathbf{w}_j}}{\sum_{k=1}^K e^{\mathbf{x}^\mathsf{T}\mathbf{w}_k}}

This can be seen as the composition of linear functions \mathbf{x} \mapsto \mathbf{x}^\mathsf{T}\mathbf{w}_1, \ldots, \mathbf{x} \mapsto \mathbf{x}^\mathsf{T}\mathbf{w}_K and the softmax function (where \mathbf{x}^\mathsf{T}\mathbf{w} denotes the inner product of \mathbf{x} and \mathbf{w}). The operation is equivalent to applying a linear operator defined by \mathbf{w} to tuples \mathbf{x}, thus transforming the original, probably highly-dimensional, input to vectors in a -dimensional space \mathbb{R}^K.


Neural networks
The standard softmax function is often used in the final layer of a neural network-based classifier. Such networks are commonly trained under a (or ) regime, giving a non-linear variant of multinomial logistic regression.

Since the function maps a tuple and a specific index i to a real value, the derivative needs to take the index into account:

\frac{\partial}{\partial q_k}\sigma(\textbf{q}, i) = \sigma(\textbf{q}, i)(\delta_{ik} - \sigma(\textbf{q}, k)).

This expression is symmetrical in the indexes i, k and thus may also be expressed as

\frac{\partial}{\partial q_k}\sigma(\textbf{q}, i) = \sigma(\textbf{q}, k)(\delta_{ik} - \sigma(\textbf{q}, i)).

Here, the is used for simplicity (cf. the derivative of a , being expressed via the function itself).

To ensure stable numerical computations subtracting the maximum value from the input tuple is common. This approach, while not altering the output or the derivative theoretically, enhances stability by directly controlling the maximum exponent value computed.

If the function is scaled with the parameter \beta, then these expressions must be multiplied by \beta.

See multinomial logit for a probability model which uses the softmax activation function.


Reinforcement learning
In the field of reinforcement learning, a softmax function can be used to convert values into action probabilities. The function commonly used is:Sutton, R. S. and Barto A. G. Reinforcement Learning: An Introduction. The MIT Press, Cambridge, MA, 1998. Softmax Action Selection P_t(a) = \frac{\exp(q_t(a)/\tau)}{\sum_{i=1}^n\exp(q_t(i)/\tau)} \text{,}

where the action value q_t(a) corresponds to the expected reward of following action a and \tau is called a temperature parameter (in allusion to statistical mechanics). For high temperatures (\tau \to \infty), all actions have nearly the same probability and the lower the temperature, the more expected rewards affect the probability. For a low temperature (\tau \to 0^+), the probability of the action with the highest expected reward tends to 1.


Computational complexity and remedies
In neural network applications, the number of possible outcomes is often large, e.g. in case of that predict the most likely outcome out of a vocabulary which might contain millions of possible words. This can make the calculations for the softmax layer (i.e. the matrix multiplications to determine the z_i, followed by the application of the softmax function itself) computationally expensive. What's more, the method for training such a neural network involves calculating the softmax for every training example, and the number of training examples can also become large. The computational effort for the softmax became a major limiting factor in the development of larger neural language models, motivating various remedies to reduce training times.

Approaches that reorganize the softmax layer for more efficient calculation include the hierarchical softmax and the differentiated softmax. The hierarchical softmax (introduced by Morin and in 2005) uses a binary tree structure where the outcomes (vocabulary words) are the leaves and the intermediate nodes are suitably selected "classes" of outcomes, forming . The desired probability (softmax value) of a leaf (outcome) can then be calculated as the product of the probabilities of all nodes on the path from the root to that leaf. Ideally, when the tree is balanced, this would reduce the computational complexity from O(K) to O(\log_2 K). In practice, results depend on choosing a good strategy for clustering the outcomes into classes. A was used for this in Google's word2vec models (introduced in 2013) to achieve scalability.

A second kind of remedies is based on approximating the softmax (during training) with modified loss functions that avoid the calculation of the full normalization factor. These include methods that restrict the normalization sum to a sample of outcomes (e.g. Importance Sampling, Target Sampling).


Numerical algorithms
The standard softmax is numerically unstable because of large exponentiations. The safe softmax method calculates instead\sigma(\mathbf{z})_i = \frac{e^{\beta (z_i-m)}}{\sum_{j=1}^K e^{\beta (z_j-m)}}where m = \max_i z_i is the largest factor involved. Subtracting by it guarantees that the exponentiations result in at most 1.

The attention mechanism in Transformers takes three arguments: a "query vector" q, a list of "key vectors" k_1, \dots, k_N, and a list of "value vectors" v_1, \dots, v_N, and outputs a softmax-weighted sum over value vectors:o = \sum_{i=1}^N \frac{e^{q^T k_i - m}}{\sum_{j=1}^N e^{q^T k_j - m}} v_iThe standard softmax method involves several loops over the inputs, which would be bottlenecked by memory bandwidth. The method is a communication-avoiding algorithm that fuses these operations into a single loop, increasing the arithmetic intensity. It is an that computes the following quantities:\begin{aligned} z_i &= q^T k_i &\\ m_i &= \max(z_1, \dots, z_i) &=& \max(m_{i-1}, z_i)\\ l_i &= e^{z_1 - m_i} + \dots + e^{z_i - m_i} &=& e^{m_{i-1}-m_i} l_{i-1} + e^{z_i - m_i}\\ o_i &= e^{z_1 - m_i} v_1 + \dots + e^{z_i - m_i}v_i &=& e^{m_{i-1}-m_i} o_{i-1} + e^{z_i - m_i}v_i \end{aligned}and returns o_N/l_N. In practice, FlashAttention operates over multiple queries and keys per loop iteration, in a similar way as blocked matrix multiplication. If is needed, then the output vectors and the intermediate arrays m_1,, l_1, are cached, and during the backward pass, attention matrices are rematerialized from these, making it a form of gradient checkpointing.


Mathematical properties
Geometrically the softmax function maps the \mathbb{R}^K to the boundary of the , cutting the dimension by one (the range is a (K - 1)-dimensional simplex in K-dimensional space), due to the linear constraint that all output sum to 1 meaning it lies on a .

Along the main diagonal (x,\, x,\, \dots,\, x), softmax is just the uniform distribution on outputs, (1/n, \dots, 1/n): equal scores yield equal probabilities.

More generally, softmax is invariant under translation by the same value in each coordinate: adding \mathbf{c} = (c,\, \dots,\, c) to the inputs \mathbf{z} yields \sigma(\mathbf{z} + \mathbf{c}) = \sigma(\mathbf{z}), because it multiplies each exponent by the same factor, e^c (because e^{z_i + c} = e^{z_i} \cdot e^c), so the ratios do not change: \sigma(\mathbf{z} + \mathbf{c})_j = \frac{e^{z_j + c}}{\sum_{k=1}^K e^{z_k + c}} = \frac{e^{z_j} \cdot e^c}{\sum_{k=1}^K e^{z_k} \cdot e^c} = \sigma(\mathbf{z})_j.

Geometrically, softmax is constant along diagonals: this is the dimension that is eliminated, and corresponds to the softmax output being independent of a translation in the input scores (a choice of 0 score). One can normalize input scores by assuming that the sum is zero (subtract the average: \mathbf{c} where c = \frac{1}{n} \sum z_i), and then the softmax takes the hyperplane of points that sum to zero, \sum z_i = 0, to the open simplex of positive values that sum to 1\sum \sigma(\mathbf{z})_i = 1, analogously to how the exponent takes 0 to 1, e^0 = 1 and is positive.

By contrast, softmax is not invariant under scaling. For instance, \sigma\bigl((0,\, 1)\bigr) = \bigl(1/(1 + e),\, e/(1 + e)\bigr) but \sigma\bigl((0, 2)\bigr) = \bigl(1/\left(1 + e^2\right),\, e^2/\left(1 + e^2\right)\bigr).

The standard logistic function is the special case for a 1-dimensional axis in 2-dimensional space, say the x-axis in the plane. One variable is fixed at 0 (say z_2 = 0), so e^0 = 1, and the other variable can vary, denote it z_1 = x, so e^{z_1}/\sum_{k=1}^2 e^{z_k} = e^x/\left(e^x + 1\right), the standard logistic function, and e^{z_2}/\sum_{k=1}^2 e^{z_k} = 1/\left(e^x + 1\right), its complement (meaning they add up to 1). The 1-dimensional input could alternatively be expressed as the line (x/2,\, -x/2), with outputs e^{x/2}/\left(e^{x/2} + e^{-x/2}\right) = e^x/\left(e^x + 1\right) and e^{-x/2}/\left(e^{x/2} + e^{-x/2}\right) = 1/\left(e^x + 1\right).


Gradients
The softmax function is also the gradient of the function:\frac{\partial}{\partial z_i} \operatorname{LSE}(\mathbf{z}) = \frac{\exp z_i}{\sum_{j=1}^{K} \exp z_j} = \sigma(\mathbf{z})_i, \quad \text{ for } i = 1, \dotsc , K, \quad \mathbf{z} = (z_1,\, \dotsc,\, z_K) \in\R^K,where the LogSumExp function is defined as \operatorname{LSE}(z_1,\, \dots,\, z_n) = \log\left(\exp(z_1) + \cdots + \exp(z_n)\right).

The gradient of softmax is thus \partial_{z_j} \sigma_i = \sigma_i (\delta_{ij} - \sigma_j).


History
The softmax function was used in statistical mechanics as the Boltzmann distribution in the foundational paper , formalized and popularized in the influential textbook .

The use of the softmax in is credited to R. Duncan Luce, who used the axiom of independence of irrelevant alternatives in rational choice theory to deduce the softmax in Luce's choice axiom for relative preferences.

In machine learning, the term "softmax" is credited to John S. Bridle in two 1989 conference papers, : and :


Example
With an input of , the softmax is approximately . The output has most of its weight where the "4" was in the original input. This is what the function is normally used for: to highlight the largest values and suppress values which are significantly below the maximum value. But note: a change of temperature changes the output. When the temperature is multiplied by 10, the inputs are effectively and the softmax is approximately . This shows that high temperatures de-emphasize the maximum value.

Computation of this example using Python code:

>>> import numpy as np >>> z = np.array(1.0,) >>> beta = 1.0 >>> np.exp(beta * z) / np.sum(np.exp(beta * z)) array([0.02364054, 0.06426166, 0.1746813, 0.474833, 0.02364054,

      0.06426166, 0.1746813])
     


Alternatives
The softmax function generates probability predictions densely distributed over its support. Other functions like or α- can be used when sparse probability predictions are desired."Speeding Up Entmax" Https://arxiv.org/abs/2111.06832v3< /ref> Also the Gumbel-softmax reparametrization trick can be used when sampling from a discrete-discrete distribution needs to be mimicked in a differentiable manner.


See also
  • Multinomial logistic regression
  • Dirichlet distribution – an alternative way to sample categorical distributions
  • Partition function
  • Exponential tilting – a generalization of Softmax to more general probability distributions


Notes
Page 1 of 1
1
Page 1 of 1
1

Account

Social:
Pages:  ..   .. 
Items:  .. 

Navigation

General: Atom Feed Atom Feed  .. 
Help:  ..   .. 
Category:  ..   .. 
Media:  ..   .. 
Posts:  ..   ..   .. 

Statistics

Page:  .. 
Summary:  .. 
1 Tags
10/10 Page Rank
5 Page Refs
1s Time