Why does distributed TensorFlow training degrade when batch size increases beyond a threshold?

Updated May 16, 2026

Short answer

Large batch sizes reduce gradient noise but hurt generalization and increase synchronization overhead.

Deep explanation

In distributed training, batch size is split across workers. Increasing global batch size reduces stochasticity in gradients, often leading to sharper minima and worse generalization. Additionally, synchronization cost (all-reduce communication) increases, making training slower despite more compute. There is a trade-off between convergence stability and communication efficiency.

Unlock with a Pro subscription to view this section.

View pricing

Real-world example

No real-world example available yet.

Unlock with a Pro subscription to view this section.

Upgrade to Pro

Common mistakes

No common mistakes listed yet.

Unlock with a Pro subscription to view this section.

Upgrade to Pro

Follow-up questions

No follow-up questions available yet.

Unlock with a Pro subscription to view this section.

Upgrade to Pro

More TensorFlow interview questions

View all →