Package PyDSTool :: Package Toolbox :: Package optimizers :: Package criterion :: Module information_criteria :: Class AICCriterion
[hide private]
[frames] | no frames]

Class AICCriterion

source code

object --+
         |
        AICCriterion

The Akaike information criterion

Instance Methods [hide private]
 
__init__(self, ftol, iterations_max, correct_factor=1.0)
Initializes the criterion with a max number of iterations and an error fraction for the monotony test...
source code
 
__call__(self, state, **kwargs)
Computes the stopping criterion
source code

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __str__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, ftol, iterations_max, correct_factor=1.0)
(Constructor)

source code 

Initializes the criterion with a max number of iterations and an error fraction for the monotony test
- ftol is the relative tolerance of the AIC criterion
- correct_factor is the modifiying factor for the weight of the parameters size

Overrides: object.__init__