[][src]Struct maver::LearnParams

pub struct LearnParams {
    pub mutate_add_neuron_pr: f64,
    pub weight_mutate_var: f64,
    pub weight_mutate_pr: f64,
    pub weight_replace_pr: f64,
    pub bias_zero_pr: f64,
    pub bias_one_pr: f64,
    pub bias_mutate_var: f64,
    pub bias_mutate_pr: f64,
    pub bias_replace: f64,
    pub mutate_del_neuron_pr: f64,
}

Fields

mutate_add_neuron_pr: f64weight_mutate_var: f64weight_mutate_pr: f64weight_replace_pr: f64bias_zero_pr: f64bias_one_pr: f64bias_mutate_var: f64bias_mutate_pr: f64bias_replace: f64mutate_del_neuron_pr: f64

Trait Implementations

impl PartialEq<LearnParams> for LearnParams[src]

impl Default for LearnParams[src]

impl Clone for LearnParams[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Copy for LearnParams[src]

impl Debug for LearnParams[src]

Auto Trait Implementations

Blanket Implementations

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

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