Jupyter width 100% 만들기 및 tensorflow warning 안뜨게 하기

2019. 5. 1. 17:27분석 Python/Tensorflow

728x90

tensorflow 돌리다 보면 warning 이 뜨는데 저렇게 하면 많이 줄어든다.

 

from IPython.core.display import display, HTML



display(HTML("<style>.container { width:100% !important; }</style>"))



## Error not show!!



import warnings , os



warnings.filterwarnings(action='ignore')



os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3' 



import tensorflow as tf



tf.logging.set_verbosity(tf.logging.ERROR)
728x90