Class: Torch::NN::PReLU
Instance Method Summary collapse
- #extra_inspect ⇒ Object
- #forward(input) ⇒ Object
-
#initialize(num_parameters: 1, init: 0.25) ⇒ PReLU
constructor
A new instance of PReLU.
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
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 |
# File 'lib/torch/nn/prelu.rb', line 14 def extra_inspect format("num_parameters: %s", @num_parameters) end |
#forward(input) ⇒ Object
10 11 12 |
# File 'lib/torch/nn/prelu.rb', line 10 def forward(input) F.prelu(input, @weight) end |