Sha256: 7b4eed1a61f6a2e98657b6ac47bafc91986d60530c29a8a4689a7868e4ccbd5d

Contents?: true

Size: 239 Bytes

Versions: 55

Compression:

Stored size: 239 Bytes

Contents

module Torch
  module NN
    class Identity < Module
      # written this way to support unused arguments
      def initialize(*args, **options)
        super()
      end

      def forward(input)
        input
      end
    end
  end
end

Version data entries

55 entries across 55 versions & 1 rubygems

Version Path
torch-rb-0.3.2 lib/torch/nn/identity.rb
torch-rb-0.3.1 lib/torch/nn/identity.rb
torch-rb-0.3.0 lib/torch/nn/identity.rb
torch-rb-0.2.7 lib/torch/nn/identity.rb
torch-rb-0.2.6 lib/torch/nn/identity.rb
torch-rb-0.2.5 lib/torch/nn/identity.rb
torch-rb-0.2.4 lib/torch/nn/identity.rb
torch-rb-0.2.3 lib/torch/nn/identity.rb
torch-rb-0.2.2 lib/torch/nn/identity.rb
torch-rb-0.2.1 lib/torch/nn/identity.rb
torch-rb-0.2.0 lib/torch/nn/identity.rb
torch-rb-0.1.8 lib/torch/nn/identity.rb
torch-rb-0.1.7 lib/torch/nn/identity.rb
torch-rb-0.1.6 lib/torch/nn/identity.rb
torch-rb-0.1.5 lib/torch/nn/identity.rb