Class: Torch::NN::MaxUnpool3d
- Inherits:
-
MaxUnpoolNd
- Object
- Module
- MaxUnpoolNd
- Torch::NN::MaxUnpool3d
- Defined in:
- lib/torch/nn/max_unpool3d.rb
Instance Attribute Summary
Attributes inherited from Module
Instance Method Summary collapse
- #forward(input, indices, output_size: nil) ⇒ Object
-
#initialize(kernel_size, stride: nil, padding: 0) ⇒ MaxUnpool3d
constructor
A new instance of MaxUnpool3d.
Methods inherited from MaxUnpoolNd
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(kernel_size, stride: nil, padding: 0) ⇒ MaxUnpool3d
Returns a new instance of MaxUnpool3d.
4 5 6 7 8 9 |
# File 'lib/torch/nn/max_unpool3d.rb', line 4 def initialize(kernel_size, stride: nil, padding: 0) super() @kernel_size = _triple(kernel_size) @stride = _triple(stride || kernel_size) @padding = _triple(padding) end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Torch::NN::Module
Instance Method Details
#forward(input, indices, output_size: nil) ⇒ Object
11 12 13 |
# File 'lib/torch/nn/max_unpool3d.rb', line 11 def forward(input, indices, output_size: nil) F.max_unpool3d(input, indices, @kernel_size, @stride, @padding, output_size) end |