标签: python neural-network
谁能告诉我错误函数为什么有两个不同的定义。我很困惑。
error = - y*np.log(output) - (1 - y) * np.log(1-output) error = y-sigmoid(np.dot(x,weights)
谢谢。