Class: DNN::Layers::Dropout
- Inherits:
-
Layer
- Object
- Layer
- DNN::Layers::Dropout
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, #shape
Constructor Details
#initialize(dropout_ratio = 0.5) ⇒ Dropout
Returns a new instance of Dropout.
236
237
238
239
240
|
# File 'lib/dnn/core/layers.rb', line 236
def initialize(dropout_ratio = 0.5)
super()
@dropout_ratio = dropout_ratio
@mask = nil
end
|
Instance Attribute Details
#dropout_ratio ⇒ Object
Returns the value of attribute dropout_ratio.
230
231
232
|
# File 'lib/dnn/core/layers.rb', line 230
def dropout_ratio
@dropout_ratio
end
|
Class Method Details
.load_hash(hash) ⇒ Object
232
233
234
|
# File 'lib/dnn/core/layers.rb', line 232
def self.load_hash(hash)
self.new(hash[:dropout_ratio])
end
|
Instance Method Details
#backward(dout) ⇒ Object
252
253
254
255
|
# File 'lib/dnn/core/layers.rb', line 252
def backward(dout)
dout[@mask] = 0 if @model.training?
dout
end
|
#forward(x) ⇒ Object
242
243
244
245
246
247
248
249
250
|
# File 'lib/dnn/core/layers.rb', line 242
def forward(x)
if @model.training?
@mask = Xumo::SFloat.ones(*x.shape).rand < @dropout_ratio
x[@mask] = 0
else
x *= (1 - @dropout_ratio)
end
x
end
|
#to_hash ⇒ Object
257
258
259
|
# File 'lib/dnn/core/layers.rb', line 257
def to_hash
super({dropout_ratio: @dropout_ratio})
end
|