Skip to content

FineTune

MarcoDotIO edited this page Dec 5, 2022 · 1 revision

FineTune

The fine-tune job object itself that shows information pertaining to the job.

public struct FineTune: Codable, Identifiable 

Inheritance

Codable, Identifiable

Initializers

init(from:)

public init(from decoder: Decoder) throws 

Properties

id

The ID of the Fine-tune job.

public let id: String

object

The OpenAIObject object type of the Fine-tune job.

public let object: OpenAIObject

model

The model used for the Fine-tune job.

public let model: String

createdAt

The creation date of the Fine-tune job.

public let createdAt: Int

events

The array of events pertaining to the Fine-tune job.

public let events: [FineTuneEvent]

fineTunedModel

Unknown functionality. TODO:​ Find function of parameter.

public let fineTunedModel: String?

hyperparams

The hyperparameters used for tweaking the Fine-tuned model.

public let hyperparams: FineTuneHyperparamters

organizationId

The organization ID associated with the Fine-tune.

public let organizationId: String

resultFiles

List of files associated with test metrics.

public let resultFiles: [File]

status

The Fine-tune job status.

public let status: FineTuneStatus

validationFiles

The files used for editing hyperparameters for the Fine-tune model.

public let validationFiles: [File]

trainingFiles

The files used for training the Fine-tuned model.

public let trainingFiles: [File]

updatedAt

The most recent updated time of the Fine-tune job.

public let updatedAt: Int
Types
Global Functions
Clone this wiki locally