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, #builded?, #initialize, #prev_layer, #to_hash

Constructor Details

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

Instance Method Details

#backward(dout) ⇒ Object



375
376
377
# File 'lib/dnn/core/layers.rb', line 375

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

#forward(x) ⇒ Object



370
371
372
373
# File 'lib/dnn/core/layers.rb', line 370

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

#shapeObject



379
380
381
# File 'lib/dnn/core/layers.rb', line 379

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