I’m having errors when trying to create certain fine-tune jobs. This didn’t happen for my other fine-tune jobs (with other data), and won’t happen if I run another job (with other data) right now.
I’m trying to fine-tune gpt-4o-mini-2024-07-18
, without tool calls. This seems irrelevant to the model as it also happens if I select gpt-4o-2024-08-06
.
On HTTP API, it says:
{
"name": "InternalServerError",
"message": "Error code: 500 - {'error': {'message': 'The server had an error processing your request. Sorry about that! You can retry your request, or contact us through our help center at help.openai.com if you keep seeing this error. (Please include the request ID req_d2bd33bc5d3ec538b29c08f2d93a33d4 in your email.)', 'type': 'server_error', 'param': None, 'code': None}}",
"stack": "---------------------------------------------------------------------------
InternalServerError Traceback (most recent call last)
Cell In[75], line 1
...
1049 retries_taken=options.get_max_retries(self.max_retries) - retries,
1050 )
(call stack hidden as they don’t matter)
When trying to perform the same fine-tuning task on WebUI/Playground, the following error (as a red banner) shows up after clicking “Submit”:
Error creating job: NetworkError when attempting to fetch resource.
The files are in the storage, and the IDs are copied from there.
I have used the data check script and did not find any errors; all data sizes are also far from limit.
Any hints on why this could happen?
(I saw a forum post titled “API Error code: 500 - fine tuned model” [791933] with potentially similar issue. But a) I am not sure if it’s the same; b) I’m using a different setting – pure chat completion without tool call.)