Can I fine-tune the again a gpt-3.5-turbo fine tuned model with more data?

264 Views Asked by At

I had fined tuned GPT 3.5 turbo model, can I fine tune that model again with more data to get better result.

I tried to fine tune model again but I cannot,is any possible way.

Is prompt is very in good to fine tune a model.Without prompt, can we get same result with prompt fine tuning.

2

There are 2 best solutions below

2
On

yes you can fine-tune the open AI model again in the Incremential training way.

  • The new data set submitted for fine tuning will create a new model by name which also contain your previous dataset.
0
On

Yes, you can re-fine tune existing fine tunes model. Just pass the name of your current fine-tuned model into the model parameter when creating a fine-tuning job.

client.fine_tuning.jobs.create(
  training_file="file-id123", 
  model="your current fine-tune model name"
)