How is preprocessing applied? On the whole dataset or on batches?

Hi,

I wanted to know how preprocessing in general and normalization in particular works:

  • When the preprocessing is applied on dataset using .map, is for example the mean calculated on the whole dataset? Or is it per batch?
  • Same question when the Normalization is part of the model as a preprocessing layer.

Thanks!

Regards,
Fadi Badine

1 Like

Hi Fadi, I’d say it’s all evaluated lazily so it’d be per batch

3 Likes

all evaluated lazily

tf.data doesn’t run anything until you iterate over the dataset, that part is lazy.

But if you look for examples on tensorflow.org you’ll see they all set the mean/variance one way or another before using the Normalization layer, or any other similar layer.

You can either set them as arguments to the constructor, or use the .adapt which sets the statistics based on all the data you give it.

If you want it to to calculate the mean per batch (or an EMA across batches), Use BatchNormalization.

7 Likes