Class: Torch::NN::MultiLabelSoftMarginLoss
- Inherits:
-
WeightedLoss
- Object
- Module
- Loss
- WeightedLoss
- Torch::NN::MultiLabelSoftMarginLoss
- Defined in:
- lib/torch/nn/multi_label_soft_margin_loss.rb
Instance Attribute Summary
Attributes inherited from Module
Instance Method Summary collapse
- #forward(input, target) ⇒ Object
-
#initialize(weight: nil, reduction: "mean") ⇒ MultiLabelSoftMarginLoss
constructor
A new instance of MultiLabelSoftMarginLoss.
Methods inherited from Module
#_apply, #add_module, #apply, #buffers, #call, #children, #cpu, #cuda, #deep_dup, #double, #eval, #float, #half, #inspect, #load_state_dict, #method_missing, #modules, #named_buffers, #named_children, #named_modules, #named_parameters, #parameters, #register_buffer, #register_parameter, #requires_grad!, #respond_to?, #share_memory, #state_dict, #to, #train, #type, #zero_grad
Methods included from Utils
#_activation_fn, #_clones, #_ntuple, #_pair, #_quadrupal, #_single, #_triple
Constructor Details
#initialize(weight: nil, reduction: "mean") ⇒ MultiLabelSoftMarginLoss
Returns a new instance of MultiLabelSoftMarginLoss.
4 5 6 |
# File 'lib/torch/nn/multi_label_soft_margin_loss.rb', line 4 def initialize(weight: nil, reduction: "mean") super(weight, reduction) end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Torch::NN::Module
Instance Method Details
#forward(input, target) ⇒ Object
8 9 10 |
# File 'lib/torch/nn/multi_label_soft_margin_loss.rb', line 8 def forward(input, target) F.multilabel_soft_margin_loss(input, target, weight: @weight, reduction: @reduction) end |