Sha256: 33a3546d43f310f07948f40113f2a7c3dd418eb37aee6a27141fcf6fa4a84d39

Contents?: true

Size: 326 Bytes

Versions: 55

Compression:

Stored size: 326 Bytes

Contents

module Torch
  module NN
    class MultiLabelSoftMarginLoss < WeightedLoss
      def initialize(weight: nil, reduction: "mean")
        super(weight, reduction)
      end

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

Version data entries

55 entries across 55 versions & 1 rubygems

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