UPDATING AS NOW FIXED, IN CASE IT HELPS OTHERS, AS THERE ARE MANY THREADS ON THIS ISSUE. SUGGESTION TO OPENAI: if possible, update docs and cookbook with this.
This finally resolved itself but only after ~20 attempts. I didnāt do anything other than try running the line of code below that was mentioned in another thread.
openai.FineTune.retrieve(id=āā)
After I ran it, I tried to continue the ācreateā step again and it worked:
openai api fine_tunes.follow -i
Original Message below -----------
(Note that I āaggregatedā my rows to remove duplicate prompts as mentioned below, and given each prompt multiple categories in the ācompletionā field instead - seems thatās a better way to train it, but I still got a āfailedā error message for hours. )
I am also getting this same error and the response time from OpenAI is given as ā1 weekā.
Maybe Boris can help (Boris, I followed your recipeās approach - https://github.com/openai/openai-cookbook/blob/main/examples/Fine-tuned_classification.ipynb ).
Interesting that @phantbinh99 says:
"In the data set, I used many questions with the same meaning and the same answer, is that the problem?"
I am also using the same prompt in several places but with a different completion each time. This is because I am trying to assign multiple categories to an article, so there could be 3 categories that are relevant e.g.
Prompt
In the marketing process, companies work to understand consumers, create customer value, and build strong customer relationships. In the final step, companies reap the rewards of creating superior customer value in the form of sales, profits, and long-term customer equity.
Completion
marketing process
Prompt
In the marketing process, companies work to understand consumers, create customer value, and build strong customer relationships. In the final step, companies reap the rewards of creating superior customer value in the form of sales, profits, and long-term customer equity.
Completion
value creation
maybe I cannot have the same prompt a few times in the dataset, even if the completion is different each time. Should I create a single row with the categories aggregated for that prompt? Will this fix the error we are all getting?
Thanks very much
Mim