I’m fine-tuning a model and generating actions from text. I create a train.jsonl file, upload it, and fine-tune the model. However, when I try to get the name of the model I just created, it returns null.
I created model like this
const model = await openai.fineTuning.jobs.create({
training_file: process.env.FILE_ID,
model: 'babbage-002'
// model: 'davinci-002'
// model: 'davinci'
})
And try to get name of fine-tune model like this
const response = await openai.fineTuning.jobs.retrieve(
process.env.FINE_TUNE_ID
)
But it returns like this
data: {
object: ‘fine_tuning.job’,
id: ‘ftjob-NSFvxzJtTSfR5jcqQTfeDTCo’,
model: ‘babbage-002’,
created_at: 1722546992,
fine_tuned_model: null,
organization_id: ‘org-GLjhkXwkbQrLOvHk0762UcmL’,
result_files: [],
status: ‘running’,
validation_file: null,
training_file: ‘file-Lh1C4Vv1HDIv7LxXUGh9mIL9’,
hyperparameters: { n_epochs: 9, batch_size: 1, learning_rate_multiplier: 16 },
trained_tokens: null,
error: {},
user_provided_suffix: null,
seed: 1564492262,
estimated_finish: null,
integrations: []
}
Denis Prosvietov is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.