Trains the model for a fixed number of epochs. If `eval_data` is set,
evaluation will be done at the end of each epoch.
...
...
@@ -1579,6 +1582,7 @@ class Model(object):
callbacks (Callback|None): A list of `Callback` instances to apply
during training. If None, `ProgBarLogger` and `ModelCheckpoint`
are automatically inserted. Default: None.
accumulate (int): The number of steps to accumulate gradident in training process before optimizer update. Using this to mimic large batch size. Default: 1.