Hey there! I'm trying to fine-tune a GPT-3 model using a small dataset with around 100 rows in the format:
{
"question": "answer",
"question": "answer",
"question": "answer"
}
But when I try to run it through fine_tunes.prepare_data, I get this error:
ERROR in read_any_format validator: Your file `data.json` does not appear to be in valid JSON format. Please ensure your file is formatted as a valid JSON file.
I've got the latest OpenAI pip module and generated the file using json.dump(ensure_ascii=False), and I've even run it through a few online JSON validators. The file includes special unicode characters like emojis and åäö. Any idea what's going on?