You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 2, 2025. It is now read-only.
From tensorflow's doc, tf.image.flip_left_right will always flip the image, without any randomness. It makes more sense to use tf.image.random_flip_left_right for image augmentation.
Is this a mistake or is there another deeper meaning?
In Line 103 of input_pipeline_tf2_or_jax.py, why use
tf.image.flip_left_rightinstead oftf.image.random_flip_left_right?From tensorflow's doc,
tf.image.flip_left_rightwill always flip the image, without any randomness. It makes more sense to usetf.image.random_flip_left_rightfor image augmentation.Is this a mistake or is there another deeper meaning?