I was doing some augmentations for my DL project. I want to augment (flip) my image every time but the preprocessing layer do it randomly for some of the images and leaves some as it is.
tf.keras.layers.RandomFlip(mode=HORIZONTAL_AND_VERTICAL, seed=None, **kwargs)
I think it has something to do with the seed value but I don't know which value to set.
Thanks