यहां क्या हो रहा है, जब मैं लॉजिस्टिक रिग्रेशन सेटिंग में स्क्वार्ड लॉस का उपयोग करता हूं?


16

मैं एक खिलौना डेटा सेट पर बाइनरी वर्गीकरण करने के लिए चुकता नुकसान का उपयोग करने की कोशिश कर रहा हूं।

मैं mtcarsट्रांसमिशन सेट की भविष्यवाणी करने के लिए डेटा सेट, गैलन प्रति मील और वजन का उपयोग कर रहा हूं । नीचे दिए गए कथानक अलग-अलग रंगों में दो प्रकार के ट्रांसमिशन प्रकार के डेटा को दिखाते हैं, और अलग-अलग हानि फ़ंक्शन द्वारा उत्पन्न निर्णय सीमा। वर्ग नुकसान हुआ है i(yipi)2 जहां yi जमीनी सच्चाई लेबल (0 या 1) और है pi भविष्यवाणी की संभावना है pi=Logit1(βTxi)। दूसरे शब्दों में, मैं वर्गीकरण सेटिंग में चुकता नुकसान के साथ लॉजिस्टिक नुकसान की जगह ले रहा हूं, अन्य भाग समान हैं।

mtcarsडेटा के साथ एक खिलौना उदाहरण के लिए , कई मामलों में, मुझे लॉजिस्टिक रिग्रेशन के लिए एक मॉडल "समान" मिला (निम्न आंकड़ा देखें, यादृच्छिक संख्या 0 के साथ)।

यहाँ छवि विवरण दर्ज करें

लेकिन सोमेथिंग्स में (यदि हम करते हैं set.seed(1) ), चुकता नुकसान अच्छी तरह से काम नहीं कर रहा है। यहाँ छवि विवरण दर्ज करें यहां क्या हो रहा है? अनुकूलन नहीं करता है? स्क्वैयर लॉस की तुलना में लॉजिस्टिक लॉस को ऑप्टिमाइज़ करना आसान है? किसी भी सहायता की सराहना की जाएगी।


कोड

d=mtcars[,c("am","mpg","wt")]
plot(d$mpg,d$wt,col=factor(d$am))
lg_fit=glm(am~.,d, family = binomial())
abline(-lg_fit$coefficients[1]/lg_fit$coefficients[3],
       -lg_fit$coefficients[2]/lg_fit$coefficients[3])
grid()

# sq loss
lossSqOnBinary<-function(x,y,w){
  p=plogis(x %*% w)
  return(sum((y-p)^2))
}

# ----------------------------------------------------------------
# note, this random seed is important for squared loss work
# ----------------------------------------------------------------
set.seed(0)

x0=runif(3)
x=as.matrix(cbind(1,d[,2:3]))
y=d$am
opt=optim(x0, lossSqOnBinary, method="BFGS", x=x,y=y)

abline(-opt$par[1]/opt$par[3],
       -opt$par[2]/opt$par[3], lty=2)
legend(25,5,c("logisitc loss","squared loss"), lty=c(1,2))

1
शायद यादृच्छिक शुरुआती मूल्य एक गरीब है। एक बेहतर चयन क्यों नहीं?
whuber

1
@whuber लॉजिस्टिक लॉस उत्तल है, इसलिए शुरू करने से कोई फर्क नहीं पड़ता। पी और वाई पर चुकता नुकसान के बारे में क्या? क्या यह उत्तल है?
हायतौ डू

5
आप जो वर्णन करते हैं, मैं उसे पुन: प्रस्तुत करने में असमर्थ हूं। optimआपको बताता है कि यह समाप्त नहीं हुआ है, बस इतना ही है: यह अभिसरण है। आप अतिरिक्त तर्क के साथ अपने कोड को फिर से व्यवस्थित करके control=list(maxit=10000), इसके फिट की साजिश रचने और इसके गुणांक की मूल लोगों से तुलना करके बहुत कुछ सीख सकते हैं।
whuber

2
@amoeba आपकी टिप्पणियों के लिए धन्यवाद, मैंने प्रश्न को संशोधित किया। उम्मीद है कि यह बेहतर है।
डू

@amoeba मैं किंवदंती को संशोधित करूंगा, लेकिन यह कथन ठीक नहीं होगा (3)? "मैं ट्रांसमिशन सेट का अनुमान लगाने के लिए mtcars डेटा सेट का उपयोग कर रहा हूं, मील प्रति गैलन और वजन का उपयोग करता हूं। नीचे दिए गए प्लॉट विभिन्न रंगों में दो प्रकार के ट्रांसमिशन प्रकार के डेटा और निर्णय सीमा को अलग-अलग हानि फ़ंक्शन द्वारा उत्पन्न दिखाता है।"
हेतो दू

जवाबों:


19

ऐसा लगता है कि आपने अपने विशेष उदाहरण में मुद्दा तय कर लिया है, लेकिन मुझे लगता है कि यह अभी भी कम से कम वर्गों और अधिकतम संभावना लॉजिस्टिक प्रतिगमन के बीच के अंतर का अधिक सावधानीपूर्वक अध्ययन करने के लायक है।

चलो कुछ संकेतन मिलता है। Let LS(yi,y^i)=12(yiy^i)2औरLL(yi,y^i)=yilogy^i+(1yi)log(1y^i)। हम अधिक से अधिक संभावना (या के रूप में मैं यहाँ कर रहा हूँ कम से कम नकारात्मक लॉग संभावना) कर रहे हैं, हमारे पास β एल:=argminपी एन Σ मैं

β^L:=argminbRpi=1nyilogg1(xiTb)+(1yi)log(1g1(xiTb))
के साथg हमारे लिंक समारोह किया जा रहा है।

वैकल्पिक रूप से हमारे पास β एस : = argmin आर पी 1

β^S:=argminbRp12i=1n(yig1(xiTb))2
कम से कम वर्गों समाधान के रूप में। इस प्रकार β एसको कम करता हैएलएसऔर इसी के लिएएलएलβ^SLSLL

चलो fS और fL को न्यूनतम करने के लिए इसी उद्देश्य कार्यों हो LS और LL क्रमशः के रूप में के लिए किया जाता है β एसβ^S और β एल । अंत में, चलो = जी - 1 तो y मैं = ( एक्स टी मैं) । ध्यान दें कि यदि हम विहित लिंक का उपयोग कर रहे हैं तो हमें h ( z ) = 1 मिला हैβ^Lh=g1y^i=h(xiTb)

h(z)=11+ezh(z)=h(z)(1h(z)).


fLbj=i=1nh(xiTb)xij(yih(xiTb)1yi1h(xiTb)).
h=h(1h)
fLbj=i=1nxij(yi(1y^i)(1yi)y^i)=i=1nxij(yiy^i)
fL(b)=XT(YY^).

आगे दूसरा डेरिवेटिव करते हैं। हेसियन

HL:=2fLbjbk=i=1nxijxiky^i(1y^i).
HL=XTAXA=diag(Y^(1Y^))HLY^YHLb


आइए इसकी तुलना कम से कम वर्गों से करें।

fSbj=i=1n(yiy^i)h(xiTb)xij.

fS(b)=XTA(YY^).
i y^i(1y^i)(0,1)fL

हेसियन के लिए हम पहले लिख सकते हैं

fSbj=i=1nxij(yiy^i)y^i(1y^i)=i=1nxij(yiy^i(1+yi)y^i2+y^i3).

HS:=2fSbjbk=i=1nxijxikh(xiTb)(yi2(1+yi)y^i+3y^i2).

Let B=diag(yi2(1+yi)y^i+3y^i2). We now have

HS=XTABX.

Unfortunately for us, the weights in B are not guaranteed to be non-negative: if yi=0 then yi2(1+yi)y^i+3y^i2=y^i(3y^i2) which is positive iff y^i>23. Similarly, if yi=1 then yi2(1+yi)y^i+3y^i2=14y^i+3y^i2 which is positive when y^i<13 (it's also positive for y^i>1 but that's not possible). This means that HS is not necessarily PSD, so not only are we squashing our gradients which will make learning harder, but we've also messed up the convexity of our problem.


All in all, it's no surprise that least squares logistic regression struggles sometimes, and in your example you've got enough fitted values close to 0 or 1 so that y^i(1y^i) can be pretty small and thus the gradient is quite flattened.

Connecting this to neural networks, even though this is but a humble logistic regression I think with squared loss you're experiencing something like what Goodfellow, Bengio, and Courville are referring to in their Deep Learning book when they write the following:

One recurring theme throughout neural network design is that the gradient of the cost function must be large and predictable enough to serve as a good guide for the learning algorithm. Functions that saturate (become very flat) undermine this objective because they make the gradient become very small. In many cases this happens because the activation functions used to produce the output of the hidden units or the output units saturate. The negative log-likelihood helps to avoid this problem for many models. Many output units involve an exp function that can saturate when its argument is very negative. The log function in the negative log-likelihood cost function undoes the exp of some output units. We will discuss the interaction between the cost function and the choice of output unit in Sec. 6.2.2.

and, in 6.2.2,

Unfortunately, mean squared error and mean absolute error often lead to poor results when used with gradient-based optimization. Some output units that saturate produce very small gradients when combined with these cost functions. This is one reason that the cross-entropy cost function is more popular than mean squared error or mean absolute error, even when it is not necessary to estimate an entire distribution p(y|x).

(both excerpts are from chapter 6).


1
I really like you helped me to derive the derivative and hessian. I will check it more careful tomorrow.
Haitao Du

1
@hxd1011 you're very welcome, and thanks for the link to that older question of yours! I've really been meaning to go through this more carefully so this was a great excuse :)
jld

1
I carefully read the math and verified with code. I found Hessian for squared loss does not match the numerical approximation. Could you check it? I am more than happy to show you the code if you want.
Haitao Du

@hxd1011 I just went through the derivation again and I think there's a sign error: for HS I think everywhere that I have yi2(1yi)y^i+3y^i2 it should be yi2(1+yi)y^i+3y^i2. Could you recheck and tell me if that fixes it? Thanks a lot for the correction.
jld

@hxd1011 glad that fixed it! thanks again for finding that
jld

5

I would thank to thank @whuber and @Chaconne for help. Especially @Chaconne, this derivation is what I wished to have for years.

The problem IS in the optimization part. If we set the random seed to 1, the default BFGS will not work. But if we change the algorithm and change the max iteration number it will work again.

As @Chaconne mentioned, the problem is squared loss for classification is non-convex and harder to optimize. To add on @Chaconne's math, I would like to present some visualizations on to logistic loss and squared loss.

We will change the demo data from mtcars, since the original toy example has 3 coefficients including the intercept. We will use another toy data set generated from mlbench, in this data set, we set 2 parameters, which is better for visualization.

Here is the demo

  • The data is shown in the left figure: we have two classes in two colors. x,y are two features for the data. In addition, we use red line to represent the linear classifier from logistic loss, and the blue line represent the linear classifier from squared loss.

  • The middle figure and right figure shows the contour for logistic loss (red) and squared loss (blue). x, y are two parameters we are fitting. The dot is the optimal point found by BFGS.

enter image description here

From the contour we can easily see how why optimizing squared loss is harder: as Chaconne mentioned, it is non-convex.

Here is one more view from persp3d.

enter image description here


Code

set.seed(0)
d=mlbench::mlbench.2dnormals(50,2,r=1)
x=d$x
y=ifelse(d$classes==1,1,0)

lg_loss <- function(w){
  p=plogis(x %*% w)
  L=-y*log(p)-(1-y)*log(1-p)
  return(sum(L))
}
sq_loss <- function(w){
  p=plogis(x %*% w)
  L=sum((y-p)^2)
  return(L)
}

w_grid_v=seq(-15,15,0.1)
w_grid=expand.grid(w_grid_v,w_grid_v)

opt1=optimx::optimx(c(1,1),fn=lg_loss ,method="BFGS")
z1=matrix(apply(w_grid,1,lg_loss),ncol=length(w_grid_v))

opt2=optimx::optimx(c(1,1),fn=sq_loss ,method="BFGS")
z2=matrix(apply(w_grid,1,sq_loss),ncol=length(w_grid_v))

par(mfrow=c(1,3))
plot(d,xlim=c(-3,3),ylim=c(-3,3))
abline(0,-opt1$p2/opt1$p1,col='darkred',lwd=2)
abline(0,-opt2$p2/opt2$p1,col='blue',lwd=2)
grid()
contour(w_grid_v,w_grid_v,z1,col='darkred',lwd=2, nlevels = 8)
points(opt1$p1,opt1$p2,col='darkred',pch=19)
grid()
contour(w_grid_v,w_grid_v,z2,col='blue',lwd=2, nlevels = 8)
points(opt2$p1,opt2$p2,col='blue',pch=19)
grid()


# library(rgl)
# persp3d(w_grid_v,w_grid_v,z1,col='darkred')

2
I don't see any non-convexity on the third subplot of your first figure...
amoeba says Reinstate Monica

@amoeba I thought convex contour is more like ellipse, two U shaped curve back to back is non-convex, is that right?
Haitao Du

2
No, why? Maybe it's a part of a larger ellipse-like contour? I mean, it might very well be non-convex, I am just saying that I do not see it on this particular figure.
amoeba says Reinstate Monica
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.