View source: R/cancel_fine_tune.R
cancel_fine_tune | R Documentation |
Cancel a running fine-tune job. See this page for details.
cancel_fine_tune(
fine_tune_id,
openai_api_key = Sys.getenv("OPENAI_API_KEY"),
openai_organization = NULL
)
fine_tune_id |
required; a length one character vector. |
openai_api_key |
required; defaults to |
openai_organization |
optional; defaults to |
For arguments description please refer to the official documentation.
Returns a list, elements of which contains information about the cancelled fine-tune.
Other fine-tune functions:
create_fine_tune()
,
delete_fine_tune_model()
,
list_fine_tune_events()
,
list_fine_tunes()
,
retrieve_fine_tune()
## Not run:
training_file <- system.file(
"extdata", "sport_prepared_train.jsonl", package = "openai"
)
validation_file <- system.file(
"extdata", "sport_prepared_train.jsonl", package = "openai"
)
training_info <- upload_file(training_file, "fine-tune")
validation_info <- upload_file(validation_file, "fine-tune")
info <- create_fine_tune(
training_file = training_info$id,
validation_file = validation_info$id,
model = "ada",
compute_classification_metrics = TRUE,
classification_positive_class = " baseball" # Mind space in front
)
id <- ifelse(
length(info$data$id) > 1,
info$data$id[length(info$data$id)],
info$data$id
)
cancel_fine_tune(fine_tune_id = id)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.