#AIGlossary
batch size
#GoogleCloud
The number of examples in a batch. For instance, if the batch size is 100, then the model processes 100 examples per iteration.
The following are popular batch size strategies:
Stochastic
Full batch
Mini-batch (usually the most efficient strategy)
https://developers.google.com/machine-learning/glossary#batch-size
