Class: Torch::NN::AvgPool2d

Inherits:
AvgPoolNd show all
Defined in:
lib/torch/nn/avg_pool2d.rb

Instance Attribute Summary

Attributes inherited from Module

#training

Instance Method Summary collapse

Methods inherited from AvgPoolNd

#extra_inspect

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, ceil_mode: false, count_include_pad: true, divisor_override: nil) ⇒ AvgPool2d

Returns a new instance of AvgPool2d.



4
5
6
7
8
9
10
11
12
# File 'lib/torch/nn/avg_pool2d.rb', line 4

def initialize(kernel_size, stride: nil, padding: 0, ceil_mode: false, count_include_pad: true, divisor_override: nil)
  super()
  @kernel_size = kernel_size
  @stride = stride || kernel_size
  @padding = padding
  @ceil_mode = ceil_mode
  @count_include_pad = count_include_pad
  @divisor_override = divisor_override
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) ⇒ Object



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

def forward(input)
  F.avg_pool2d(input, @kernel_size, @stride, @padding, @ceil_mode, @count_include_pad, @divisor_override)
end