fitbenchmarking.controllers.scipy_ls_controller module
Implements a controller for the scipy ls fitting software. In particular, for the scipy least_squares solver.
- class fitbenchmarking.controllers.scipy_ls_controller.ScipyLSController(cost_func)
Bases:
ControllerController for the Scipy Least-Squares fitting software.
- algorithm_check = {'MCMC': [], 'all': ['lm-scipy', 'trf', 'dogbox'], 'bfgs': [], 'conjugate_gradient': [], 'deriv_free': [None], 'gauss_newton': [], 'general': [None], 'global_optimization': [], 'levenberg-marquardt': ['lm-scipy'], 'ls': ['lm-scipy', 'trf', 'dogbox'], 'simplex': [], 'steepest_descent': [], 'trust_region': ['lm-scipy', 'trf', 'dogbox']}
Within the controller class, you must initialize a dictionary,
algorithm_check, such that the keys are given by:all- all minimizersls- least-squares fitting algorithmsderiv_free- derivative free algorithms (these are algorithms that cannot use information about derivatives – e.g., theSimplexmethod inMantid)general- minimizers which solve a generic min f(x)simplex- derivative free simplex based algorithms e.g. Nelder-Meadtrust_region- algorithms which employ a trust region approachlevenberg-marquardt- minimizers that use the Levenberg-Marquardt algorithmgauss_newton- minimizers that use the Gauss Newton algorithmbfgs- minimizers that use the BFGS algorithmconjugate_gradient- Conjugate Gradient algorithmssteepest_descent- Steepest Descent algorithmsglobal_optimization- Global Optimization algorithmsMCMC- Markov Chain Monte Carlo algorithms
The values of the dictionary are given as a list of minimizers for that specific controller that fit into each of the above categories. See for example the
GSLcontroller.The
algorithm_checkdictionary is used to determine which minimizers to run given thealgorithm_typeselected in Fitting Options. For guidance on how to categorise minimizers, see the Optimization Algorithms section of the FitBenchmarking docs.
- cleanup()
Convert the result to a numpy array and populate the variables results will be read from.
- controller_name = 'scipy_ls'
A name to be used in tables. If this is set to None it will be inferred from the class name.
- fit()
Run problem with Scipy LS.
- jacobian_enabled_solvers = ['lm-scipy', 'trf', 'dogbox']
Within the controller class, you must define the list
jacobian_enabled_solversif any of the minimizers for the specific software are able to use jacobian information.jacobian_enabled_solvers: a list of minimizers in a specific software that allow Jacobian information to be passed into the fitting algorithm
- no_bounds_minimizers = ['lm-scipy']
Used to check whether the selected minimizers is compatible with problems that have parameter bounds
- setup()
Setup problem ready to be run with SciPy LS
- sparsity_enabled_solvers = ['trf', 'dogbox']
Within the controller class, you must define the list
sparsity`_enabled_solversif any of the minimizers for the specific software offer support for sparse jacobians.sparsity_enabled_solvers: a list of minimizers in a specific software that allow sparsity structure to be passed into the fitting algorithm
- support_for_bounds = True
Used to check whether the fitting software has support for bounded problems, set as True if at least some minimizers in the fitting software have support for bounds