pub enum ActivationFunction {
Sigmoid,
ReLU,
Tanh,
LeakyReLU,
Swish,
GELU,
}
Expand description
Activation function types
Variants§
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 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ActivationFunction
impl Debug for ActivationFunction
impl Copy 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 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