로지스틱 관련 라이브러리. 아래와 같이 불러온다. 편의상 expit을 logistic으로 치환하여 사용할 수 있다.
from scipy.special import expit as logistic logistic(1)
출력값: 0.7310585786300049
기록용. 더 자세한 내용은 scipy 깃헙을 참고해보자.