-
Notifications
You must be signed in to change notification settings - Fork 5
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
optimization for a finite number of candidate locations #14
Comments
A bit of reasoning after dealing with the issue. Now we can specify When we want to thin -- choose a smaller set of points -- an existing sample configuration, we use a finite set of candidate locations placed on a (generally) coarse irregular grid of points. If the optimization takes place in the feature space, e.g. We also need the boundaries of the marginal sampling strata of each of the covariates. Currently, these boundaries are computed from
There are a few possible solutions:
Because candidate locations are far apart from each other, we have to choose the appropriate values for the maximum and minimum jittering in the x and y coordinates. Perhaps we should allow sample points to freely move around, without (arithmetically) reducing the jittering at the end of each Markov Chain. This means that we have to change the annealing schedule ( To be continued... |
I am not sure it makes any difference whether In any case, the changes you made with One last thing: with the change that you made, during the optimization a message is issued when a location is already occupied. While this is in principle interesting, I receive hundreds of these messages and it makes unreadable the progress bar. Would it be an idea to remove this message? |
Is there a way to optimize a design for a finite number of candidate locations? I see this is implemented here: https://github.com/samuel-rosa/spsann/blob/master/R/spJitter.R but not available yet. So far what I do is to modify internally the
spJitter
function:Note that I have to call
.spJitterCpp
which uses_spsann_spJitterCpp
, while here: https://github.com/samuel-rosa/spsann/blob/master/R/RcppExports.R the same function is called differently (spsann_spJitterCpp
is this normal?).The text was updated successfully, but these errors were encountered: