generative-ai-python icon indicating copy to clipboard operation
generative-ai-python copied to clipboard

Further tune a fine tuned model?

Open wired87 opened this issue 10 months ago • 3 comments

Description of the feature request:

Hey at the moment its just possible to tune a model once what makes the model not really dynamicly. It were be great to add the option to further tune a tuned model.

What problem are you trying to solve with this feature?

To make every models more diynamicly

Any other information you'd like to share?

Is something like that planed?

wired87 avatar Mar 28 '24 15:03 wired87

That should work. What happens if you pass the tuned model's name as the source for tuning another model?

MarkDaoust avatar Mar 29 '24 17:03 MarkDaoust

You mean (simplified) old data + new data = new model? I dont have tried it but thats also too expensive for speciffic cases where a lot of data in short sequences need to be feeded. It were be way better to have the option to feed / tune a single model multiple times with my own data to keep the model up to date

wired87 avatar Mar 30 '24 14:03 wired87

When you call "create_tuned_model" the source_model can either be a base model, or tuned model that you previously trained.

https://ai.google.dev/api/python/google/generativeai/create_tuned_model

MarkDaoust avatar May 17 '24 21:05 MarkDaoust