Closed mitar closed 5 years ago
I see the following code:
warnings.filterwarnings("ignore", category=RuntimeWarning) # suppress sklearn warnings warnings.filterwarnings("ignore", category=UserWarning) # suppress sklearn warnings
This suppresses warnings globally in the whole process. Please do not do this. See this section how to do it temporary just for your code.
I see the following code:
This suppresses warnings globally in the whole process. Please do not do this. See this section how to do it temporary just for your code.