Rate this Page

Struct L1LossOptions#

Page Contents

Struct Documentation#

struct L1LossOptions#

Options for the L1Loss module.

Example:

L1Loss model(L1LossOptions(torch::kNone));

Public Types

typedef std::variant<enumtype::kNone, enumtype::kMean, enumtype::kSum> reduction_t#

Public Functions

L1LossOptions() = default#
inline L1LossOptions(torch::enumtype::kNone reduction)#
inline L1LossOptions(torch::enumtype::kMean reduction)#
inline L1LossOptions(torch::enumtype::kSum reduction)#
inline auto reduction(const reduction_t &new_reduction) -> decltype(*this)#

Specifies the reduction to apply to the output.

inline auto reduction(reduction_t &&new_reduction) -> decltype(*this)#
inline const reduction_t &reduction() const noexcept#
inline reduction_t &reduction() noexcept#