I am following this tutorial and doing a project on custom object-detection using tensorflow.
So when I tried to create TF record for the train images using the foll
Which Tensorflow version, are you using? If it is TF2.0 then you need to replace tf.app.flags with tf.compat.v1.flags defined here since it is no longer supported.
tf.app.flags
tf.compat.v1.flags
try using import tensorflow.compat.v1 as tf
import tensorflow.compat.v1 as tf