-
-
Notifications
You must be signed in to change notification settings - Fork 47
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
infill.crit="ei" does not work with any model #8
Comments
It works with any regr. model that is able to provide predict.type="se". If the model does not, you still have the option to use makeBaggingWrapper to bootstrap the se estimator. Should be mentioned in tutorial, help text and maybe error message. |
Jakob, please for now check (in code) that the model can predict "se" for the infill crits that need "se". Then close this |
checkStuff now checks, if the infill criterion needs se estimation and if the learner has support for that. If not the an error message is presented to the user with the hint to use makeBaggingWrapper. |
Huh? We already had that check!
Why did you basically add the same lines (without lcb, which also need se)? |
Nadja, can you please explain you original problem? |
Also check that we have a unit test for EI with model != km! |
Yes, it works. At the moment I am using "ei" with randomForest for example. |
Nadja, do you have any remaining issues? Other, Jakob, pls check the unit tests and then close this, when the checkStuuf method is fixed again |
Fixed checkStuff. We have a unit test for EI with model != Kriging already in test_infillcrits. |
infill.crit="ei" does not work with any model (at the moment just with kriging model)
The text was updated successfully, but these errors were encountered: