I am making an application where I want to know which models are available for fine-tuning.
When I use the API call “List models” and look in the “allow-fine-tuning” inside “permission” in the response it says that ada, danvinci, curie and babbage is not allowed. However mdoels like if-davinci:3.0.0, davinci-if:3.0.0 and davinci-instruct-beta:2.0.0 are allowed.
This seems to contrast openai’s current documentation that says only davinci , curie , ada , and babbage are available: OpenAI API.
I have an opinion.
You can check which models you can finetune using this command in python.
import openai
OPENAI_API_KEY=“Your_Key”
openai.api_key = OPENAI_API_KEY
openai.Model.list()
Here, only “allow_fine_tuning”: true models you can finetune.