Class: DNN::Layers::Flatten

Inherits:
Layer
  • Object
show all
Defined in:
lib/dnn/core/layers.rb

Instance Method Summary collapse

Methods inherited from Layer

#build, #built?, #initialize, #prev_layer, #to_hash

Constructor Details

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

Instance Method Details

#backward(dout) ⇒ Object



429
430
431
# File 'lib/dnn/core/layers.rb', line 429

def backward(dout)
  dout.reshape(*@shape)
end

#forward(x) ⇒ Object



424
425
426
427
# File 'lib/dnn/core/layers.rb', line 424

def forward(x)
  @shape = x.shape
  x.reshape(x.shape[0], x.shape[1..-1].reduce(:*))
end

#shapeObject



433
434
435
# File 'lib/dnn/core/layers.rb', line 433

def shape
  [prev_layer.shape.reduce(:*)]
end