Skip to content

OpenAI.FineTuneJob.Create

Andrew Lambert edited this page Jan 1, 2024 · 1 revision

Method signatures

 Shared Function Create(TrainingFile As OpenAI.File, BaseModel As OpenAI.Model, Name As String = "") As OpenAI.FineTuneJob
 Shared Function Create(TrainingFile As OpenAI.FineTuneData, BaseModel As OpenAI.Model, Name As String = "") As OpenAI.FineTuneJob
 Shared Function Create(TrainingFileID As String, BaseModel As OpenAI.Model, Name As String = "") As OpenAI.FineTuneJob

Parameters

Create(OpenAI.File, OpenAI.Model, String)

Name Type Comment
TrainingFile File A previously uploaded training file.
BaseModel Model The base model to be trained.
Name String Optional. If specified, a custom suffix to be included in the resulting model ID.

Create(OpenAI.FineTuneData, OpenAI.Model, String)

Name Type Comment
TrainingFile FineTuneData A training file to be uploaded.
BaseModel Model The base model to be trained.
Name String Optional. If specified, a custom suffix to be included in the resulting model ID.

Create(String, OpenAI.Model, String)

Name Type Comment
TrainingFileID String The ID of a previously uploaded training file.
BaseModel Model The base model to be trained.
Name String Optional. If specified, a custom suffix to be included in the resulting model ID.

Return value

Returns a new instance of OpenAI.FineTuneJob.

Clone this wiki locally