Rate this Page

Struct ELUOptions#

Page Contents

Struct Documentation#

struct ELUOptions#

Options for the ELU module.

Example:

ELU model(ELUOptions().alpha(42.42).inplace(true));

Public Functions

inline auto alpha(const double &new_alpha) -> decltype(*this)#

The alpha value for the ELU formulation. Default: 1.0.

inline auto alpha(double &&new_alpha) -> decltype(*this)#
inline const double &alpha() const noexcept#
inline double &alpha() noexcept#
inline auto inplace(const bool &new_inplace) -> decltype(*this)#

can optionally do the operation in-place. Default: False

inline auto inplace(bool &&new_inplace) -> decltype(*this)#
inline const bool &inplace() const noexcept#
inline bool &inplace() noexcept#