Hi,
I was exploring OpenAI and my goal was to train the model with some specific set of question answers. I prepared the dataset in the following manner
{"prompt": "What are the services XYZ provides?", "completion": "Hi, XYZ provides Web and mobile application development services, Outbound call center solutions, and IVR services."} ...
I trained the model, then used the model with prompt
openai api completions.create -m my-generated-model-xyz123 -p "What are the services XYZ provides?"
Unfortunately, I am not getting the desired result. I’m sure, I am doing something wrong. I tried ada and davinchi for testing but no luck. Need your guidance to find out my mistake and fix the same.
Thanks in advanced.