-
Notifications
You must be signed in to change notification settings - Fork 18
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
syntax for providing a list of :initial-points for bopp #1
Comments
Hey Boris Could you go into a bit more detail about exactly what behavior you are trying to achieve with the initial points? At the moment, then :initial-points is a parameter of deodorant (rather than bopp itself) and thus inevitably takes in inputs of the form required for the Bayesian optimization scheme, rather than bopp. Its syntax is just of the form The intention of :initial-points was to give a way of "restarting" the Bayesian optimization with some previously evaluated points, hence it is necessary to be in the format of deodorant (not BOPP) to avoid re-evaluation of these points. If you instead want a means of forcing the initial-thetas to take on a certain set of values, I could add this quite easily, but this would require a separate input. |
Hi Tom. Thanks for the explanation. For some reason I can't get the "restarting" of the initial-points to work. I should try that with a more minimal model. But you are right, yeah, I am looking for a way to suggest to BOPP to evaluate some initial-thetas defined by me (manual fits) in addition to the num-initial-points it samples itself. |
I am trying to figure out how to correctly provide a list of initial points in BOPP. Am I overlooking something simple?
Here are the details. The doopt, the output of BOPP, and the defopt.
And from the output I get before the thing crashes is that BOPP doesn't like the format I use for initial-points. One, it reformats the map into a collcetion of [keyword values], and two, it drops the last keyword-value pair ({:beta_p 0.16744317384178953} in this case)
If I do not specify any initial points, BOPP runs fine, and feeds the run-epidemic function with the sampled maps of priors that the run-epidemic function expects.
The text was updated successfully, but these errors were encountered: