I just imported the tensorflow module, can anyone tell me why this message keeps coming up on my console every time I run my program and how I can get rid of it?
EDIT: I found that using
import os
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3'
before
import tensorflow
helped clear my console.