Hello, I am working on fine-tuning gpt-3 for chatbot use case, my jsonl data is in this format as recommended by openai
{"prompt":"Summary: <summary of the interaction so far>\n\nSpecific information:<for example order details in natural language>\n\n###\n\nCustomer: <message1>\nAgent: <response1>\nCustomer: <message2>\nAgent:", "completion":" <response2>\n"}
{"prompt":"Summary: <summary of the interaction so far>\n\nSpecific information:<for example order details in natural language>\n\n###\n\nCustomer: <message1>\nAgent: <response1>\nCustomer: <message2>\nAgent: <response2>\nCustomer: <message3>\nAgent:", "completion":" <response3>\n"}
Now when i run this line:
!openai tools fine_tunes.prepare_data -f 'C:/Users/Salma/Downloads/FB_Messages2.jsonl'
it gives me this error:
Analyzing… ERROR in read_any_format validator: File [C:/Users/Salma/Downloads/FB_Messages2.jsonl](file:///C:/Users/Salma/Downloads/FB_Messages2.jsonl) does not exist. Aborting…
I made sure of the location of the file, I tried with removing the quotation, I tried to give it json instead of jsonl file. I am not quite sure what is the problem .