TunedModelCheckpoint

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

TunedModelCheckpoint for the Tuned Model of a Tuning Job.

Constructors

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

Properties

Link copied to clipboard
val checkpointId: String? = null

The ID of the checkpoint.

Link copied to clipboard
val endpoint: String? = null

The Endpoint resource name that the checkpoint is deployed to. Format: projects/{project}/locations/{location}/endpoints/{endpoint}.

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.