Class: DNN::Activations::Tanh
- Inherits:
-
Layers::Layer
- Object
- Layers::Layer
- DNN::Activations::Tanh
- Defined in:
- lib/dnn/core/activations.rb
Instance Attribute Summary
Attributes inherited from Layers::Layer
Instance Method Summary collapse
Methods inherited from Layers::Layer
#build, #built?, #initialize, #output_shape, #to_hash
Constructor Details
This class inherits a constructor from DNN::Layers::Layer
Instance Method Details
#backward(dout) ⇒ Object
20 21 22 |
# File 'lib/dnn/core/activations.rb', line 20 def backward(dout) dout * (1 - @out**2) end |
#forward(x) ⇒ Object
16 17 18 |
# File 'lib/dnn/core/activations.rb', line 16 def forward(x) @out = NMath.tanh(x) end |