Sha256: 07f3d2b2e7847d780d9d6e9a5bf8b68c2e6f56a88bfc92b4f1407412e37ef177

Contents?: true

Size: 255 Bytes

Versions: 55

Compression:

Stored size: 255 Bytes

Contents

module Torch
  module NN
    class SmoothL1Loss < Loss
      def initialize(reduction: "mean")
        super(reduction)
      end

      def forward(input, target)
        F.smooth_l1_loss(input, target, reduction: @reduction)
      end
    end
  end
end

Version data entries

55 entries across 55 versions & 1 rubygems

Version Path
torch-rb-0.18.0 lib/torch/nn/smooth_l1_loss.rb
torch-rb-0.17.1 lib/torch/nn/smooth_l1_loss.rb
torch-rb-0.17.0 lib/torch/nn/smooth_l1_loss.rb
torch-rb-0.16.0 lib/torch/nn/smooth_l1_loss.rb
torch-rb-0.15.0 lib/torch/nn/smooth_l1_loss.rb
torch-rb-0.14.1 lib/torch/nn/smooth_l1_loss.rb
torch-rb-0.14.0 lib/torch/nn/smooth_l1_loss.rb
torch-rb-0.13.2 lib/torch/nn/smooth_l1_loss.rb
torch-rb-0.13.1 lib/torch/nn/smooth_l1_loss.rb
torch-rb-0.13.0 lib/torch/nn/smooth_l1_loss.rb
torch-rb-0.12.2 lib/torch/nn/smooth_l1_loss.rb
torch-rb-0.12.1 lib/torch/nn/smooth_l1_loss.rb
torch-rb-0.12.0 lib/torch/nn/smooth_l1_loss.rb
torch-rb-0.11.2 lib/torch/nn/smooth_l1_loss.rb
torch-rb-0.11.1 lib/torch/nn/smooth_l1_loss.rb
torch-rb-0.11.0 lib/torch/nn/smooth_l1_loss.rb
torch-rb-0.10.2 lib/torch/nn/smooth_l1_loss.rb
torch-rb-0.10.1 lib/torch/nn/smooth_l1_loss.rb
torch-rb-0.10.0 lib/torch/nn/smooth_l1_loss.rb
torch-rb-0.9.2 lib/torch/nn/smooth_l1_loss.rb