pub struct ModelDiff {
pub common_parameters: Vec<String>,
pub only_in_first: Vec<String>,
pub only_in_second: Vec<String>,
pub shape_differences: Vec<ShapeDifference>,
pub value_differences: Vec<ValueDifference>,
pub param_counts: (usize, usize),
pub memory_footprints: (u64, u64),
}Expand description
Model difference analysis result
Fields§
§common_parameters: Vec<String>Parameters that exist in both models
only_in_first: Vec<String>Parameters only in first model
only_in_second: Vec<String>Parameters only in second model
shape_differences: Vec<ShapeDifference>Parameters with different shapes
value_differences: Vec<ValueDifference>Statistical differences for common parameters
param_counts: (usize, usize)Total parameter count for each model
memory_footprints: (u64, u64)Memory footprint for each model (in bytes)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ModelDiff
impl<'de> Deserialize<'de> for ModelDiff
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 ModelDiff
impl RefUnwindSafe for ModelDiff
impl Send for ModelDiff
impl Sync for ModelDiff
impl Unpin for ModelDiff
impl UnsafeUnpin for ModelDiff
impl UnwindSafe for ModelDiff
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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