pub enum ActivationFunction {
ReLU,
Linear,
}
Expand description
The activation function neurons are to use
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§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ActivationFunction
impl Debug for ActivationFunction
Source§impl Default for ActivationFunction
impl Default for ActivationFunction
Source§fn default() -> ActivationFunction
fn default() -> ActivationFunction
Returns the “default value” for a type. Read more
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