Am trying to add some more prompts to the existing model, however when i do that the old one just goes away and I have to create a new fine tuned model which is not cost effective.
What i have tried till now
Original model:
openai api fine_tunes.create -t “test_prepared.jsonl” -m davinci --suffix “test” Model created : davinci:ft-personal:test-2023-02-12-14-39-06
fine tune the existing tuned model
openai api fine_tunes.create -t “test_prepared_2.jsonl” -m davinci:ft-personal:test-2023-02-12-14-39-06 --suffix “test”
Model created : davinci:ft-personal:test-2023-02-<>
Newly created model works only with new data set and old data is ignored.
The same, I have asked and complained about this last time. You have to pay the whole amount of data no matter how many examples you want to add to the previous training data. Fine-tuning an existing fine-tuned model does not mean “Update your existing data” , instead it aims to create a very new model that you have to pay from scartch. But it should not be like this.
Yes, it’s not an amendment, it creates another one. So if you want to include the newest examples, you have to fine-tune the whole data including the previous one again.
Thanks for the reply, basically the two command what i have list is how i created. Did not use any additional params.
And for the data, might not be able to post directly the data.
ex :
first jsonl → has use case specific data
second jsonl → this has general data prompts like Hi , hello and getting things.
Post fine tuning the existing tuned model… it just took greeting as base data and ignored and original data.