Class: DNN::Layers::Flatten
- Inherits:
-
Layer
- Object
- Layer
- DNN::Layers::Flatten
show all
- Defined in:
- lib/dnn/core/layers.rb
Instance Method Summary
collapse
Methods inherited from Layer
#build, #built?, #initialize, #prev_layer, #to_hash
Instance Method Details
#backward(dout) ⇒ Object
234
235
236
|
# File 'lib/dnn/core/layers.rb', line 234
def backward(dout)
dout.reshape(*@shape)
end
|
#forward(x) ⇒ Object
229
230
231
232
|
# File 'lib/dnn/core/layers.rb', line 229
def forward(x)
@shape = x.shape
x.reshape(x.shape[0], x.shape[1..-1].reduce(:*))
end
|
#shape ⇒ Object
238
239
240
|
# File 'lib/dnn/core/layers.rb', line 238
def shape
[prev_layer.shape.reduce(:*)]
end
|