Sha256: 6b4667592ce2190a6d060545ea99fa8bbf5f44cf67e4bb307ffac7e95015f3ab

Contents?: true

Size: 271 Bytes

Versions: 56

Compression:

Stored size: 271 Bytes

Contents

module Torch
  module NN
    class DropoutNd < Module
      def initialize(p: 0.5, inplace: false)
        super()
        @p = p
        @inplace = inplace
      end

      def extra_inspect
        format("p: %s, inplace: %s", @p, @inplace)
      end
    end
  end
end

Version data entries

56 entries across 56 versions & 1 rubygems

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