Code QuizIntermediate

Counting Iterations per Epoch

Find the error in relating samples, batches, and iterations.

Codepython
num_samples = 1000
batch_size = 100
epochs = 10

# total parameter updates during training
iterations = num_samples * epochs

What is the bug in this iteration count?