Struct SoftMarginLossOptions#
Defined in File loss.h
Page Contents
Struct Documentation#
-
struct SoftMarginLossOptions#
Options for the
SoftMarginLoss
module.Example:
SoftMarginLoss model(SoftMarginLossOptions(torch::kNone));
Public Functions
-
SoftMarginLossOptions() = default#
-
inline auto reduction(const reduction_t &new_reduction) -> decltype(*this)#
Specifies the reduction to apply to the output: ‘none’ | ‘mean’ | ‘sum’.
‘none’: no reduction will be applied, ‘mean’: the sum of the output will be divided by the number of elements in the output, ‘sum’: the output will be summed. Default: ‘mean’
-
inline auto reduction(reduction_t &&new_reduction) -> decltype(*this)#
-
inline const reduction_t &reduction() const noexcept#
-
inline reduction_t &reduction() noexcept#
-
SoftMarginLossOptions() = default#