You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems like you can create a new model with a data set and save it and load it up, but how do I keep retraining the model?
I'm expecting the flow to be:
Model.new(starter_data)
model.save (to the database or file)
.... later
Model.load(from db or file)
model.train(new_data)
I'm not sure how to do that though. Train seems to be a private method on model, so I'm not sure how to get more data to an existing model without needing to just load it all up from the new method all over again, but with a large dataset that's difficult.
The text was updated successfully, but these errors were encountered:
It seems like you can create a new model with a data set and save it and load it up, but how do I keep retraining the model?
I'm expecting the flow to be:
.... later
I'm not sure how to do that though. Train seems to be a private method on model, so I'm not sure how to get more data to an existing model without needing to just load it all up from the
new
method all over again, but with a large dataset that's difficult.The text was updated successfully, but these errors were encountered: