Class: Torch::NN::Softshrink
- Defined in:
- lib/torch/nn/softshrink.rb
Instance Method Summary collapse
- #extra_inspect ⇒ Object
- #forward(input) ⇒ Object
-
#initialize(lambd: 0.5) ⇒ Softshrink
constructor
A new instance of Softshrink.
Methods inherited from Module
#_apply, #add_module, #apply, #buffers, #call, #children, #cpu, #cuda, #double, #eval, #float, #half, #inspect, #load_state_dict, #method_missing, #modules, #named_buffers, #named_children, #named_modules, #named_parameters, #parameters, #register_buffer, #register_parameter, #requires_grad!, #respond_to?, #share_memory, #state_dict, #to, #train, #type, #zero_grad
Methods included from Utils
#_ntuple, #_pair, #_quadrupal, #_single, #_triple
Constructor Details
#initialize(lambd: 0.5) ⇒ Softshrink
Returns a new instance of Softshrink.
4 5 6 7 |
# File 'lib/torch/nn/softshrink.rb', line 4 def initialize(lambd: 0.5) super() @lambd = lambd end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Torch::NN::Module
Instance Method Details
#extra_inspect ⇒ Object
13 14 15 |
# File 'lib/torch/nn/softshrink.rb', line 13 def extra_inspect @lambd.to_s end |
#forward(input) ⇒ Object
9 10 11 |
# File 'lib/torch/nn/softshrink.rb', line 9 def forward(input) F.softshrink(input, @lambd) end |