Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在这里做错了什么?方程式和数据非常简单。
看线:
yhat = c/1+tf.math.exp(-x*p)
这相当于 y = c + e^(-x*p),它不是一个 sigmoid,它是一个指数加常数。
你可能想要:
yhat = c/(1+tf.math.exp(-x*p))