Class: DNN::Activations::LeakyReLU

Inherits:
Layers::Layer show all
Defined in:
lib/dnn/core/activations.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Layers::Layer

#build, #built?, #prev_layer, #shape

Constructor Details

#initialize(alpha = 0.3) ⇒ LeakyReLU

Returns a new instance of LeakyReLU.



44
45
46
# File 'lib/dnn/core/activations.rb', line 44

def initialize(alpha = 0.3)
  @alpha = alpha
end

Instance Attribute Details

#alphaObject (readonly)

Returns the value of attribute alpha.



42
43
44
# File 'lib/dnn/core/activations.rb', line 42

def alpha
  @alpha
end

Class Method Details

.load_hash(hash) ⇒ Object



48
49
50
# File 'lib/dnn/core/activations.rb', line 48

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

Instance Method Details

#backward(dout) ⇒ Object



59
60
61
62
63
# File 'lib/dnn/core/activations.rb', line 59

def backward(dout)
  @x[@x > 0] = 1
  @x[@x <= 0] = @alpha
  dout * @x
end

#forward(x) ⇒ Object



52
53
54
55
56
57
# File 'lib/dnn/core/activations.rb', line 52

def forward(x)
  @x = x.clone
  a = Xumo::SFloat.ones(x.shape)
  a[x <= 0] = @alpha
  x * a
end

#to_hashObject



65
66
67
# File 'lib/dnn/core/activations.rb', line 65

def to_hash
  {class: self.class.name, alpha: alpha}
end