Sha256: aecd149c8956cdfdd66512b40970c411830c7a592731cf06e87f4beb644511da

Contents?: true

Size: 309 Bytes

Versions: 56

Compression:

Stored size: 309 Bytes

Contents

module Torch
  module NN
    class ReLU < Module
      def initialize(inplace: false)
        super()
        @inplace = inplace
      end

      def forward(input)
        F.relu(input, inplace: @inplace)
      end

      def extra_inspect
        @inplace ? "inplace: true" : ""
      end
    end
  end
end

Version data entries

56 entries across 56 versions & 1 rubygems

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