Class: DNN::Layers::MaxPool2D

Inherits:
Pool2D show all
Defined in:
lib/dnn/core/cnn_layers.rb

Instance Attribute Summary

Attributes inherited from Pool2D

#pool_size, #strides

Attributes inherited from Layer

#input_shape

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Pool2D

#build, #initialize, #output_shape, #to_hash

Methods inherited from Layer

#build, #built?, #initialize, #output_shape, #to_hash

Constructor Details

This class inherits a constructor from DNN::Layers::Pool2D

Class Method Details

.load_hash(hash) ⇒ Object



192
193
194
# File 'lib/dnn/core/cnn_layers.rb', line 192

def self.load_hash(hash)
  Pool2D.load_hash(self, hash)
end

Instance Method Details

#backward(dout) ⇒ Object



205
206
207
208
209
210
211
# File 'lib/dnn/core/cnn_layers.rb', line 205

def backward(dout)
  dmax = Xumo::SFloat.zeros(dout.size * @pool_size.reduce(:*))
  dmax[@max_index] = dout.flatten
  dcol = dmax.reshape(dout.shape[0..2].reduce(:*), dout.shape[3] * @pool_size.reduce(:*))
  dx = col2im(dcol, @x_shape, *@out_size, *@pool_size, @strides)
  @padding ? back_padding(dx, @pad) : dx
end

#forward(x) ⇒ Object



196
197
198
199
200
201
202
203
# File 'lib/dnn/core/cnn_layers.rb', line 196

def forward(x)
  x = padding(x, @pad) if @padding
  @x_shape = x.shape
  col = im2col(x, *@out_size, *@pool_size, @strides)
  col = col.reshape(x.shape[0] * @out_size.reduce(:*) * x.shape[3], @pool_size.reduce(:*))
  @max_index = col.max_index(1)
  col.max(1).reshape(x.shape[0], *@out_size, x.shape[3])
end