Bases: object
Base class for all fitters.
Parameters: | optimizer : callable
statistic : callable
|
---|
Methods Summary
__call__() | This method performs the actual fitting and modifies the parameter list of a model. |
objective_function(fps, *args) | Function to minimize. |
Methods Documentation
This method performs the actual fitting and modifies the parameter list of a model.
Fitter subclasses should implement this method.
Function to minimize.
Parameters: | fps : list
args : list
|
---|
Notes
The list of arguments (args) is set in the __call__ method. Fitters may overwrite this method, e.g. when statistic functions require other aguments.