\brief Set the alpha parameter (must be finite). This parameter is used by the following activations: LeakyRelu, Elu, Selu, Softplus, Clip, HardSigmoid, ScaledTanh, ThresholdedRelu. It is ignored by the other activations. \see getAlpha(), setBeta()
| 1659 | //! |
| 1660 | //! \see getAlpha(), setBeta() |
| 1661 | void setAlpha(float alpha) noexcept |
| 1662 | { |
| 1663 | mImpl->setAlpha(alpha); |
| 1664 | } |
| 1665 | |
| 1666 | //! |
| 1667 | //! \brief Set the beta parameter (must be finite). |