Class DatasetLineage
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
Creator
Gets or sets the creator.
public string? Creator { get; set; }
Property Value
DatasetName
Gets or sets the dataset name.
public string DatasetName { get; set; }
Property Value
SourceDataset
Gets or sets the source dataset (if derived).
public string? SourceDataset { get; set; }
Property Value
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
UsedInRuns
Gets or sets training runs that used this dataset.
public List<string> UsedInRuns { get; set; }
Property Value
Version
Gets or sets the version.
public int Version { get; set; }