Exponential Moving Average (EMA)#

class vision_architectures.utils.ema.EMA(model, decay)[source]#

Bases: Module

__init__(model, decay)[source]#

Initialize internal Module state, shared by both nn.Module and ScriptModule.

get_decay()[source]#
Return type:

float

update_decay()[source]#
forward(weights)[source]#

Define the computation performed at every call.

Should be overridden by all subclasses. :rtype: Module

Note

Although the recipe for forward pass needs to be defined within this function, one should call the Module instance afterwards instead of this since the former takes care of running the registered hooks while the latter silently ignores them.