Class: DNN::Layers::Dropout

Inherits:
Layer
  • Object
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.



294
295
296
297
298
# File 'lib/dnn/core/layers.rb', line 294

def initialize(dropout_ratio = 0.5)
  super()
  @dropout_ratio = dropout_ratio
  @mask = nil
end

Instance Attribute Details

#dropout_ratioObject (readonly)

Returns the value of attribute dropout_ratio.



288
289
290
# File 'lib/dnn/core/layers.rb', line 288

def dropout_ratio
  @dropout_ratio
end

Class Method Details

.load_hash(hash) ⇒ Object



290
291
292
# File 'lib/dnn/core/layers.rb', line 290

def self.load_hash(hash)
  self.new(hash[:dropout_ratio])
end

Instance Method Details

#backward(dout) ⇒ Object



310
311
312
313
# File 'lib/dnn/core/layers.rb', line 310

def backward(dout)
  dout[@mask] = 0 if @model.training?
  dout
end

#forward(x) ⇒ Object



300
301
302
303
304
305
306
307
308
# File 'lib/dnn/core/layers.rb', line 300

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_hashObject



315
316
317
# File 'lib/dnn/core/layers.rb', line 315

def to_hash
  super({dropout_ratio: @dropout_ratio})
end