Learn R Programming

openaiRtools (version 0.2.2)

FineTuningJobsClient: Fine-tuning Jobs Client

Description

Manage fine-tuning jobs — create, list, retrieve, cancel, and monitor events. Access via client$fine_tuning$jobs.

Arguments

Methods


Method new()

Usage

FineTuningJobsClient$new(parent)


Method create()

Usage

FineTuningJobsClient$create(
  training_file,
  model = "gpt-3.5-turbo",
  hyperparameters = NULL,
  suffix = NULL,
  validation_file = NULL,
  integrations = NULL,
  seed = NULL,
  method = NULL
)


Method list()

Usage

FineTuningJobsClient$list(after = NULL, limit = NULL)


Method retrieve()

Usage

FineTuningJobsClient$retrieve(fine_tuning_job_id)


Method cancel()

Usage

FineTuningJobsClient$cancel(fine_tuning_job_id)


Method list_events()

Usage

FineTuningJobsClient$list_events(
  fine_tuning_job_id,
  after = NULL,
  limit = NULL
)


Method clone()

The objects of this class are cloneable with this method.

Usage

FineTuningJobsClient$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.