TunedModel

@Serializable
data class TunedModel(val model: String? = null, val endpoint: String? = null, val checkpoints: List<TunedModelCheckpoint>? = null)

TunedModel for the Tuned Model of a Tuning Job.

Constructors

Link copied to clipboard
constructor(model: String? = null, endpoint: String? = null, checkpoints: List<TunedModelCheckpoint>? = null)

Properties

Link copied to clipboard

The checkpoints associated with this TunedModel. This field is only populated for tuning jobs that enable intermediate checkpoints.

Link copied to clipboard
val endpoint: String? = null

Output only. A resource name of an Endpoint. Format: projects/{project}/locations/{location}/endpoints/{endpoint}.

Link copied to clipboard
val model: String? = null

Output only. The resource name of the TunedModel. Format: projects/{project}/locations/{location}/models/{model}@{version_id} When tuning from a base model, the version_id will be 1. For continuous tuning, the version id will be incremented by 1 from the last version id in the parent model. E.g., projects/{project}/locations/{location}/models/{model}@{last_version_id + 1}