I'm doing a training using the object detection API with tensorflow 2, and the training shows INFO of tensorflow with repeated information, in the model_lib_v2 file the print lines are shown: Print lines
This shows repeated information as I show in the following image, I would like to know if it is possible to remove this INFO from tensorflow EDIT: I found the solution, in the object detection API, in the model_lib_v2 file add:
logger = tf.get_logger ()
logger.propagate = False