4.8.2. Scipy¶
-
class
Scipy
(method: str = 'Nelder-Mead', verbose=True, **optkw)¶ Interface to the SciPy minimize method.
For more information see, the module’s documentation.-
__init__
(method: str = 'Nelder-Mead', verbose=True, **optkw)¶ Parameters: - method : optional, str
- The solver to be used by
scipy.optimize.minimize()
- verbose : bool
- Be talkative (1) or not (0)
- optkw : optional
- Additional kwargs for the
scipy.optimize.minimize()
method. Will be passed as to options argument.
-
reset
()¶ This method is called when the Optimization() class is initialized and should reset a previously used optimizer instance.
-