2020
12-14
12-14
Python3 用matplotlib绘制sigmoid函数的案例
我就废话不多说了,大家还是直接看代码吧~importmatplotlib.pyplotaspltimportnumpyasnpdefsigmoid(x):#直接返回sigmoid函数return1./(1.+np.exp(-x))defplot_sigmoid():#param:起点,终点,间距x=np.arange(-8,8,0.2)y=sigmoid(x)plt.plot(x,y)plt.show()if__name__=='__main__':plot_sigmoid()如图:补充知识:python:实现并绘制sigmoid函数,tanh函数,ReLU函数,PReLU函数如...
继续阅读 >