Jupyter
Suppress warnings
Some libraries like TF can be a bit too verbose for the notebook to handle and end up using too much real estate, to get rid of those warnings insert a cell with the following code above all others:
import warnings
warnings.filterwarnings('filter')