How to see a list of your fine-tuned models?

Hey,

when experimenting with the GPT models using the API, I think I have started multiple fine-tuning jobs. Is there a way to see which fine-tuning jobs / models you currently have running so you can close them down if needed?

Yes.

The API method to list all fine-tuned models in your account and to cancel a pending 'tune is in the OpenAI API docs in the fine-tuning section.

It always a good idea to review the docs:

OpenAP API: Fine-Tuning

Hope this helps.

2 Likes

Thank you :slight_smile: I forgot to mention that I am using the openai python package, and I was not able to see that functionality there?

It’s always a good idea to look a the “real” API docs and not rely solely in API wrappers written in other languages (Python, Ruby, Javascript, etc).

If you are using a Python OpenAI API wrapper and it does not have the list and cancel methods, you should consider finding a different / better / more complete Python API wrapper or fork it and write your own required method(s) (of course) :slight_smile:

Hope this helps.