pub struct ChangeSummaryInfo {
pub total_layers_changed: usize,
pub overall_change_magnitude: f64,
pub change_patterns: Vec<String>,
pub most_changed_layers: Vec<String>,
pub change_distribution: HashMap<String, f64>,
pub structural_changes: bool,
pub parameter_changes: bool,
pub hyperparameter_changes: bool,
pub architectural_changes: bool,
pub change_summary: String,
}
Fields§
§total_layers_changed: usize
§overall_change_magnitude: f64
§change_patterns: Vec<String>
§most_changed_layers: Vec<String>
§change_distribution: HashMap<String, f64>
§structural_changes: bool
§parameter_changes: bool
§hyperparameter_changes: bool
§architectural_changes: bool
§change_summary: String
Trait Implementations§
Source§impl Clone for ChangeSummaryInfo
impl Clone for ChangeSummaryInfo
Source§fn clone(&self) -> ChangeSummaryInfo
fn clone(&self) -> ChangeSummaryInfo
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 ChangeSummaryInfo
impl Debug for ChangeSummaryInfo
Source§impl PartialEq for ChangeSummaryInfo
impl PartialEq for ChangeSummaryInfo
Source§impl Serialize for ChangeSummaryInfo
impl Serialize for ChangeSummaryInfo
impl StructuralPartialEq for ChangeSummaryInfo
Auto Trait Implementations§
impl Freeze for ChangeSummaryInfo
impl RefUnwindSafe for ChangeSummaryInfo
impl Send for ChangeSummaryInfo
impl Sync for ChangeSummaryInfo
impl Unpin for ChangeSummaryInfo
impl UnwindSafe for ChangeSummaryInfo
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