How to strategize model training with new data coming in every day?
I have a mysql database in which new records are added every day to raw data. This raw data is cleaned and a ML model is trained with it once a week. What should be the best strategy to capture new data in model without fetching entire records( old new) and retraining from scratch. Im saving the models every week with pickle , can I just fit the previously saved model on new records. Is this an efficient methodology ?
Topic sql pandas predictive-modeling databases machine-learning
Category Data Science