Struct SmoothL1LossOptions¶
Defined in File loss.h
Page Contents
Struct Documentation¶
-
struct SmoothL1LossOptions¶
Options for the
SmoothL1Loss
module.Example:
SmoothL1Loss model(SmoothL1LossOptions().reduction(torch::kNone).beta(0.5));
Public Functions
-
SmoothL1LossOptions() = 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¶
-
inline auto beta(const std::optional<double> &new_beta) -> decltype(*this)¶
Specifies the threshold at which to change between L1 and L2 loss.
If beta is not specified, a value of 1.0 will be used. Default: nullopt
-
inline auto beta(std::optional<double> &&new_beta) -> decltype(*this)¶
-
inline const std::optional<double> &beta() const noexcept¶
-
inline std::optional<double> &beta() noexcept¶
-
SmoothL1LossOptions() = default¶