Class: Torch::NN::LeakyReLU
Instance Method Summary collapse
- #extra_inspect ⇒ Object
- #forward(input) ⇒ Object
-
#initialize(negative_slope: 1e-2, inplace: false) ⇒ LeakyReLU
constructor
A new instance of LeakyReLU.
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(negative_slope: 1e-2, inplace: false) ⇒ LeakyReLU
Returns a new instance of LeakyReLU.
4 5 6 7 8 |
# File 'lib/torch/nn/leaky_relu.rb', line 4 def initialize(negative_slope: 1e-2, inplace: false) super() @negative_slope = negative_slope @inplace = inplace 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
14 15 16 17 |
# File 'lib/torch/nn/leaky_relu.rb', line 14 def extra_inspect inplace_str = @inplace ? ", inplace: true" : "" format("negative_slope: %s%s", @negative_slope, inplace_str) end |
#forward(input) ⇒ Object
10 11 12 |
# File 'lib/torch/nn/leaky_relu.rb', line 10 def forward(input) F.leaky_relu(input, @negative_slope, inplace: @inplace) end |