Hi, I am trying to create my own chat bot and teach it everything I know about a subject that GPT knows nothing about. Essentially to create a professor on a niche subject.
Looking at youtube videos I can see you used to be able to do this in the playground interface but it’s not possible any more.
Then when asking chat GPT how to do it and to give code examples, none of the code examples work because it gives you deprecated code.
Third attempt at doing this involved looking at the docs and seeing under “fine tuning” that now you are supposed to prepare a .jsonl file in the right format and do something like …
openai api fine_tunes.create -t mypreparedfile.jsonl -m davinci
… on the command line.
Well I did this with my question and answer pairs and then went back to playground and saw that I had a new option on the drop list to select my fine tuned chat bot but even when I select that and ask it a question from my list that is in the .jsonl file I never get the answer that I taught it. Changing the gravity setting to 0 or 1 makes no difference either.
What am I doing wrong?
Is prompt training and fine tuning different? If so should I be starting with some tool other than that command line tool and if so, what is it?