Checkpoint

@Serializable
data class Checkpoint(val checkpointId: String? = null, val epoch: Long? = null, val step: Long? = null)

Describes the machine learning model version checkpoint.

Constructors

Link copied to clipboard
constructor(checkpointId: String? = null, epoch: Long? = null, step: Long? = null)

Properties

Link copied to clipboard
val checkpointId: String? = null

The ID of the checkpoint.

Link copied to clipboard
val epoch: Long? = null

The epoch of the checkpoint.

Link copied to clipboard
val step: Long? = null

The step of the checkpoint.