【发布时间】:2017-10-08 02:07:50
【问题描述】:
尝试使逻辑回归模型在 iris 数据集上工作,但不合适。代码有什么问题。谢谢你。。
# Dependencies used: numpy, matpotlib.pyplot, csv
# dataset: Iris
# Binary classification using gradient descent
# python 3.5
# input data matrix = x(99 X 1) # including ones vector
# discrete output data matrix = y(99 X 1)
# parameters matrix = theta(5 X 1)
for j in range(3500):
# hypothesis function
h = 1/(1 + np.exp(-x.dot(theta)))
# gradient descent
theta = theta - (0.00001/m) * np.sum(x.T.dot(h - y)) + (30.0/m)*np.sum(np.sum(theta[1:5, :]**2))
# cost function
cost = -(1/m) * np.sum(y.T.dot(np.log(h)) + (1-y).T.dot(np.log(1-h)))
j_iter.append(cost)
Iter.append(j)
【问题讨论】:
标签: python-3.x numpy matplotlib logistic-regression gradient-descent