Class: Torch::NN::MaxPoolNd
Instance Method Summary collapse
- #extra_inspect ⇒ Object
-
#initialize(kernel_size, stride: nil, padding: 0, dilation: 1, return_indices: false, ceil_mode: false) ⇒ MaxPoolNd
constructor
A new instance of MaxPoolNd.
Methods inherited from Module
#_apply, #add_module, #apply, #buffers, #call, #children, #cpu, #cuda, #double, #eval, #float, #forward, #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(kernel_size, stride: nil, padding: 0, dilation: 1, return_indices: false, ceil_mode: false) ⇒ MaxPoolNd
Returns a new instance of MaxPoolNd.
4 5 6 7 8 9 10 11 12 |
# File 'lib/torch/nn/max_poolnd.rb', line 4 def initialize(kernel_size, stride: nil, padding: 0, dilation: 1, return_indices: false, ceil_mode: false) super() @kernel_size = kernel_size @stride = stride || kernel_size @padding = padding @dilation = dilation @return_indices = return_indices @ceil_mode = ceil_mode 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/max_poolnd.rb', line 14 def extra_inspect s = "kernel_size: %{kernel_size}, stride: %{stride}, padding: %{padding}, dilation: %{dilation}, ceil_mode: %{ceil_mode}" format(s, **dict) end |