Sha256: 2a4042b5424ebde9d74d4ac3196d5111c27e5349c08e91dd1ed7da09ef6e9fbf

Contents?: true

Size: 388 Bytes

Versions: 56

Compression:

Stored size: 388 Bytes

Contents

module Torch
  module NN
    class Softplus < Module
      def initialize(beta: 1, threshold: 20)
        super()
        @beta = beta
        @threshold = threshold
      end

      def forward(input)
        F.softplus(input, beta: @beta, threshold: @threshold)
      end

      def extra_inspect
        format("beta: %s, threshold: %s", @beta, @threshold)
      end
    end
  end
end

Version data entries

56 entries across 56 versions & 1 rubygems

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