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?
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:
Hope this helps.
Thank you 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)
Hope this helps.