Class: DNN::Activations::SoftmaxWithLoss

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

Instance Method Summary collapse

Instance Method Details

#backward(y) ⇒ Object



97
98
99
# File 'lib/dnn/core/activations.rb', line 97

def backward(y)
  @out - y
end

#forward(x) ⇒ Object



93
94
95
# File 'lib/dnn/core/activations.rb', line 93

def forward(x)
  @out = NMath.exp(x) / NMath.exp(x).sum(1).reshape(x.shape[0], 1)
end

#loss(y) ⇒ Object



101
102
103
104
# File 'lib/dnn/core/activations.rb', line 101

def loss(y)
  batch_size = y.shape[0]
  -(y * NMath.log(@out + 1e-7)).sum / batch_size + ridge
end