Increamental training. how to train my already train model with new dataset collab

I am using Collaborative filtering using fastai. i want to train my already trained model with new dataset and dataframe.

Please help me out.

Initialize the new training with the already trained weights of your trained model, That’s it :wink:

can you please help me out… how to load older model and train with new data set… how can i start new training with already trained weight?

First load the trained model:

learner.load(‘trainedModel’)

then just perform a training as before. Don’t forget to use the learning rate finder and to adapt the learning rate.