Python3用matplotlib繪製sigmoid函數

import matplotlib.pyplot as plt import numpy as np def sigmoid(x): # 直接返回sigmoid函數 return 1. / (1. + np.exp(-x)) def plot_sigmoid(): # param:起點,終點,間距 x = np.arange(-8, 8, 0.2)
相關文章
相關標籤/搜索