Table of Contents

Class ModelComparison<T>

Namespace
AiDotNet.Models
Assembly
AiDotNet.dll

Comparison results between two model versions.

public class ModelComparison<T>

Type Parameters

T

The 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

bool

MetadataDifferences

Gets or sets the metadata differences.

public Dictionary<string, (object? Value1, object? Value2)> MetadataDifferences { get; set; }

Property Value

Dictionary<string, (object Value1, object Value2)>

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

int

Version2

Gets or sets the second model version.

public int Version2 { get; set; }

Property Value

int