mindspore.parallel.nn.GradAccumulation
- class mindspore.parallel.nn.GradAccumulation(network, micro_size)[source]
Wrap the network with Micro Batch to enable the grad accumulation.
- 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)