Thanks for your response Paul!
Initially I have fine tuned with davinci
model with a small data file (10KB) and it gets fine tuned with succeeded
status. Also, I got fine_tuned_model
name as davinci:ft-org-name-2022-12-22-11-29-14
.
Response:
{
"data": [
{
"created_at": 1671705275,
"fine_tuned_model": "davinci:ft-org-name-2022-12-22-11-29-14",
"hyperparams": {
"batch_size": 1,
"learning_rate_multiplier": 0.1,
"n_epochs": 4,
"prompt_loss_weight": 0.01
},
"id": "ft-e0IrBwFvFDMMZJPl2FCxBTBW",
"model": "davinci",
"object": "fine-tune",
"organization_id": "org-etoq30QMSdIOT2QfJeLPIXrE",
"result_files": [
{
"bytes": 6424,
"created_at": 1671708555,
"filename": "compiled_results.csv",
"id": "file-JitfsAzLazbG7txiyJI5KgD0",
"object": "file",
"purpose": "fine-tune-results",
"status": "processed",
"status_details": null
}
],
"status": "succeeded",
"training_files": [
{
"bytes": 46150,
"created_at": 1671693460,
"filename": "blazor-speeddial.jsonl",
"id": "file-MSjf7HkykF19erFRSQMAZOaV",
"object": "file",
"purpose": "fine-tune",
"status": "processed",
"status_details": null
}
],
"updated_at": 1671708555,
"validation_files": []
}
],
"object": "list"
}
Then, I tried to fine tune with another data file (size 9KB) with previously fine tuned model name (i.e.,) davinci:ft-org-name-2022-12-22-11-29-14
and i got the below response as failed
status.
{
"data": [
{
"created_at": 1672213412,
"fine_tuned_model": null,
"hyperparams": {
"batch_size": null,
"learning_rate_multiplier": null,
"n_epochs": 4,
"prompt_loss_weight": 0.01
},
"id": "ft-daUgFK1lmXgb2LeLWQncI4se",
"model": "davinci:ft-org-name-2022-12-22-11-29-14",
"object": "fine-tune",
"organization_id": "org-etoq30QMSdIOT2QfJeLPIXrE",
"result_files": [],
"status": "failed",
"training_files": [
{
"bytes": 15228579,
"created_at": 1672213270,
"filename": "finetuning_prepared.jsonl",
"id": "file-2oviTsUgI4VYd5iR5QP2J0FE",
"object": "file",
"purpose": "fine-tune",
"status": "processed",
"status_details": null
}
],
"updated_at": 1672213501,
"validation_files": []
}
],
"object": "list"
}
How could I fine tune with davinci:ft-org-name-2022-12-22-11-29-14
model again and again?