pub struct AlgorithmSelectionResult {
pub selected_algorithms: Vec<RankedAlgorithm>,
pub dataset_characteristics: DatasetCharacteristics,
pub total_evaluation_time: f64,
pub n_algorithms_evaluated: usize,
pub best_algorithm: RankedAlgorithm,
pub improvement_over_baseline: f64,
pub explanation: String,
}Expand description
Result of algorithm selection process
Fields§
§selected_algorithms: Vec<RankedAlgorithm>Selected algorithm specifications
dataset_characteristics: DatasetCharacteristicsDataset characteristics used for selection
total_evaluation_time: f64Total evaluation time
n_algorithms_evaluated: usizeNumber of algorithms evaluated
best_algorithm: RankedAlgorithmBest performing algorithm
improvement_over_baseline: f64Performance improvement over baseline
explanation: StringRecommendation explanation
Trait Implementations§
Source§impl Clone for AlgorithmSelectionResult
impl Clone for AlgorithmSelectionResult
Source§fn clone(&self) -> AlgorithmSelectionResult
fn clone(&self) -> AlgorithmSelectionResult
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 moreSource§impl Debug for AlgorithmSelectionResult
impl Debug for AlgorithmSelectionResult
Auto Trait Implementations§
impl Freeze for AlgorithmSelectionResult
impl RefUnwindSafe for AlgorithmSelectionResult
impl Send for AlgorithmSelectionResult
impl Sync for AlgorithmSelectionResult
impl Unpin for AlgorithmSelectionResult
impl UnwindSafe for AlgorithmSelectionResult
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