Sha256: 8b728958b21f1d4a04be7f7e108cd05ce4711e7319466ba8db33e8ee2afdd5ce

Contents?: true

Size: 220 Bytes

Versions: 58

Compression:

Stored size: 220 Bytes

Contents

module Torch
  module NN
    class LogSoftmax < Module
      def initialize(dim: nil)
        super()
        @dim = dim
      end

      def forward(input)
        F.log_softmax(input, @dim)
      end
    end
  end
end

Version data entries

58 entries across 58 versions & 1 rubygems

Version Path
torch-rb-0.10.0 lib/torch/nn/log_softmax.rb
torch-rb-0.9.2 lib/torch/nn/log_softmax.rb
torch-rb-0.9.1 lib/torch/nn/log_softmax.rb
torch-rb-0.9.0 lib/torch/nn/log_softmax.rb
torch-rb-0.8.3 lib/torch/nn/log_softmax.rb
torch-rb-0.8.2 lib/torch/nn/log_softmax.rb
torch-rb-0.8.1 lib/torch/nn/log_softmax.rb
torch-rb-0.8.0 lib/torch/nn/log_softmax.rb
torch-rb-0.7.0 lib/torch/nn/log_softmax.rb
torch-rb-0.6.0 lib/torch/nn/log_softmax.rb
torch-rb-0.5.3 lib/torch/nn/log_softmax.rb
torch-rb-0.5.2 lib/torch/nn/log_softmax.rb
torch-rb-0.5.1 lib/torch/nn/log_softmax.rb
torch-rb-0.5.0 lib/torch/nn/log_softmax.rb
torch-rb-0.4.2 lib/torch/nn/log_softmax.rb
torch-rb-0.4.1 lib/torch/nn/log_softmax.rb
torch-rb-0.4.0 lib/torch/nn/log_softmax.rb
torch-rb-0.3.7 lib/torch/nn/log_softmax.rb
torch-rb-0.3.6 lib/torch/nn/log_softmax.rb
torch-rb-0.3.5 lib/torch/nn/log_softmax.rb