-
Notifications
You must be signed in to change notification settings - Fork 6
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
include center points/replicates to design #4
Comments
Can you further explain what you mean? I think there is already a functionality to manually define a number of experiments that will definitely be part of the design. These experiments are excluded from the optimization process (they are still considered for optimizing all other experiments, but will remain constant during optimization). You can make use of this with the |
The purpose of replicates (an experiment reproduced a given number, say two, of times) to quantify the experimental uncertainty. Center points are a few experiments (can be the same as the replicates) somewhere in near the middle of the design hypervolume that can help assessing nonlinearity in the modeling. These experiments must be excluded from the optimization procedure, they just need to be added at the end. |
Okok, got you. When I implemented this feature my thought was that it is advantageous for the optimizer to use the information that there are certain fixed experiments. For example when you manually set two replicants in one corner of the design space (for whatever reason you want) the optimizer will know this and will not place a third point at the same corner. Would you disagree with this? |
I think that |
Okay, I will add such an argument (if no one else does it before) soon :) |
@jsdiazpo a flag for adding center points / replicates to a design is a good idea. @Osburg You're right that the I don't see the benefit of adding center points only after the optimization. On the contrary, for quadratic models as well es for purely linear models with non-symmetric design spaces (constraints!) considering the center points during the optimization will lead to better designs. |
The method
find_local_max_ipopt
could include the possibility of including center points and/or replicates in the design.The text was updated successfully, but these errors were encountered: