Enum ritenn::HaltCondition[][src]

pub enum HaltCondition {
    Epochs(u32),
    MSE(f64),
    Timer(Duration),
}

Specifies when to stop training the network

Variants

Epochs(u32)

Stop training after a certain number of epochs

MSE(f64)

Train until a certain error rate is achieved

Timer(Duration)

Train for some fixed amount of time and then halt

Trait Implementations

impl Clone for HaltCondition[src]

impl Copy for HaltCondition[src]

impl Debug for HaltCondition[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,