I am working on fine tuning a gpt-3.5-turbo model, yet i continue to get the same error when starting the fine-tuning job. **The job failed due to an invalid training file. Expected file to have JSONL format, where every line is a valid JSON dictionary. Line 1 is not a dictionary. ** My json file however looks good and doesn't have any errors when I use openai's json file checker code on the fine tuning tutorial page. How can I fix this error?
#Fine tuning GPT-3.5-turbo error
1 messages · Page 1 of 1 (latest)
I had a similar issue earlier today. My code was escaping Unicode characters, e.g. \u03c0 instead of π. OpenAI's parsing didn't approve of this and returned this same error.
My solution was to only escape some characters (like quotes) rather than all special characters.