pub struct NASConfig {
pub strategy: NASStrategy,
pub search_space: ArchitectureSearchSpace,
pub evaluation_metric: String,
pub max_evaluation_time: Option<u64>,
pub early_stopping_patience: usize,
pub validation_split: Float,
pub random_state: Option<u64>,
pub parallel_evaluations: usize,
}Expand description
NAS configuration
Fields§
§strategy: NASStrategy§search_space: ArchitectureSearchSpace§evaluation_metric: String§max_evaluation_time: Option<u64>§early_stopping_patience: usize§validation_split: Float§random_state: Option<u64>§parallel_evaluations: usizeTrait Implementations§
Auto Trait Implementations§
impl Freeze for NASConfig
impl RefUnwindSafe for NASConfig
impl Send for NASConfig
impl Sync for NASConfig
impl Unpin for NASConfig
impl UnwindSafe for NASConfig
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