Class: DNN::Activations::IdentityHuber
Instance Method Summary
collapse
#build, #built?, #initialize, #prev_layer, #shape, #to_hash
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
|