-
-
Notifications
You must be signed in to change notification settings - Fork 225
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
Add an example for Algorithm Configuration facade #1127
Comments
Hi @olegzaikin the other facades are nearly the same as the AC facades except that they might have different surrogate model, acquisition function optimizer. Could you please provide us more information on the content that should be contained in the examples? For example, how does your solver look like? Is it a python script or a binary file that can be executed? Does your problem contain instances? What is the optimization target for your problem, is it run time or evaluation cost? Is the problem deterministic or not (this means that the cost is highly influenced by the random seeds)? It would be best if you could also provide a basic script on how to evaluate one configuration on your problem. With these information, we could add a new example on AC facade. Otherwise, the existing examples on the other facade should suffice. |
Thank you for the reply.
The algorithm is deterministic while the objective function is PAR10. @dengdifan I believe it would be really helpful for the community if you provide the corresponding example for SMAC3 of version 2.2 since tuning SAT solvers is of high demand. |
Hi @olegzaikin, thanks for all the details. However, I feel that your minimal example will already be a little bit too complicated for a broader audience as it requires third party software that needs to be built before the example can be executed and also increases maintenance efforts for this example since we need to cross-check whether the example is still working with updated libraries etc. Do you think that a mockup example might be already enough for the AC community? I.e., a simple example that comes with all the specifics of AC (like a dataset of problem instances, cutoff time, etc.) but instead of actually running a SAT solver we would integrate some dummy config space and executable doing nothing but rolling a dice how long it takes for a certain problem instance? Would that be as useful as the minimal example you described? |
Hi @mwever Sure, an example with a dummy config space and a dummy executable would be sufficient. |
I am going to use SMAC3 to tune a CDCL SAT solver's parameters to minimize the total runtime on a set of instances (CNFs). I suppose that the Algorithm Configuration facade is the right choice. The provided examples clarify the usage of the following facades: Hyperparameter Optimization; Multi Fidelity; BlackBox. However, there is no example where the Algorithm Configuration facade is used. It would be really helpful if such and example is added. Thank you for your work!
The text was updated successfully, but these errors were encountered: