Method: Chainer::Functions::Activation._log_softmax

Defined in:
lib/chainer/functions/activation/log_softmax.rb

._log_softmax(x) ⇒ Object



14
15
16
17
# File 'lib/chainer/functions/activation/log_softmax.rb', line 14

def self._log_softmax(x)
  log_z = logsumexp(x)
  x - log_z
end