Table of Contents

Class CheckpointMetadata<T>

Namespace
AiDotNet.Models
Assembly
AiDotNet.dll

Contains metadata about a checkpoint without loading the full checkpoint data.

public class CheckpointMetadata<T>

Type Parameters

T

The numeric data type.

Inheritance
CheckpointMetadata<T>
Inherited Members

Properties

CheckpointId

Gets or sets the checkpoint ID.

public string CheckpointId { get; set; }

Property Value

string

CreatedAt

Gets or sets the creation timestamp.

public DateTime CreatedAt { get; set; }

Property Value

DateTime

Epoch

Gets or sets the epoch number.

public int Epoch { get; set; }

Property Value

int

FilePath

Gets or sets the file path.

public string? FilePath { get; set; }

Property Value

string

FileSizeBytes

Gets or sets the file size in bytes.

public long FileSizeBytes { get; set; }

Property Value

long

Metrics

Gets or sets the metrics.

public Dictionary<string, T> Metrics { get; set; }

Property Value

Dictionary<string, T>

Step

Gets or sets the step number.

public int Step { get; set; }

Property Value

int