Sha256: 9c14bad08e22fed4bddbce752a2b21cf8e9eca2596f8979441f92bf09fff9949

Contents?: true

Size: 302 Bytes

Versions: 56

Compression:

Stored size: 302 Bytes

Contents

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

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

Version data entries

56 entries across 56 versions & 1 rubygems

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