Table of Contents

Class ModelVersionInfo<T>

Namespace
AiDotNet.Models
Assembly
AiDotNet.dll

Information about a specific model version.

public class ModelVersionInfo<T>

Type Parameters

T

The numeric data type used for calculations.

Inheritance
ModelVersionInfo<T>
Inherited Members

Properties

CreatedAt

Gets or sets the creation timestamp.

public DateTime CreatedAt { get; set; }

Property Value

DateTime

Description

Gets or sets the description.

public string? Description { get; set; }

Property Value

string

Metadata

Gets or sets the model metadata.

public ModelMetadata<T>? Metadata { get; set; }

Property Value

ModelMetadata<T>

Stage

Gets or sets the current stage.

public ModelStage Stage { get; set; }

Property Value

ModelStage

Version

Gets or sets the version number.

public int Version { get; set; }

Property Value

int