final case class FineTuningJob(id: String, createdAt: Int, error: Optional[FineTuningJob.Error], fineTunedModel: Optional[String], finishedAt: Optional[Int], hyperparameters: Hyperparameters, model: String, object: String, organizationId: String, resultFiles: Chunk[String], status: String, trainedTokens: Optional[Int], trainingFile: String, validationFile: Optional[String]) extends Product with Serializable
FineTuningJob model
The fine_tuning.job object represents a fine-tuning job that has been created through the API.
- id
The object identifier, which can be referenced in the API endpoints.
- createdAt
The Unix timestamp (in seconds) for when the fine-tuning job was created.
- error
For fine-tuning jobs that have
failed, this will contain more information on the cause of the failure.- fineTunedModel
The name of the fine-tuned model that is being created. The value will be null if the fine-tuning job is still running.
- finishedAt
The Unix timestamp (in seconds) for when the fine-tuning job was finished. The value will be null if the fine-tuning job is still running.
- hyperparameters
The hyperparameters used for the fine-tuning job. See the [fine-tuning guide](/docs/guides/fine-tuning) for more details.
- model
The base model that is being fine-tuned.
- object
The object type, which is always "fine_tuning.job".
- organizationId
The organization that owns the fine-tuning job.
- resultFiles
The compiled results file ID(s) for the fine-tuning job. You can retrieve the results with the [Files API](/docs/api-reference/files/retrieve-contents).
- status
The current status of the fine-tuning job, which can be either
validating_files,queued,running,succeeded,failed, orcancelled.- trainedTokens
The total number of billable tokens processed by this fine-tuning job. The value will be null if the fine-tuning job is still running.
- trainingFile
The file ID used for training. You can retrieve the training data with the [Files API](/docs/api-reference/files/retrieve-contents).
- validationFile
The file ID used for validation. You can retrieve the validation results with the [Files API](/docs/api-reference/files/retrieve-contents).
- Alphabetic
- By Inheritance
- FineTuningJob
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new FineTuningJob(id: String, createdAt: Int, error: Optional[FineTuningJob.Error], fineTunedModel: Optional[String], finishedAt: Optional[Int], hyperparameters: Hyperparameters, model: String, object: String, organizationId: String, resultFiles: Chunk[String], status: String, trainedTokens: Optional[Int], trainingFile: String, validationFile: Optional[String])
- id
The object identifier, which can be referenced in the API endpoints.
- createdAt
The Unix timestamp (in seconds) for when the fine-tuning job was created.
- error
For fine-tuning jobs that have
failed, this will contain more information on the cause of the failure.- fineTunedModel
The name of the fine-tuned model that is being created. The value will be null if the fine-tuning job is still running.
- finishedAt
The Unix timestamp (in seconds) for when the fine-tuning job was finished. The value will be null if the fine-tuning job is still running.
- hyperparameters
The hyperparameters used for the fine-tuning job. See the [fine-tuning guide](/docs/guides/fine-tuning) for more details.
- model
The base model that is being fine-tuned.
- object
The object type, which is always "fine_tuning.job".
- organizationId
The organization that owns the fine-tuning job.
- resultFiles
The compiled results file ID(s) for the fine-tuning job. You can retrieve the results with the [Files API](/docs/api-reference/files/retrieve-contents).
- status
The current status of the fine-tuning job, which can be either
validating_files,queued,running,succeeded,failed, orcancelled.- trainedTokens
The total number of billable tokens processed by this fine-tuning job. The value will be null if the fine-tuning job is still running.
- trainingFile
The file ID used for training. You can retrieve the training data with the [Files API](/docs/api-reference/files/retrieve-contents).
- validationFile
The file ID used for validation. You can retrieve the validation results with the [Files API](/docs/api-reference/files/retrieve-contents).
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- val createdAt: Int
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val error: Optional[FineTuningJob.Error]
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- val fineTunedModel: Optional[String]
- val finishedAt: Optional[Int]
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- val hyperparameters: Hyperparameters
- val id: String
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val model: String
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- val object: String
- val organizationId: String
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val resultFiles: Chunk[String]
- val status: String
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- val trainedTokens: Optional[Int]
- val trainingFile: String
- val validationFile: Optional[String]
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()