Is there a way to do transfer learning with a decision tree or a random forest model? Concretely, I was wondering if there is a good and easy way of doing so in Python with a model trained with Scikit-learn.
All I can think of is training a random forest on the original dataset, and when new data arrive, train new trees and add these to your model. However, I wonder if this is a good approach and if there are any other better methods.