Table of Contents

Class ModelLineage

Namespace
AiDotNet.Models
Assembly
AiDotNet.dll

Lineage information for a model showing its origin and dependencies.

public class ModelLineage
Inheritance
ModelLineage
Inherited Members

Properties

CreatedAt

Gets or sets the creation timestamp.

public DateTime CreatedAt { get; set; }

Property Value

DateTime

Creator

Gets or sets the creator/user who trained this model.

public string? Creator { get; set; }

Property Value

string

ExperimentId

Gets or sets the experiment ID that produced this model.

public string? ExperimentId { get; set; }

Property Value

string

ModelName

Gets or sets the model name.

public string ModelName { get; set; }

Property Value

string

ParentModel

Gets or sets parent model information (if this was derived from another model).

public string? ParentModel { get; set; }

Property Value

string

ParentVersion

Gets or sets the parent model version.

public int? ParentVersion { get; set; }

Property Value

int?

RunId

Gets or sets the run ID that produced this model.

public string? RunId { get; set; }

Property Value

string

TrainingDataSource

Gets or sets the training data source.

public string? TrainingDataSource { get; set; }

Property Value

string

Version

Gets or sets the version.

public int Version { get; set; }

Property Value

int