class documentation

class ExponentialSmoothing(object):

Known subclasses: cma.optimization_tools.EvolutionPath

Constructor: ExponentialSmoothing(time_constant, normalizer)

View In Hierarchy

not in use (yet)

Exponentially smoothened vector, new data are added via calling the class instance. The normalizer is applied to the weight 1 / time_constant used for the new data.

Method __call__ Undocumented
Method __getitem__ Undocumented
Method __init__ Undocumented
Instance Variable count Undocumented
Instance Variable normalizer Undocumented
Instance Variable time_constant Undocumented
Instance Variable values Undocumented
Method _init_ Undocumented
def __call__(self, v):

Undocumented

def __getitem__(self, i):

Undocumented

def __init__(self, time_constant=None, normalizer=(lambda x: x)):

Undocumented

count: int =

Undocumented

normalizer =

Undocumented

time_constant =

Undocumented

values =

Undocumented

def _init_(self, v):

Undocumented