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

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