From the course: OpenAI API: Fine-Tuning
Unlock this course with a free trial
Join today to access over 24,900 courses taught by industry experts.
Getting the model name once the job is completed - OpenAI API Tutorial
From the course: OpenAI API: Fine-Tuning
Getting the model name once the job is completed
- [Instructor] Some time has passed and I want to check if my job is now completed. So I'll rerun this request to retrieve job id. Let's see what happens. Now I get the same job ID and then status succeeded and train tokens 34,179. So this tells me the job is now completed. I can go and check further by running this line here, which gives me all the events, and then I get more information. So here you can see I've created a new fine tuned model. It has this long name here. Then I also have checkpoints for step 100, 200, and 300, and I get the model name for each of those. That means I can now start using this model. And to do that, I'll use retrieve again and just get the fine tuned model name so that I can refer to it later in my code. I'll do that down here. This gives me just the name. It's this long name here, and I can now use this name either to run requests against the model, to use it as a regular model, or to fine tune a new model on top of the existing new fine tuned model…
Contents
-
-
-
-
(Locked)
Fine-tuning through the API58s
-
(Locked)
Uploading training data to the API2m 32s
-
(Locked)
Creating a fine-tuning job through the API2m 9s
-
(Locked)
Retrieving a fine-tuning job and checking the status3m 28s
-
(Locked)
Getting the model name once the job is completed1m 10s
-
(Locked)
Using the fine-tuned model through the API1m 46s
-
(Locked)
Cancelling a fine-tuning job1m 2s
-
(Locked)
-