Optimization¶
-
class
astropy.modeling.optimizers.Optimization(opt_method)[source]¶ Bases:
objectBase class for optimizers.
Parameters: - opt_method : callable
Implements optimization method
Notes
The base Optimizer does not support any constraints by default; individual optimizers should explicitly set this list to the specific constraints it supports.
Attributes Summary
accRequested accuracy epsStep for the forward difference approximation of the Jacobian maxiterMaximum number of iterations opt_methodsupported_constraintsMethods Summary
__call__()Call self as a function. Attributes Documentation
-
acc¶ Requested accuracy
-
eps¶ Step for the forward difference approximation of the Jacobian
-
maxiter¶ Maximum number of iterations
-
opt_method¶
-
supported_constraints= []¶
Methods Documentation