How to calculate a logistic sigmoid function in Python?

后端 未结 15 1875
情话喂你
情话喂你 2020-11-29 16:14

This is a logistic sigmoid function:

\"enter

I know x. How can I calculate F(x

15条回答
  •  青春惊慌失措
    2020-11-29 16:54

    This should do it:

    import math
    
    def sigmoid(x):
      return 1 / (1 + math.exp(-x))
    

    And now you can test it by calling:

    >>> sigmoid(0.458)
    0.61253961344091512
    

    Update: Note that the above was mainly intended as a straight one-to-one translation of the given expression into Python code. It is not tested or known to be a numerically sound implementation. If you know you need a very robust implementation, I'm sure there are others where people have actually given this problem some thought.

提交回复
热议问题