【发布时间】:2020-04-03 08:31:03
【问题描述】:
我正在使用 numpy 在 Python 中实现逻辑回归。我生成了以下数据集:
# class 0:
# covariance matrix and mean
cov0 = np.array([[5,-4],[-4,4]])
mean0 = np.array([2.,3])
# number of data points
m0 = 1000
# class 1
# covariance matrix
cov1 = np.array([[5,-3],[-3,3]])
mean1 = np.array([1.,1])
# number of data points
m1 = 1000
# generate m gaussian distributed data points with
# mean and cov.
r0 = np.random.multivariate_normal(mean0, cov0, m0)
r1 = np.random.multivariate_normal(mean1, cov1, m1)
X = np.concatenate((r0,r1))
现在我已经借助以下方法实现了 sigmoid 函数:
def logistic_function(x):
""" Applies the logistic function to x, element-wise. """
return 1.0 / (1 + np.exp(-x))
def logistic_hypothesis(theta):
return lambda x : logistic_function(np.dot(generateNewX(x), theta.T))
def generateNewX(x):
x = np.insert(x, 0, 1, axis=1)
return x
应用逻辑回归后,我发现最好的 theta 是:
best_thetas = [-0.9673200946417307, -1.955812236119612, -5.060885703369424]
但是,当我对这些 theta 应用逻辑函数时,输出是不在区间 [0,1] 内的数字
例子:
data = logistic_hypothesis(np.asarray(best_thetas))(X)
print(data
这给出了以下结果:
[2.67871968e-11 3.19858822e-09 3.77845881e-09 ... 5.61325410e-03
2.19767618e-01 6.23288747e-01]
有人可以帮助我了解我的实施出了什么问题吗?我不明白为什么我会得到这么大的价值。 sigmoid函数不是应该只给出[0,1]区间的结果吗?
【问题讨论】:
-
所有结果都在 [0, 1] 区间内。例如,数字 6.23288747e-01 等于 0.623288747 (6.23e-1 = 6.23 x 10^-1 = 0.623)。请阅读有关浮点表示法的更多信息。
标签: python numpy regression logistic-regression sigmoid