Rate this Page

Struct MSELossOptions#

Page Contents

Struct Documentation#

struct MSELossOptions#

Options for the MSELoss module.

Example:

MSELoss model(MSELossOptions(torch::kNone));

Public Types

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

Public Functions

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

Specifies the reduction to apply to the output.

'none' | 'mean' | 'sum'. Default: 'mean'

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