Class: Torch::NN::Softplus

Inherits:
Module
  • Object
show all
Defined in:
lib/torch/nn/softplus.rb

Instance Attribute Summary

Attributes inherited from Module

#training

Instance Method Summary collapse

Methods inherited from Module

#_apply, #add_module, #apply, #buffers, #call, #children, #cpu, #cuda, #deep_dup, #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

#_activation_fn, #_clones, #_ntuple, #_pair, #_quadrupal, #_single, #_triple

Constructor Details

#initialize(beta: 1, threshold: 20) ⇒ Softplus

Returns a new instance of Softplus.



4
5
6
7
8
# File 'lib/torch/nn/softplus.rb', line 4

def initialize(beta: 1, threshold: 20)
  super()
  @beta = beta
  @threshold = threshold
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Torch::NN::Module

Instance Method Details

#extra_inspectObject



14
15
16
# File 'lib/torch/nn/softplus.rb', line 14

def extra_inspect
  format("beta: %s, threshold: %s", @beta, @threshold)
end

#forward(input) ⇒ Object



10
11
12
# File 'lib/torch/nn/softplus.rb', line 10

def forward(input)
  F.softplus(input, beta: @beta, threshold: @threshold)
end