Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Cross-entropy

From Wikipedia, the free encyclopedia
(Redirected fromLog loss)
Information-theoretic measure
Information theory

Ininformation theory, thecross-entropy between twoprobability distributionsp{\displaystyle p} andq{\displaystyle q}, over the same underlying set of events, measures the average number ofbits needed to identify an event drawn from the set when the coding scheme used for the set is optimized for an estimated probability distributionq{\displaystyle q}, rather than the true distributionp{\displaystyle p}.

Definition

[edit]

The cross-entropy of the distributionq{\displaystyle q} relative to a distributionp{\displaystyle p} over a given set is defined as follows:

H(p,q)=Ep[logq],{\displaystyle H(p,q)=-\operatorname {E} _{p}[\log q],}

whereEp[]{\displaystyle E_{p}[\cdot ]} is theexpected value operator with respect to the distributionp{\displaystyle p}.

The definition may be formulated using theKullback–Leibler divergenceDKL(pq){\displaystyle D_{\mathrm {KL} }(p\parallel q)}, divergence ofp{\displaystyle p} fromq{\displaystyle q} (also known as therelative entropy ofp{\displaystyle p} with respect toq{\displaystyle q}).

H(p,q)=H(p)+DKL(pq),{\displaystyle H(p,q)=H(p)+D_{\mathrm {KL} }(p\parallel q),}

whereH(p){\displaystyle H(p)} is theentropy ofp{\displaystyle p}.

Fordiscrete probability distributionsp{\displaystyle p} andq{\displaystyle q} with the samesupportX{\displaystyle {\mathcal {X}}}, this means

H(p,q)=xXp(x)logq(x).{\displaystyle H(p,q)=-\sum _{x\in {\mathcal {X}}}p(x)\,\log q(x).}   (Eq.1)

The situation forcontinuous distributions is analogous. We have to assume thatp{\displaystyle p} andq{\displaystyle q} areabsolutely continuous with respect to some referencemeasurer{\displaystyle r} (usuallyr{\displaystyle r} is aLebesgue measure on aBorelσ-algebra). LetP{\displaystyle P} andQ{\displaystyle Q} be probability density functions ofp{\displaystyle p} andq{\displaystyle q} with respect tor{\displaystyle r}. Then

XP(x)logQ(x)dx=Ep[logQ],{\displaystyle -\int _{\mathcal {X}}P(x)\,\log Q(x)\,\mathrm {d} x=\operatorname {E} _{p}[-\log Q],}

and therefore

H(p,q)=XP(x)logQ(x)dx.{\displaystyle H(p,q)=-\int _{\mathcal {X}}P(x)\,\log Q(x)\,\mathrm {d} x.}   (Eq.2)

NB: The notationH(p,q){\displaystyle H(p,q)} is also used for a different concept, thejoint entropy ofp{\displaystyle p} andq{\displaystyle q}.

Motivation

[edit]

Ininformation theory, theKraft–McMillan theorem establishes that any directly decodable coding scheme for coding a message to identify one valuexi{\displaystyle x_{i}} out of a set of possibilities{x1,,xn}{\displaystyle \{x_{1},\ldots ,x_{n}\}} can be seen as representing an implicit probability distributionq(xi)=(12)i{\displaystyle q(x_{i})=\left({\frac {1}{2}}\right)^{\ell _{i}}} over{x1,,xn}{\displaystyle \{x_{1},\ldots ,x_{n}\}}, wherei{\displaystyle \ell _{i}} is the length of the code forxi{\displaystyle x_{i}} in bits. Therefore, cross-entropy can be interpreted as the expected message-length per datum when a wrong distributionq{\displaystyle q} is assumed while the data actually follows a distributionp{\displaystyle p}. That is why the expectation is taken over the true probability distributionp{\displaystyle p} and notq.{\displaystyle q.} Indeed the expected message-length under the true distributionp{\displaystyle p} is

Ep[]=Ep[lnq(x)ln(2)]{\displaystyle \operatorname {E} _{p}[\ell ]=-\operatorname {E} _{p}\left[{\frac {\ln {q(x)}}{\ln(2)}}\right]}=Ep[log2q(x)]=xip(xi)log2q(xi){\displaystyle =-\operatorname {E} _{p}\left[\log _{2}{q(x)}\right]=-\sum _{x_{i}}p(x_{i})\,\log _{2}q(x_{i})}=xp(x)log2q(x)=H(p,q).{\displaystyle =-\sum _{x}p(x)\,\log _{2}q(x)=H(p,q).}

Estimation

[edit]

There are many situations where cross-entropy needs to be measured but the distribution ofp{\displaystyle p} is unknown. An example islanguage modeling, where a model is created based on a training setT{\displaystyle T}, and then its cross-entropy is measured on a test set to assess how accurate the model is in predicting the test data. In this example,p{\displaystyle p} is the true distribution of words in any corpus, andq{\displaystyle q} is the distribution of words as predicted by the model. Since the true distribution is unknown, cross-entropy cannot be directly calculated. In these cases, an estimate of cross-entropy is calculated using the following formula:

H(T,q)=i=1N1Nlog2q(xi){\displaystyle H(T,q)=-\sum _{i=1}^{N}{\frac {1}{N}}\log _{2}q(x_{i})}

whereN{\displaystyle N} is the size of the test set, andq(x){\displaystyle q(x)} is the probability of eventx{\displaystyle x} estimated from the training set. In other words,q(xi){\displaystyle q(x_{i})} is the probability estimate of the model that the i-th word of the text isxi{\displaystyle x_{i}}. The sum is averaged over theN{\displaystyle N} words of the test. This is aMonte Carlo estimate of the true cross-entropy, where the test set is treated as samples fromp(x){\displaystyle p(x)}.[citation needed]

Relation to maximum likelihood

[edit]

The cross entropy arises in classification problems when introducing a logarithm in the guise of thelog-likelihood function.

The section is concerned with the subject of estimation of the probability of different possible discrete outcomes. To this end, denote a parametrized family of distributions byqθ{\displaystyle q_{\theta }}, withθ{\displaystyle \theta } subject to the optimization effort. Consider a given finite sequence ofN{\displaystyle N} valuesxi{\displaystyle x_{i}} from a training set, obtained fromconditionally independent sampling. The likelihood assigned to any considered parameterθ{\displaystyle \theta } of the model is then given by the product over all probabilitiesqθ(X=xi){\displaystyle q_{\theta }(X=x_{i})}.Repeated occurrences are possible, leading to equal factors in the product. If the count of occurrences of the value equal toxi{\displaystyle x_{i}} (for some indexi{\displaystyle i}) is denoted by#xi{\displaystyle \#x_{i}}, then the frequency of that value equals#xi/N{\displaystyle \#x_{i}/N}. Denote the latter byp(X=xi){\displaystyle p(X=x_{i})}, as it may be understood as empirical approximation to the probability distribution underlying the scenario. Further denote byPP:=eH(p,qθ){\displaystyle PP:={\mathrm {e} }^{H(p,q_{\theta })}} theperplexity, which can be seen to equalxiqθ(X=xi)p(X=xi){\textstyle \prod _{x_{i}}q_{\theta }(X=x_{i})^{-p(X=x_{i})}} by thecalculation rules for the logarithm, and where the product is over the values without double counting. SoL(θ;x)=iqθ(X=xi)=xiqθ(X=xi)#xi=PPN=eNH(p,qθ){\displaystyle {\mathcal {L}}(\theta ;{\mathbf {x} })=\prod _{i}q_{\theta }(X=x_{i})=\prod _{x_{i}}q_{\theta }(X=x_{i})^{\#x_{i}}=PP^{-N}={\mathrm {e} }^{-N\cdot H(p,q_{\theta })}}orlogL(θ;x)=NH(p,qθ).{\displaystyle \log {\mathcal {L}}(\theta ;{\mathbf {x} })=-N\cdot H(p,q_{\theta }).}Since the logarithm is amonotonically increasing function, it does not affect extremization. So observe that thelikelihood maximization amounts to minimization of the cross-entropy.

Cross-entropy minimization

[edit]
Main article:Cross-entropy method

Cross-entropy minimization is frequently used in optimization and rare-event probability estimation. When comparing a distributionq{\displaystyle q} against a fixed reference distributionp{\displaystyle p}, cross-entropy andKL divergence are identical up to an additive constant (sincep{\displaystyle p} is fixed): According to theGibbs' inequality, both take on their minimal values whenp=q{\displaystyle p=q}, which is0{\displaystyle 0} for KL divergence, andH(p){\displaystyle \mathrm {H} (p)} for cross-entropy. In the engineering literature, the principle of minimizing KL divergence (Kullback's "Principle of Minimum Discrimination Information") is often called thePrinciple of Minimum Cross-Entropy (MCE), orMinxent.

However, as discussed in the articleKullback–Leibler divergence, sometimes the distributionq{\displaystyle q} is the fixed prior reference distribution, and the distributionp{\displaystyle p} is optimized to be as close toq{\displaystyle q} as possible, subject to some constraint. In this case the two minimizations arenot equivalent. This has led to some ambiguity in the literature, with some authors attempting to resolve the inconsistency by restating cross-entropy to beDKL(pq){\displaystyle D_{\mathrm {KL} }(p\parallel q)}, rather thanH(p,q){\displaystyle H(p,q)}. In fact, cross-entropy is another name forrelative entropy; see Cover and Thomas[1] and Good.[2] On the other hand,H(p,q){\displaystyle H(p,q)} does not agree with the literature and can be misleading.

Cross-entropy loss function and logistic regression

[edit]

Cross-entropy can be used to define a loss function inmachine learning andoptimization. Mao, Mohri, and Zhong (2023) give an extensive analysis of the properties of the family of cross-entropy loss functions in machine learning, including theoretical learning guarantees and extensions toadversarial learning.[3] The true probabilitypi{\displaystyle p_{i}} is the true label, and the given distributionqi{\displaystyle q_{i}} is the predicted value of the current model. This is also known as thelog loss (orlogarithmic loss[4] orlogistic loss);[5] the terms "log loss" and "cross-entropy loss" are used interchangeably.[6]

More specifically, consider abinary regression model which can be used to classify observations into two possible classes (often simply labelled0{\displaystyle 0} and1{\displaystyle 1}). The output of the model for a given observation, given a vector of input featuresx{\displaystyle x}, can be interpreted as a probability, which serves as the basis for classifying the observation. Inlogistic regression, the probability is modeled using thelogistic functiong(z)=1/(1+ez){\displaystyle g(z)=1/(1+e^{-z})} wherez{\displaystyle z} is some function of the input vectorx{\displaystyle x}, commonly just a linear function. The probability of the outputy=1{\displaystyle y=1} is given byqy=1=y^g(wx)=11+ewx,{\displaystyle q_{y=1}={\hat {y}}\equiv g(\mathbf {w} \cdot \mathbf {x} )={\frac {1}{1+e^{-\mathbf {w} \cdot \mathbf {x} }}},}where the vector of weightsw{\displaystyle \mathbf {w} } is optimized through some appropriate algorithm such asgradient descent. Similarly, the complementary probability of finding the outputy=0{\displaystyle y=0} is simply given byqy=0=1y^.{\displaystyle q_{y=0}=1-{\hat {y}}.}

Having set up our notation,p{y,1y}{\displaystyle p\in \{y,1-y\}} andq{y^,1y^}{\displaystyle q\in \{{\hat {y}},1-{\hat {y}}\}}, we can use cross-entropy to get a measure of dissimilarity betweenp{\displaystyle p} andq{\displaystyle q}:H(p,q) = ipilogqi = ylogy^(1y)log(1y^).{\displaystyle H(p,q)\ =\ -\sum _{i}p_{i}\log q_{i}\ =\ -y\log {\hat {y}}-(1-y)\log(1-{\hat {y}}).}

Plot shows different loss functions that can be used to train a binary classifier. Only the case where the target output is 1 is shown. It is observed that the loss is zero when the target is equal to the output and increases as the output becomes increasingly incorrect.

Logistic regression typically optimizes the log loss for all the observations on which it is trained, which is the same as optimizing the average cross-entropy in the sample. Other loss functions that penalize errors differently can be also used for training, resulting in models with different final test accuracy.[7] For example, suppose we haveN{\displaystyle N} samples with each sample indexed byn=1,,N{\displaystyle n=1,\dots ,N}. Theaverage of the loss function is then given by:

J(w) = 1Nn=1NH(pn,qn) = 1Nn=1N [ynlogy^n+(1yn)log(1y^n)],{\displaystyle J(\mathbf {w} )\ =\ {\frac {1}{N}}\sum _{n=1}^{N}H(p_{n},q_{n})\ =\ -{\frac {1}{N}}\sum _{n=1}^{N}\ {\bigg [}y_{n}\log {\hat {y}}_{n}+(1-y_{n})\log(1-{\hat {y}}_{n}){\bigg ]}\,,}

wherey^ng(wxn)=1/(1+ewxn){\displaystyle {\hat {y}}_{n}\equiv g(\mathbf {w} \cdot \mathbf {x} _{n})=1/(1+e^{-\mathbf {w} \cdot \mathbf {x} _{n}})}, withg(z){\displaystyle g(z)} the logistic function as before.

The logistic loss is sometimes called cross-entropy loss. It is also known as log loss.[duplication?] (In this case, the binary label is often denoted by {−1,+1}.[8])

Remark: The gradient of the cross-entropy loss for logistic regression is the same as the gradient of the squared-error loss forlinear regression. That is, define

XT=(1x11x1p1x21x2p1xn1xnp)Rn×(p+1),{\displaystyle X^{\mathsf {T}}={\begin{pmatrix}1&x_{11}&\dots &x_{1p}\\1&x_{21}&\cdots &x_{2p}\\\vdots &\vdots &&\vdots \\1&x_{n1}&\cdots &x_{np}\\\end{pmatrix}}\in \mathbb {R} ^{n\times (p+1)},}yi^=f^(xi1,,xip)=11+exp(β0β1xi1βpxip),{\displaystyle {\hat {y_{i}}}={\hat {f}}(x_{i1},\dots ,x_{ip})={\frac {1}{1+\exp(-\beta _{0}-\beta _{1}x_{i1}-\dots -\beta _{p}x_{ip})}},}L(β)=i=1N[yilogy^i+(1yi)log(1y^i)].{\displaystyle L({\boldsymbol {\beta }})=-\sum _{i=1}^{N}\left[y_{i}\log {\hat {y}}_{i}+(1-y_{i})\log(1-{\hat {y}}_{i})\right].}

Then we have the result

βL(β)=XT(Y^Y).{\displaystyle {\frac {\partial }{\partial {\boldsymbol {\beta }}}}L({\boldsymbol {\beta }})=X^{T}({\hat {Y}}-Y).}

The proof is as follows. For anyy^i{\displaystyle {\hat {y}}_{i}}, we have

β0ln11+eβ0+k0=eβ0+k01+eβ0+k0,{\displaystyle {\frac {\partial }{\partial \beta _{0}}}\ln {\frac {1}{1+e^{-\beta _{0}+k_{0}}}}={\frac {e^{-\beta _{0}+k_{0}}}{1+e^{-\beta _{0}+k_{0}}}},}β0ln(111+eβ0+k0)=11+eβ0+k0,{\displaystyle {\frac {\partial }{\partial \beta _{0}}}\ln \left(1-{\frac {1}{1+e^{-\beta _{0}+k_{0}}}}\right)={\frac {-1}{1+e^{-\beta _{0}+k_{0}}}},}β0L(β)=i=1N[yieβ0+k01+eβ0+k0(1yi)11+eβ0+k0]=i=1N[yiy^i]=i=1N(y^iyi),{\displaystyle {\begin{aligned}{\frac {\partial }{\partial \beta _{0}}}L({\boldsymbol {\beta }})&=-\sum _{i=1}^{N}\left[{\frac {y_{i}\cdot e^{-\beta _{0}+k_{0}}}{1+e^{-\beta _{0}+k_{0}}}}-(1-y_{i}){\frac {1}{1+e^{-\beta _{0}+k_{0}}}}\right]\\&=-\sum _{i=1}^{N}\left[y_{i}-{\hat {y}}_{i}\right]=\sum _{i=1}^{N}({\hat {y}}_{i}-y_{i}),\end{aligned}}}β1ln11+eβ1xi1+k1=xi1ek1eβ1xi1+ek1,{\displaystyle {\frac {\partial }{\partial \beta _{1}}}\ln {\frac {1}{1+e^{-\beta _{1}x_{i1}+k_{1}}}}={\frac {x_{i1}e^{k_{1}}}{e^{\beta _{1}x_{i1}}+e^{k_{1}}}},}β1ln[111+eβ1xi1+k1]=xi1eβ1xi1eβ1xi1+ek1,{\displaystyle {\frac {\partial }{\partial \beta _{1}}}\ln \left[1-{\frac {1}{1+e^{-\beta _{1}x_{i1}+k_{1}}}}\right]={\frac {-x_{i1}e^{\beta _{1}x_{i1}}}{e^{\beta _{1}x_{i1}}+e^{k_{1}}}},}β1L(β)=i=1Nxi1(yiy^i)=i=1Nxi1(y^iyi).{\displaystyle {\frac {\partial }{\partial \beta _{1}}}L({\boldsymbol {\beta }})=-\sum _{i=1}^{N}x_{i1}(y_{i}-{\hat {y}}_{i})=\sum _{i=1}^{N}x_{i1}({\hat {y}}_{i}-y_{i}).}

In a similar way, we eventually obtain the desired result.

Amended cross-entropy

[edit]

It may be beneficial to train an ensemble of models that have diversity, such that when they are combined, their predictive accuracy is augmented.[9][10]Assuming a simple ensemble ofK{\displaystyle K} classifiers is assembled via averaging the outputs, then the amended cross-entropy is given byek=H(p,qk)λKjkH(qj,qk){\displaystyle e^{k}=H(p,q^{k})-{\frac {\lambda }{K}}\sum _{j\neq k}H(q^{j},q^{k})}whereek{\displaystyle e^{k}} is the cost function of thekth{\displaystyle k^{th}} classifier,qk{\displaystyle q^{k}} is the output probability of thekth{\displaystyle k^{th}} classifier,p{\displaystyle p} is the true probability to be estimated, andλ{\displaystyle \lambda } is a parameter between 0 and 1 that defines the 'diversity' that we would like to establish among the ensemble. Whenλ=0{\displaystyle \lambda =0} we want each classifier to do its best regardless of the ensemble and whenλ=1{\displaystyle \lambda =1} we would like the classifier to be as diverse as possible.

See also

[edit]

References

[edit]
  1. ^Thomas M. Cover, Joy A. Thomas, Elements of Information Theory, 2nd Edition, Wiley, p. 80
  2. ^I. J. Good, Maximum entropy for hypothesis formulation, especially for multidimensional contingency tables, Ann. of Math. Statistics, 1963
  3. ^Anqi Mao, Mehryar Mohri, Yutao Zhong. Cross-entropy loss functions: Theoretical analysis and applications. ICML 2023.https://arxiv.org/pdf/2304.07288.pdf
  4. ^The Mathematics of Information Coding, Extraction and Distribution, by George Cybenko, Dianne P. O'Leary, Jorma Rissanen, 1999,p. 82
  5. ^Probability for Machine Learning: Discover How To Harness Uncertainty With Python, Jason Brownlee, 2019, p. 220: "Logistic loss refers to the loss function commonly used to optimize a logistic regression model. It may also be referred to as logarithmic loss (which is confusing) or simply log loss."
  6. ^sklearn.metrics.log_loss
  7. ^Noel, Mathew; Banerjee, Arindam; D, Geraldine Bessie Amali; Muthiah-Nakarajan, Venkataraman (March 17, 2023). "Alternate loss functions for classification and robust regression can improve the accuracy of artificial neural networks".arXiv:2303.09935 [cs.NE].
  8. ^Murphy, Kevin (2012).Machine Learning: A Probabilistic Perspective. MIT.ISBN 978-0262018029.
  9. ^Shoham, Ron; Permuter, Haim H. (2019). "Amended Cross-Entropy Cost: An Approach for Encouraging Diversity in Classification Ensemble (Brief Announcement)". In Dolev, Shlomi; Hendler, Danny; Lodha, Sachin; Yung, Moti (eds.).Cyber Security Cryptography and Machine Learning – Third International Symposium, CSCML 2019, Beer-Sheva, Israel, June 27–28, 2019, Proceedings. Lecture Notes in Computer Science. Vol. 11527. Springer. pp. 202–207.doi:10.1007/978-3-030-20951-3_18.ISBN 978-3-030-20950-6.
  10. ^Shoham, Ron; Permuter, Haim (2020). "Amended Cross Entropy Cost: Framework For Explicit Diversity Encouragement".arXiv:2007.08140 [cs.LG].

Further reading

[edit]
Retrieved from "https://en.wikipedia.org/w/index.php?title=Cross-entropy&oldid=1257391633#Cross-entropy_loss_function_and_logistic_regression"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp