标签: python tensorflow neural-network sigmoid
我在这里做错了什么?方程和数据非常简单。
答案 0 :(得分:0)
看一行:
yhat = c/1+tf.math.exp(-x*p)
这等效于y = c + e ^(-x * p),它不是S形的,它是指数加常数。
您可能想要:
yhat = c/(1+tf.math.exp(-x*p))