Description
It would be positive to get something a bit more hands on than the current end to end tutorial.
It's not that the end to end "workflow" is incomplete, but personally, it gave me a good intuition about how your framework works but it didn't really feel like after that I could go ahead and play alone, without maybe waiting for people to build end to end projects on top of this.
basic programming steps (not only shell commands, something in the middle of functional programming and OOP) like:
- load the base model;
- load the dataset we want to fine tune upon, maybe showing how it would be if we wanted to do our own? meaning what the workflow would be starting from a regular pandas dataframe and not necessarily calling a 1 line script;
- train/finetune the base model;
- save the LoRA adapter;
- reload the base model at x precision;
- merge the LoRA weights with the base model (this is probably automatically done in the training phase, so ignore if thats the case);
- Save the merged model and push to Hugging face Hub (this tbh is already enough what you have on your pages).
personally, i've used different tools for different projects and I think a finetune example mini project that's not shell commands on a-priori assembled files could help users. for example the concept of recipe is very nice and important, it could also enter the end of this possible future tutorial where we save it and maybe even load it into another total different model to try it, if thats even possible?
it doesn't have to have these exact steps, it's just a general idea :)
Activity