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
Hi, may I ask, if after training I have another additional data point then does the model support update or do I have to retrain from the beginning ? I checked the doc and there was update_training_values() but it does not appear to add additional data instead it resets the train set. Thanks a lot.
The text was updated successfully, but these errors were encountered:
Model predictions are space-dependent. Adding a point to the model means recomputing the model all over the space. When using hyperparameters, we can't know beforehand where the model will be impacted by adding a point neither what the influence will be. The only way to know that is to build a new model and reset the training set. This is related to leave-one-out error.
This is why for optimization (see applications/ego), we are building a new model for every point we add.
Hi, may I ask, if after training I have another additional data point then does the model support update or do I have to retrain from the beginning ? I checked the doc and there was update_training_values() but it does not appear to add additional data instead it resets the train set. Thanks a lot.
The text was updated successfully, but these errors were encountered: