[][src]Struct rsneat::NeatParams

pub struct NeatParams {
    pub population_size: usize,
    pub delta_c1: f64,
    pub delta_c2: f64,
    pub delta_c3: f64,
    pub delta_threshold: f64,
    pub species_death_time: usize,
    pub champion_copy_size: usize,
    pub weight_mutation_chance: f64,
    pub weight_reset_chance: f64,
    pub disable_chance: f64,
    pub no_crossover_chance: f64,
    pub interspecies_mating_rate: f64,
    pub new_neuron_chance: f64,
    pub new_weight_chance: f64,
    pub survival_threshold: f64,
}

Structure for NEAT hyperparameters

Fields

population_size: usizedelta_c1: f64delta_c2: f64delta_c3: f64delta_threshold: f64species_death_time: usizechampion_copy_size: usizeweight_mutation_chance: f64weight_reset_chance: f64disable_chance: f64no_crossover_chance: f64interspecies_mating_rate: f64new_neuron_chance: f64new_weight_chance: f64survival_threshold: f64

Trait Implementations

impl Default for NeatParams[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, 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.