Class: DNN::Layers::UnPool2D
Instance Attribute Summary collapse
-
#unpool_size ⇒ Object
readonly
Returns the value of attribute unpool_size.
Attributes inherited from Layer
Class Method Summary collapse
Instance Method Summary collapse
- #backward(dout) ⇒ Object
- #build(input_shape) ⇒ Object
- #forward(x) ⇒ Object
-
#initialize(unpool_size) ⇒ UnPool2D
constructor
A new instance of UnPool2D.
- #output_shape ⇒ Object
- #to_hash ⇒ Object
Methods inherited from Layer
Constructor Details
#initialize(unpool_size) ⇒ UnPool2D
Returns a new instance of UnPool2D.
245 246 247 248 |
# File 'lib/dnn/core/cnn_layers.rb', line 245 def initialize(unpool_size) super() @unpool_size = unpool_size.is_a?(Integer) ? [unpool_size, unpool_size] : unpool_size end |
Instance Attribute Details
#unpool_size ⇒ Object (readonly)
Returns the value of attribute unpool_size.
243 244 245 |
# File 'lib/dnn/core/cnn_layers.rb', line 243 def unpool_size @unpool_size end |
Class Method Details
Instance Method Details
#backward(dout) ⇒ Object
272 273 274 275 276 |
# File 'lib/dnn/core/cnn_layers.rb', line 272 def backward(dout) unpool_h, unpool_w = @unpool_size dout = dout.reshape(dout.shape[0], @x_shape[1], unpool_h, @x_shape[2], unpool_w, @num_channel) dout[true, true, 0, true, 0, true].clone end |
#build(input_shape) ⇒ Object
254 255 256 257 258 259 260 261 262 |
# File 'lib/dnn/core/cnn_layers.rb', line 254 def build(input_shape) super prev_h, prev_w = input_shape[0..1] unpool_h, unpool_w = @unpool_size out_h = prev_h * unpool_h out_w = prev_w * unpool_w @out_size = [out_h, out_w] @num_channel = input_shape[2] end |
#forward(x) ⇒ Object
264 265 266 267 268 269 270 |
# File 'lib/dnn/core/cnn_layers.rb', line 264 def forward(x) @x_shape = x.shape unpool_h, unpool_w = @unpool_size x2 = Xumo::SFloat.zeros(x.shape[0], x.shape[1], unpool_h, x.shape[2], unpool_w, @num_channel) x2[true, true, 0, true, 0, true] = x x2.reshape(x.shape[0], *@out_size, x.shape[3]) end |
#output_shape ⇒ Object
278 279 280 |
# File 'lib/dnn/core/cnn_layers.rb', line 278 def output_shape [*@out_size, @num_channel] end |
#to_hash ⇒ Object
282 283 284 |
# File 'lib/dnn/core/cnn_layers.rb', line 282 def to_hash super({unpool_size: @unpool_size}) end |