분석 Python/Tensorflow
Jupyter width 100% 만들기 및 tensorflow warning 안뜨게 하기
데이터분석뉴비
2019. 5. 1. 17:27
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)