我调用了opt.fmin_tnc之后发现结果不对,输入的数据是正确的,请各位大佬帮我看看函数哪里出问题了
#定义正则化的代价函数
def costReg(theta,X,y,a):
theta=np.matrix(theta).T
_theta=theta[1:]#正则化不计算第一项
reg=a/(2*len(X))*np.sum(np.power(_theta,2))#正则化参数
hx=sigmoid(np.dot(X,theta))
first=np.multiply(-y,np.log(hx))-np.multiply((1-y),np.log(1-hx))
cost=np.sum(first)/len(X)
return cost+reg
#正则化梯度下降
def gradientReg(theta,X,y,a):
theta=np.matrix(theta).T
parameters = int(theta.shape[0])
grad = np.zeros(parameters)
error = sigmoid(np.dot(X,theta)) - y
for i in range(parameters):
term = np.multiply(error, X[:,i])
if (i == 0):
grad[i] = np.sum(term) / len(X)
else:
grad[i] = (np.sum(term) / len(X)) + ((a / len(X)) * theta[i,0])
return grad
当特征向量只有2个的时候是能输出代价函数值的,为0.6931471805599454
但是经过梯度下降后theta值就会变得很低,输出结果几乎为0