Optunity
stable
  • Installing Optunity
  • User Guide
    • Solver overview
      • Grid Search
        • Example
      • Random Search
      • Particle Swarm Optimization
      • Nelder-Mead simplex
      • CMA-ES
      • Tree-structured Parzen Estimator
      • Sobol sequences
    • Cross-validation
    • Quality metrics
    • Domain constraints
    • Structured search spaces
    • Terminology
      • Installing Optunity
      • Solver overview
        • Grid Search
        • Random Search
        • Particle Swarm Optimization
        • Nelder-Mead simplex
        • CMA-ES
        • Tree-structured Parzen Estimator
        • Sobol sequences
      • Cross-validation
      • Domain constraints
      • Structured search spaces
  • Examples
  • Notebooks
  • Using Other Environments
  • Optunity API
Optunity
  • Docs »
  • User Guide »
  • Solver overview »
  • Grid Search
  • Edit on GitHub

Grid Search¶

This solver is implemented in optunity.solvers.GridSearch. It as available in optunity.make_solver() as ‘grid search’.

Grid search is an undirected search method that consists of testing a predefined set of values per hyperparameter. A search grid is constructed that is the Cartesian product of these sets of values.

Grid search can be used to tune a limited number of hyperparameters, as the size of the search grid (number of evaluations) increases exponentially in terms of the number of hyperparameters. We generally recommend the use of directed solvers over grid search, as they waste less time exploring uninteresting regions.

When you use choose this solver in optunity.maximize() or optunity.minimize(), an equal number of values is determined per hyperparameter (spread uniformly). The number of test values per hyperparameter is determined based on the number of permitted evaluations. If you want to specify the grid points manually, this is possible via optunity.make_solver() and optunity.optimize().

Example¶

Assume we have two hyperparameters x and y. For x we want to test the following values [0, 1, 2, 3] and for y we will try [-10, -5, 0, 5, 10]. The search grid consists of all possible pairs (\(4\times5=20\) in this case), e.g.:

x y
0 -10
0 -5
0 0
0 5
0 10
1 -10
1 -5
1 0
1 5
1 10
2 -10
2 -5
2 0
2 5
2 10
3 -10
3 -5
3 0
3 5
3 10
Next Previous

© Copyright 2014, Marc Claesen, Jaak Simm and Dusan Popovic. Revision 51e4a94a.

Built with Sphinx using a theme provided by Read the Docs.