I would like to hide the log info below when I run any code in Pycaret using Google Colab.
compare_models()
I've tried passing the parameter verbose = False
, but no difference.
I've also tried:
import logging
logging.basicConfig(filename='example.log', encoding='utf-8', level=logging.CRITICAL)
But no difference.