Class ModelComparison<T>
Comparison results between two model versions.
public class ModelComparison<T>
Type Parameters
TThe numeric data type used for calculations.
- Inheritance
-
ModelComparison<T>
- Inherited Members
Properties
ArchitectureChanged
Gets or sets whether the model architecture changed.
public bool ArchitectureChanged { get; set; }
Property Value
MetadataDifferences
Gets or sets the metadata differences.
public Dictionary<string, (object? Value1, object? Value2)> MetadataDifferences { get; set; }
Property Value
MetricDifferences
Gets or sets the metric differences.
public Dictionary<string, (T Value1, T Value2)> MetricDifferences { get; set; }
Property Value
- Dictionary<string, (T OldValue, T NewValue)>
Version1
Gets or sets the first model version.
public int Version1 { get; set; }
Property Value
Version2
Gets or sets the second model version.
public int Version2 { get; set; }