activation functions activation functions
play

Activation Functions Activation Functions In [1]: % matplotlib - PowerPoint PPT Presentation

Activation Functions Activation Functions In [1]: % matplotlib inline import d2l from mxnet import autograd, nd def xyplot(x_vals, y_vals, name): d2l.set_figsize(figsize=(5, 2.5)) d2l.plt.plot(x_vals.asnumpy(), y_vals.asnumpy())


  1. Activation Functions Activation Functions In [1]: % matplotlib inline import d2l from mxnet import autograd, nd def xyplot(x_vals, y_vals, name): d2l.set_figsize(figsize=(5, 2.5)) d2l.plt.plot(x_vals.asnumpy(), y_vals.asnumpy()) d2l.plt.xlabel('x') d2l.plt.ylabel(name + '(x)')

  2. ReLU Function ReLU Function ReLU( x ) = max( x , 0). In [2]: x = nd.arange(-8.0, 8.0, 0.1) x.attach_grad() with autograd.record(): y = x.relu() xyplot(x, y, 'relu')

  3. The Sub-derivative of ReLU The Sub-derivative of ReLU In [3]: y.backward() xyplot(x, x.grad, 'grad of relu')

  4. Sigmoid Function Sigmoid Function 1 sigmoid( x ) = . 1 + exp( − x ) In [4]: with autograd.record(): y = x.sigmoid() xyplot(x, y, 'sigmoid')

  5. The Derivative of Sigmoid The Derivative of Sigmoid d exp( − x ) sigmoid( x ) = = sigmoid( x ) (1 − sigmoid( x )) . (1 + exp( − x )) 2 dx In [5]: y.backward() xyplot(x, x.grad, 'grad of sigmoid')

  6. Tanh Function Tanh Function 1 − exp( − 2 x ) tanh( x ) = . 1 + exp( − 2 x ) In [6]: with autograd.record(): y = x.tanh() xyplot(x, y, 'tanh')

  7. The derivative of Tanh The derivative of Tanh d tanh 2 tanh( x ) = 1 − ( x ). dx In [7]: y.backward() xyplot(x, x.grad, 'grad of tanh') In [ ]:

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend