pub enum NASStrategy {
Evolutionary {
population_size: usize,
generations: usize,
mutation_rate: Float,
crossover_rate: Float,
},
ReinforcementLearning {
episodes: usize,
learning_rate: Float,
exploration_rate: Float,
},
GDAS {
search_epochs: usize,
learning_rate: Float,
weight_decay: Float,
},
RandomSearch {
n_trials: usize,
max_depth: usize,
},
Progressive {
stages: usize,
complexity_growth: Float,
},
BayesianOptimization {
n_trials: usize,
acquisition_function: String,
},
}Expand description
Neural Architecture Search strategies
Variants§
Evolutionary
Evolutionary algorithm-based search
ReinforcementLearning
Reinforcement learning-based search
GDAS
Gradient-based differentiable architecture search
RandomSearch
Random search baseline
Progressive
Progressive search with increasing complexity
BayesianOptimization
Bayesian optimization for architecture search
Trait Implementations§
Source§impl Clone for NASStrategy
impl Clone for NASStrategy
Source§fn clone(&self) -> NASStrategy
fn clone(&self) -> NASStrategy
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 moreAuto Trait Implementations§
impl Freeze for NASStrategy
impl RefUnwindSafe for NASStrategy
impl Send for NASStrategy
impl Sync for NASStrategy
impl Unpin for NASStrategy
impl UnwindSafe for NASStrategy
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more