Class: DNN::Activations::Softplus
- Inherits:
-
Layers::Layer
- Object
- Layers::Layer
- DNN::Activations::Softplus
- 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?, call, #call, from_hash, #initialize, #load_hash, #output_shape, #to_hash
Constructor Details
This class inherits a constructor from DNN::Layers::Layer
Instance Method Details
#backward(dy) ⇒ Object
44 45 46 |
# File 'lib/dnn/core/activations.rb', line 44 def backward(dy) dy * (1 / (1 + Xumo::NMath.exp(-@x))) end |