标签: python machine-learning
sigmoid(x) = 1/(1+e(-x))
其中-x应该是上标。不使用numpy包,如何编写代码来在Python中计算这个值?例如:
s = 1 /(1 + e(-x))
假设是接收计算的变量。我正在学习Python。