Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Does the models support update ? #331

Open
dangmanhtruong1995 opened this issue Aug 30, 2021 · 1 comment
Open

Does the models support update ? #331

dangmanhtruong1995 opened this issue Aug 30, 2021 · 1 comment
Labels

Comments

@dangmanhtruong1995
Copy link

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.

@Paul-Saves
Copy link
Contributor

Paul-Saves commented Aug 30, 2021

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.

@relf relf added the question label Jun 9, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants