๐ EMA#
[How to Use] - [Suggested Hyperparameters] - [Technical Details] - [Attribution] - [API Reference]
Exponential Moving Average (EMA) is a model averaging technique that maintains an exponentially weighted moving average of the model parameters during training. The averaged parameters are used for model evaluation. EMA typically results in less noisy validation metrics over the course of training, and sometimes increased generalization.
How to Use#
Functional Interface#
# Run the EMA algorithm directly on the batch data using the Composer functional API
import copy
import composer.functional as cf
def training_loop(model, train_loader):
opt = torch.optim.Adam(model.parameters())
loss_fn = F.cross_entropy
ema_model = copy.deepcopy(model)
model.train()
for epoch in range(num_epochs):
for X, y in train_loader:
y_hat = model(X)
loss = loss_fn(y_hat, y)
loss.backward()
opt.step()
opt.zero_grad()
cf.compute_ema(model, ema_model, smoothing=0.99)
Composer Trainer#
# Instantiate the algorithm and pass it into the Trainer
# The trainer will automatically run it at the appropriate points in the training loop
from composer.algorithms import EMA
from composer.trainer import Trainer
ema = EMA(half_life='50ba')
trainer = Trainer(model=model,
train_dataloader=train_dataloader,
max_duration='1ep',
algorithms=[ema])
trainer.fit()
model = ema.ema_model
Implementation Details#
Because EMA needs to maintain a copy of the modelโs (averaged) weights, it requires a bit more on-device memory. The amount of extra memory used is equal to the size of the modelโs trainable parameters and buffers. In practice, the extra memory used is small relative to the total amount of memory used, as activations and optimizer state are not duplicated.
EMA also uses a bit of extra compute to calculate the moving average. This can lead to a small slowdown. The extra compute can be reduced by not computing the moving average every iteration. In the composer trainer implementation this can be done by using a larger update_interval
. In practice we find that as long as half_life
is much larger than update_interval
, increasing update_interval
does not have much effect on generalization performance.
Suggested Hyperparameters#
The Composer Trainer implementation of EMA has several hyperparameters:
half_life
- The half life for terms in the average. A longer half life means old information is remembered longer, a shorter half life means old information is discared sooner. Defaults to'1000ba'
update_interval
- The period at which updates to the moving average are computed. A longer update interval means that updates are computed less frequently. If left unspecified, this defaults to1
in the units ofhalf_life
, or1ba
if usingsmoothing
.ema_start
- The amount of training completed before SWA is applied. The default value is'0.0dur'
which starts EMA at the start of training.
A good typical starting value for half_life
is half_life="1000ba"
, for a half life of 1000 batches. At the same time, update_interval
can be left unspecified which will default to update_interval="1ba"
, or set to a larger value such as update_interval="10ba"
to improve runtime. Shorter update intervals typically result in better generalization performance at the cost of somewhat increased runtime.
For compatibility with other implementations, there is also an option to specify the value of smoothing
directly.
smoothing
- The coefficient representing the degree to which older observations are kept. The default (unspecified) value isNone
. Should only be used ifhalf_life
is not used
To use this, half_life
should be set to half_life=None
, and the value of smoothing given instead. This value is not modified when update_interval
is changed, and so changes to update_interval
when using smoothing
will result in changes to the time scale of the average.
Technical Details#
โ EMA Improves the Tradeoff Between Quality and Training Speed
In our experiments, EMA improves the attainable tradeoffs between training speed and the final quality of the trained model. We recommend EMA for training convolutional networks.
โ EMA should result in less noisy validation metrics during training
If evalutation metrics are computed over the course of training, EMA should result in these metrics being smoother and less noisy due to averaging.
๐ง Composing Model-Averaging Methods
As a general rule, model-averaging methods do not compose well. We recommend using one of EMA or SWA, but not both.
โ EMA increases memory consumption
Because EMA needs to maintain a copy of the modelโs (averaged) weights, it requires a bit more on device memory. In practice, the extra memory used is small relative to the total amount of memory used, as activations and optimizer state are not duplicated.
โ EMA uses some extra compute
This can lead to a small slowdown. The extra compute can be reduced by not computing the moving average every iteration. In the composer trainer implementation this can be done by using a larger
update_interval
.
โ Evaluation should not be done with the training model
Evaluation should be done with the
ema_model
in the functional impementation as this is the model containing the averaged parameters. The ema model can be accessed after training from theEMA
object viamodel = ema.get_ema_model(model)
in the composer trainer implementation. This replaces the parameters of the supplied model with the ema_weights unless composerโs model already contains them. Similarly, the model without ema applied (the training model) can be accessed viamodel=ema.get_training_model(model)
. By default, when saving checkpoints with theCheckpointSaver
callback or through trainer arguments the weights saved will be the ema model weights. An exception is if saving is done by explicitly callingtrainer.save_checkpoint()
which will result in the training model weights being saved asstate.model
.
Attribution#
Our implementation of EMA was inspired by Tensorflowโs Exponential Moving Average
This Composer implementation of this method and the accompanying documentation were produced by Cory Stephenson at MosaicML.
API Reference#
Algorithm class: composer.algorithms.EMA
Functional: composer.functional.compute_ema()