This is a logistic sigmoid function:
I know x. How can I calculate F(x
another way
>>> def sigmoid(x): ... return 1 /(1+(math.e**-x)) ... >>> sigmoid(0.458)