Table of Contents

Class DatasetLineage

Namespace
AiDotNet.Models
Assembly
AiDotNet.dll

Lineage information for a dataset showing its origin and transformations.

public class DatasetLineage
Inheritance
DatasetLineage
Inherited Members

Properties

CreatedAt

Gets or sets the creation timestamp.

public DateTime CreatedAt { get; set; }

Property Value

DateTime

Creator

Gets or sets the creator.

public string? Creator { get; set; }

Property Value

string

DatasetName

Gets or sets the dataset name.

public string DatasetName { get; set; }

Property Value

string

SourceDataset

Gets or sets the source dataset (if derived).

public string? SourceDataset { get; set; }

Property Value

string

SourceVersion

Gets or sets the source version.

public int? SourceVersion { get; set; }

Property Value

int?

Transformations

Gets or sets the transformations applied.

public List<string> Transformations { get; set; }

Property Value

List<string>

UsedInRuns

Gets or sets training runs that used this dataset.

public List<string> UsedInRuns { get; set; }

Property Value

List<string>

Version

Gets or sets the version.

public int Version { get; set; }

Property Value

int