mindspore.parallel.nn.GradAccumulation

View Source On Gitee
class mindspore.parallel.nn.GradAccumulation(network, micro_size)[source]

Wrap the network with Micro Batch to enable the grad accumulation.

Parameters
  • network (Cell) – The target network to wrap.

  • micro_size (int) – MicroBatch size.

Supported Platforms:

Ascend

Examples

>>> from mindspore.parallel.nn import GradAccumulation
>>> # Define the network structure of LeNet5. Refer to
>>> # https://gitee.com/mindspore/docs/blob/master/docs/mindspore/code/lenet.py
>>> net = LeNet5()
>>> net = GradAccumulation(net, 4)