Parameter tuning - guided search
AnsweredAs far as I know, an automatic tuning tool perform its own search procedure through parameter space. It would be nice to be able to guide a search through a specific set of parameters and its values, like it is done in scikit learn (https://scikit-learn.org/stable/modules/grid_search.html). So for instance one might want to specify the following set of parameters to be evaluated:
params = {
'Heuristics': [0.1, 0.2, 0.4],
'MIPFocus': [1, 2],
'Presolve': [0, 1, 2]
}
Would it be possible? Or maybe already somehow is.
-
Hi Grzegorz,
Apologies for the (very) late reply!
You can specify custom parameter sets when starting a tuning run to kickstart the progress if you already have a good idea of what works well:
Tuning MIP models is often pretty complicated and a fully automatic process is not always providing the best results. This is due to the nature of MIP solving in regards to performance variability and the sheer amount of parameters that may have a large range of side effects.
Please refer to our documentation about the parameter tuning tool for more information:
Parameter Tuning Tool (gurobi.com)
Cheers,
Matthias0
Please sign in to leave a comment.
Comments
1 comment