Class: DNN::Activations::IdentityHuber

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

Instance Method Summary collapse

Methods inherited from Layers::Layer

#build, #built?, #initialize, #prev_layer, #shape, #to_hash

Constructor Details

This class inherits a constructor from DNN::Layers::Layer

Instance Method Details

#backward(y) ⇒ Object



140
141
142
143
144
145
146
147
# File 'lib/dnn/core/activations.rb', line 140

def backward(y)
  dout = @out - y
  if @loss > 1
    dout[dout >= 0] = 1
    dout[dout < 0] = -1
  end
  dout
end

#forward(x) ⇒ Object



131
132
133
# File 'lib/dnn/core/activations.rb', line 131

def forward(x)
  @out = x
end

#loss(y) ⇒ Object



135
136
137
138
# File 'lib/dnn/core/activations.rb', line 135

def loss(y)
  loss = loss_l1(y)
  @loss = loss > 1 ? loss : loss_l2(y)
end