Skip to content

@ralphschuler.ai function caller.index.<internal>.OpenAI.FineTuning.Jobs.FineTuningJob

github-actions edited this page Nov 26, 2023 · 1 revision

Interface: FineTuningJob

FineTuning.Jobs.FineTuningJob

The fine_tuning.job object represents a fine-tuning job that has been created through the API.

Table of contents

Properties

Properties

created_at

created_at: number

The Unix timestamp (in seconds) for when the fine-tuning job was created.

Defined in

node_modules/openai/resources/fine-tuning/jobs.d.ts:52


error

error: null | Error

For fine-tuning jobs that have failed, this will contain more information on the cause of the failure.

Defined in

node_modules/openai/resources/fine-tuning/jobs.d.ts:57


fine_tuned_model

fine_tuned_model: null | string

The name of the fine-tuned model that is being created. The value will be null if the fine-tuning job is still running.

Defined in

node_modules/openai/resources/fine-tuning/jobs.d.ts:62


finished_at

finished_at: null | number

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.

Defined in

node_modules/openai/resources/fine-tuning/jobs.d.ts:67


hyperparameters

hyperparameters: Hyperparameters

The hyperparameters used for the fine-tuning job. See the fine-tuning guide for more details.

Defined in

node_modules/openai/resources/fine-tuning/jobs.d.ts:73


id

id: string

The object identifier, which can be referenced in the API endpoints.

Defined in

node_modules/openai/resources/fine-tuning/jobs.d.ts:48


model

model: string

The base model that is being fine-tuned.

Defined in

node_modules/openai/resources/fine-tuning/jobs.d.ts:77


object

object: "fine_tuning.job"

The object type, which is always "fine_tuning.job".

Defined in

node_modules/openai/resources/fine-tuning/jobs.d.ts:81


organization_id

organization_id: string

The organization that owns the fine-tuning job.

Defined in

node_modules/openai/resources/fine-tuning/jobs.d.ts:85


result_files

result_files: string[]

The compiled results file ID(s) for the fine-tuning job. You can retrieve the results with the Files API.

Defined in

node_modules/openai/resources/fine-tuning/jobs.d.ts:91


status

status: "cancelled" | "failed" | "queued" | "validating_files" | "running" | "succeeded"

The current status of the fine-tuning job, which can be either validating_files, queued, running, succeeded, failed, or cancelled.

Defined in

node_modules/openai/resources/fine-tuning/jobs.d.ts:96


trained_tokens

trained_tokens: null | number

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.

Defined in

node_modules/openai/resources/fine-tuning/jobs.d.ts:101


training_file

training_file: string

The file ID used for training. You can retrieve the training data with the Files API.

Defined in

node_modules/openai/resources/fine-tuning/jobs.d.ts:106


validation_file

validation_file: null | string

The file ID used for validation. You can retrieve the validation results with the Files API.

Defined in

node_modules/openai/resources/fine-tuning/jobs.d.ts:112

Typescript Libraries

Modules

Namespaces

Clone this wiki locally