|
・In Japanese
Prerequisite knowledge
・Basic usage of Python
・How to install numpy, matplotlib, and scipy
・Sigmoid function
■Description
Returns the solution of the sigmoid function.
■Example
import scipy.special #Essential formula when using scipy
scipy.special.expit(2) #Value of x=2 in the sigmoid function 1/(1+e^(-1*x))
⇒ 0.8807970779778823
|
|