pub struct FittedModelSummary {
pub base_summary: ModelSummary,
pub training_shape: Option<(usize, usize)>,
pub training_duration_ms: Option<f64>,
pub training_score: Option<f64>,
pub cv_score: Option<f64>,
pub iterations: Option<usize>,
pub converged: Option<bool>,
pub feature_names: Option<Vec<String>>,
}Expand description
Fitted model summary
Fields§
§base_summary: ModelSummaryBase model summary
training_shape: Option<(usize, usize)>Training data shape
training_duration_ms: Option<f64>Training duration in milliseconds
training_score: Option<f64>Training score (if available)
cv_score: Option<f64>Cross-validation score (if performed)
iterations: Option<usize>Number of iterations (for iterative models)
converged: Option<bool>Whether model converged
feature_names: Option<Vec<String>>Feature names (if available)
Trait Implementations§
Source§impl Clone for FittedModelSummary
impl Clone for FittedModelSummary
Source§fn clone(&self) -> FittedModelSummary
fn clone(&self) -> FittedModelSummary
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 FittedModelSummary
impl Debug for FittedModelSummary
Source§impl<'de> Deserialize<'de> for FittedModelSummary
impl<'de> Deserialize<'de> for FittedModelSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for FittedModelSummary
impl RefUnwindSafe for FittedModelSummary
impl Send for FittedModelSummary
impl Sync for FittedModelSummary
impl Unpin for FittedModelSummary
impl UnwindSafe for FittedModelSummary
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