pub enum ActivationFunction {
None,
Relu,
Sigmoid,
Tanh,
}Expand description
Activation function that can be fused into a preceding operation.
Variants§
None
No activation (identity).
Relu
Rectified Linear Unit.
Sigmoid
Sigmoid activation.
Tanh
Hyperbolic tangent.
Trait Implementations§
Source§impl Clone for ActivationFunction
impl Clone for ActivationFunction
Source§fn clone(&self) -> ActivationFunction
fn clone(&self) -> ActivationFunction
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ActivationFunction
Source§impl Debug for ActivationFunction
impl Debug for ActivationFunction
impl Eq for ActivationFunction
Source§impl PartialEq for ActivationFunction
impl PartialEq for ActivationFunction
impl StructuralPartialEq for ActivationFunction
Auto Trait Implementations§
impl Freeze for ActivationFunction
impl RefUnwindSafe for ActivationFunction
impl Send for ActivationFunction
impl Sync for ActivationFunction
impl Unpin for ActivationFunction
impl UnsafeUnpin for ActivationFunction
impl UnwindSafe for ActivationFunction
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more