Struct ReLUOptions¶
Defined in File activation.h
Page Contents
Struct Documentation¶
-
struct ReLUOptions¶
Options for the
ReLU
module.Example:
ReLU model(ReLUOptions().inplace(true));
Public Functions
-
ReLUOptions(bool inplace = false)¶
-
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¶
-
ReLUOptions(bool inplace = false)¶