TunedModelInfo

@Serializable
data class TunedModelInfo(val baseModel: String? = null, val createTime: Instant? = null, val updateTime: Instant? = null)

A tuned machine learning model.

Constructors

Link copied to clipboard
constructor(baseModel: String? = null, createTime: Instant? = null, updateTime: Instant? = null)

Properties

Link copied to clipboard
val baseModel: String? = null

ID of the base model that you want to tune.

Link copied to clipboard
@Serializable(with = InstantSerializer::class)
val createTime: Instant? = null

Date and time when the base model was created.

Link copied to clipboard
@Serializable(with = InstantSerializer::class)
val updateTime: Instant? = null

Date and time when the base model was last updated.