We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Example, adapted from the tutorial:
ps = makeParamSet( makeNumericParam("q", lower = -1, upper = 2), makeIntegerParam("v", lower = -2, upper = 3) ) des = generateDesign(n = 7, par.set = ps) des$y = c(1.20, 0.97, 0.91, 3.15, 0.58, 1.12, 0.50) ctrl = makeMBOControl() ctrl = setMBOControlInfill(ctrl, crit = makeMBOInfillCritAdaCB()) # !!!!!!!!!!!! opt.state = initSMBO(par.set = ps, design = des, control = ctrl, minimize = TRUE, noisy = FALSE) proposePoints(opt.state) x = data.frame(q = 1.7, v = 1) updateSMBO(opt.state, x = x, y = 2.19)
gives error
Error in control$infill.crit$fun(points = x, models = getOptStateModels(opt.state)[[1]], : unused argument (designs = getOptStateDesigns(opt.state))
The text was updated successfully, but these errors were encountered:
Okay, this is not an easy fix because naturally the Adaptive Infill Crit needs a progress value which is not necessarily present for SMBO.
Options:
setOptStateProgress()
Sorry, something went wrong.
No branches or pull requests
Example, adapted from the tutorial:
gives error
The text was updated successfully, but these errors were encountered: