pub enum DiffResult {
Show 48 variants
Added(String, Value),
Removed(String, Value),
Modified(String, Value, Value),
TypeChanged(String, Value, Value),
TensorShapeChanged(String, Vec<usize>, Vec<usize>),
TensorStatsChanged(String, TensorStats, TensorStats),
TensorAdded(String, TensorStats),
TensorRemoved(String, TensorStats),
ModelArchitectureChanged(String, ModelInfo, ModelInfo),
LearningProgress(String, LearningProgressInfo),
ConvergenceAnalysis(String, ConvergenceInfo),
AnomalyDetection(String, AnomalyInfo),
GradientAnalysis(String, GradientInfo),
MemoryAnalysis(String, MemoryAnalysisInfo),
InferenceSpeedAnalysis(String, InferenceSpeedInfo),
RegressionTest(String, RegressionTestInfo),
AlertOnDegradation(String, AlertInfo),
ReviewFriendly(String, ReviewFriendlyInfo),
ChangeSummary(String, ChangeSummaryInfo),
RiskAssessment(String, RiskAssessmentInfo),
ArchitectureComparison(String, ArchitectureComparisonInfo),
ParamEfficiencyAnalysis(String, ParamEfficiencyInfo),
HyperparameterImpact(String, HyperparameterInfo),
LearningRateAnalysis(String, LearningRateInfo),
DeploymentReadiness(String, DeploymentReadinessInfo),
PerformanceImpactEstimate(String, PerformanceImpactInfo),
GenerateReport(String, ReportInfo),
MarkdownOutput(String, MarkdownInfo),
IncludeCharts(String, ChartInfo),
EmbeddingAnalysis(String, EmbeddingInfo),
SimilarityMatrix(String, SimilarityMatrixInfo),
ClusteringChange(String, ClusteringInfo),
AttentionAnalysis(String, AttentionInfo),
HeadImportance(String, HeadImportanceInfo),
AttentionPatternDiff(String, AttentionPatternInfo),
QuantizationAnalysis(String, QuantizationAnalysisInfo),
TransferLearningAnalysis(String, TransferLearningInfo),
ExperimentReproducibility(String, ExperimentReproducibilityInfo),
EnsembleAnalysis(String, EnsembleAnalysisInfo),
HyperparameterComparison(String, HyperparameterComparisonInfo),
LearningCurveAnalysis(String, LearningCurveInfo),
StatisticalSignificance(String, StatisticalSignificanceInfo),
NumpyArrayChanged(String, NumpyArrayStats, NumpyArrayStats),
NumpyArrayAdded(String, NumpyArrayStats),
NumpyArrayRemoved(String, NumpyArrayStats),
MatlabArrayChanged(String, MatlabArrayStats, MatlabArrayStats),
MatlabArrayAdded(String, MatlabArrayStats),
MatlabArrayRemoved(String, MatlabArrayStats),
}Variants§
Added(String, Value)
Removed(String, Value)
Modified(String, Value, Value)
TypeChanged(String, Value, Value)
TensorShapeChanged(String, Vec<usize>, Vec<usize>)
TensorStatsChanged(String, TensorStats, TensorStats)
TensorAdded(String, TensorStats)
TensorRemoved(String, TensorStats)
ModelArchitectureChanged(String, ModelInfo, ModelInfo)
LearningProgress(String, LearningProgressInfo)
ConvergenceAnalysis(String, ConvergenceInfo)
AnomalyDetection(String, AnomalyInfo)
GradientAnalysis(String, GradientInfo)
MemoryAnalysis(String, MemoryAnalysisInfo)
InferenceSpeedAnalysis(String, InferenceSpeedInfo)
RegressionTest(String, RegressionTestInfo)
AlertOnDegradation(String, AlertInfo)
ReviewFriendly(String, ReviewFriendlyInfo)
ChangeSummary(String, ChangeSummaryInfo)
RiskAssessment(String, RiskAssessmentInfo)
ArchitectureComparison(String, ArchitectureComparisonInfo)
ParamEfficiencyAnalysis(String, ParamEfficiencyInfo)
HyperparameterImpact(String, HyperparameterInfo)
LearningRateAnalysis(String, LearningRateInfo)
DeploymentReadiness(String, DeploymentReadinessInfo)
PerformanceImpactEstimate(String, PerformanceImpactInfo)
GenerateReport(String, ReportInfo)
MarkdownOutput(String, MarkdownInfo)
IncludeCharts(String, ChartInfo)
EmbeddingAnalysis(String, EmbeddingInfo)
SimilarityMatrix(String, SimilarityMatrixInfo)
ClusteringChange(String, ClusteringInfo)
AttentionAnalysis(String, AttentionInfo)
HeadImportance(String, HeadImportanceInfo)
AttentionPatternDiff(String, AttentionPatternInfo)
QuantizationAnalysis(String, QuantizationAnalysisInfo)
TransferLearningAnalysis(String, TransferLearningInfo)
ExperimentReproducibility(String, ExperimentReproducibilityInfo)
EnsembleAnalysis(String, EnsembleAnalysisInfo)
HyperparameterComparison(String, HyperparameterComparisonInfo)
LearningCurveAnalysis(String, LearningCurveInfo)
StatisticalSignificance(String, StatisticalSignificanceInfo)
NumpyArrayChanged(String, NumpyArrayStats, NumpyArrayStats)
NumpyArrayAdded(String, NumpyArrayStats)
NumpyArrayRemoved(String, NumpyArrayStats)
MatlabArrayChanged(String, MatlabArrayStats, MatlabArrayStats)
MatlabArrayAdded(String, MatlabArrayStats)
MatlabArrayRemoved(String, MatlabArrayStats)
Trait Implementations§
Source§impl Debug for DiffResult
impl Debug for DiffResult
Source§impl PartialEq for DiffResult
impl PartialEq for DiffResult
Source§impl Serialize for DiffResult
impl Serialize for DiffResult
impl StructuralPartialEq for DiffResult
Auto Trait Implementations§
impl Freeze for DiffResult
impl RefUnwindSafe for DiffResult
impl Send for DiffResult
impl Sync for DiffResult
impl Unpin for DiffResult
impl UnwindSafe for DiffResult
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> 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