Why does the fine-tuned model not return my customized data as prompted?

Why does the fine-tuned model not return my customized data as prompted (for example: ABC system admin info, name: jack, mail: xxx@abc.com, tel: 123456)?

My homework steps:

  1. Prepare jsonl file 2. Upload to openai 3. Generate job 4. View the new model after fine-tuning
  2. Call the fine-tuned model
    The results did not return the data I defined.
1 Like

Fine-tuning isn’t meant for data retrieval…

See:

Look into RAG for data retrieval…

1 Like

OK.Maybe I don’t understand this sentence accurately(Ability to train on more examples than can fit in a prompt ). So fine-tuning does not support training with custom data? Is it just an optimization of the model’s existing data?

Do you mean to use embeddings?
But I don’t quite understand what is RAG,can you give me more details?

1 Like

Yes, embeddings, sorry.

RAG = Retrieval Augmented Generation… If you search the forums, you’ll find a lot of useful posts and tools.

2 Likes

Thank you very much. I also want to confirm that embeddings can realize the training and use of own data, which is the RAG you mentioned, right?
Yes, I will search the forum later.