Multi-class Logistic Regression
- 1. softmax函数
- 2. 与二元Logistic回归的关系
- 3. 误差函数
- 3.1 多元回归的1-of-K表示(one-hot)
- 3.2 训练样本集的似然函数
- 3.3 交叉熵误差函数
- 4. 最大似然估计
- 代码实现(mnist数据集)
在 摘记 一文中对二元回归进行了详细的介绍,本文主要描述采用 函数实现多元回归:这实际上是用一个(不含隐藏层的)单层神经网络来实现多元分类,其输出函数采用的是 函数。
1. softmax函数
对于某个输入 ,其对应的 输出为向量值 ,且满足 。
分类问题 中使用 函数 表示输出值分量:
此处,其实是采用激活函数为softmax的感知器模型:
对于多元Logistic回归
:
其中,
若记 和 ,则
【为了方便描述】可以略掉 ‘’ 号,直接写成:
将输出值分量 描述成后验概率的形式:
2. 与二元Logistic回归的关系
对比
二元Logistic回归
- 为正例的概率:
- 为负例的概率:
当 时, 函数实际上等同于二元 回归(假设 ):
令 ,那么类后验概率就是二元 回归中情形。
3. 误差函数
针对多元Logistic回归
,首先要写出其误差函数。
假设训练样本集为 ,其中 ,参数为 。
二元Logistic回归
假设训练样本为 ,其中 ,似然函数为:
取“负的对数似然函数”作为误差函数,即:。
3.1 多元回归的1-of-K表示(one-hot)
用变量 表示输入
引入目标向量 ,满足
表示“输入 属于第 类” 或者说变量
用向量值 表示输入 所对应的输出
显然,
3.2 训练样本集的似然函数
对于第 个训练样本 ,其 输出为 ,且
训练样本集 的似然函数
3.3 交叉熵误差函数
定义训练样本集 的交叉熵误差函数
使用交叉熵作为误差函数,是因为:
若训练样本 的类别 ,则对应的目标向量 只有第 个分量 ,而其他分量 。
在训练过程中, 是训练样本 所对应 输出的第 个分量(训练样本的正确类别
如果正确类别 越大,
理想情况下,正确类别 ,那么交叉熵为 ,也就是没有训练误差。
也可以采用均方误差
4. 最大似然估计
为了求出参数 ,同样采用最大似然估计。
可以将训练样本集分成 个子集 ,第 个子集 中的所有样本 的类别都为 ,对应的目标向量 都满足 ,由误差函数的表达式:
对 求参数 的偏导分为两个部分:
对 的第 个分量 求参数
对 的第 个分量 求参数
综合起来,两个公式可以表示为:
采用梯度下降法时,权值更新公式为:
其中 为梯度下降法的步长。
代码实现(mnist数据集)
import numpy as np
from dataset.mnist import load_mnist
def softmax_train(train,target,alpha,num):
xhat = np.concatenate((train,np.ones((len(train),1))),axis=1)
nparam = len(xhat.T) #785
beta = np.random.rand(nparam,10) #785x10
for i in range(num):
wtx = np.dot(xhat,beta)
wtx1 = wtx - np.max(wtx,axis=1).reshape(len(train),1)
e_wtx = np.exp(wtx1)
yx = e_wtx/np.sum(e_wtx,axis=1).reshape(len(xhat),1)
print(' #'+str(i+1)+' : '+str(cross_entropy(yx,target)))
t1 = target - yx
t2 = np.dot(xhat.T, t1)
beta = beta + alpha*t2
return beta
def cross_entropy(yx,t):
sum1 = np.sum(yx*t,axis=1)
ewx = np.log(sum1+0.000001)
return -np.sum(ewx)/len(yx)
def classification(test, beta, test_t):
xhat = np.concatenate((test,np.ones((len(test),1))),axis=1)
wtx = np.dot(xhat,beta)
output = np.where(wtx==np.max(wtx,axis=1).reshape((len(test),1)))[1]
print("Percentage Correct: ",np.where(output==test_t)[0].shape[0]/len(test))
return np.array(output,dtype=np.uint8)
if __name__ == '__main__':
(x_train, t_train), (x_test, t_test) = load_mnist(flatten=True, normalize=False)
nread = 60000
train_in = x_train[:nread,:]
train_tgt = np.zeros((nread,10))
test_in = x_test[:10000,:]
test_t = t_test[:10000]
for i in range(nread):
train_tgt[i,t_train[i]] = 1
beta = softmax_train(train_in,train_tgt,0.001,60)
print(beta)
result = classification(test_in, beta, test_t)
测试结果:
#1 : 5.626381119337011
#2 : 5.415158063701459
#3 : 10.959830171565791
#4 : 8.062787294189338
#5 : 7.4643357380759765
#6 : 9.070059164063883
#7 : 9.81079287953052
#8 : 7.13921201579068
#9 : 7.176904417794094
#10 : 4.607102717465571
#11 : 3.9215536116316625
#12 : 4.199011112147004
#13 : 4.135313269465135
#14 : 3.214738972020379
#15 : 2.804664146283606
#16 : 2.901161881757491
#17 : 2.9996749271603456
#18 : 2.609904566490558
#19 : 2.6169338357951197
#20 : 2.538795429964946
#21 : 2.7159497447897256
#22 : 2.634980803678192
#23 : 2.974848646434367
#24 : 3.1286179795674154
#25 : 3.2208869228881407
#26 : 2.548910343301664
#27 : 2.5298981152704743
#28 : 2.3826001247525035
#29 : 2.4498572463653243
#30 : 2.3521370651353837
#31 : 2.4309032741212664
#32 : 2.366133209606206
#33 : 2.4462922376053364
#34 : 2.3850487760328933
#35 : 2.4481429887352792
#36 : 2.370067560256672
#37 : 2.376729198498193
#38 : 2.297488373847759
#39 : 2.265126273640295
#40 : 2.258495714414137
#41 : 2.327524884607823
#42 : 2.3130200962416128
#43 : 2.290046983208286
#44 : 2.1465196716967805
#45 : 2.0969060851949677
#46 : 1.8901858209971119
#47 : 1.844354795879705
#48 : 1.6340799726564934
#49 : 1.60064459794013
#50 : 1.4667008762515674
#51 : 1.4453938385590863
#52 : 1.3767004735390218
#53 : 1.359619935503484
#54 : 1.3153462460865966
#55 : 1.309895715988472
#56 : 1.2799649790773286
#57 : 1.2807586745656392
#58 : 1.2559139323742572
#59 : 1.2582212637839076
#60 : 1.237819660093416
权值:
[[7.69666472e-01 2.16009202e-01 9.81729719e-01 … 5.32453082e-01
7.88719040e-01 5.14326954e-01]
[3.90401951e-01 5.84040914e-01 7.94883641e-01 … 8.02009249e-01
3.29345264e-02 6.70861290e-01]
[8.69075434e-02 8.43381782e-01 4.77683466e-01 … 8.71965798e-01
4.47018470e-04 5.07498017e-01]
…
[7.96129468e-01 6.14364951e-01 8.32783158e-01 … 6.53493763e-01
2.06235991e-01 8.60469591e-01]
[1.67070291e-01 3.23211147e-02 2.41519794e-01 … 6.56026583e-01
5.98396521e-01 5.42304452e-01]
[8.43299673e-01 6.22843596e-01 6.05652099e-02 … 1.10339403e-01
1.61855811e-01 3.29385438e-01]]
识别率:
Percentage Correct: 0.9037