Class: DNN::Layers::Reshape
- Inherits:
-
Layer
- Object
- Layer
- DNN::Layers::Reshape
show all
- Defined in:
- lib/dnn/core/layers.rb
Instance Attribute Summary collapse
Class Method Summary
collapse
Instance Method Summary
collapse
Methods inherited from Layer
#build, #built?, #prev_layer
Constructor Details
#initialize(shape) ⇒ Reshape
Returns a new instance of Reshape.
442
443
444
445
446
|
# File 'lib/dnn/core/layers.rb', line 442
def initialize(shape)
super()
@shape = shape
@x_shape = nil
end
|
Instance Attribute Details
#shape ⇒ Object
Returns the value of attribute shape.
440
441
442
|
# File 'lib/dnn/core/layers.rb', line 440
def shape
@shape
end
|
Class Method Details
.load_hash(hash) ⇒ Object
448
449
450
|
# File 'lib/dnn/core/layers.rb', line 448
def self.load_hash(hash)
self.new(hash[:shape])
end
|
Instance Method Details
#backward(dout) ⇒ Object
457
458
459
|
# File 'lib/dnn/core/layers.rb', line 457
def backward(dout)
dout.reshape(@x_shape)
end
|
#forward(x) ⇒ Object
452
453
454
455
|
# File 'lib/dnn/core/layers.rb', line 452
def forward(x)
@x_shape = x.shape
x.reshape(*@shape)
end
|
#to_hash ⇒ Object
461
462
463
|
# File 'lib/dnn/core/layers.rb', line 461
def to_hash
super({shape: @shape})
end
|