koos808

Python information성 불필요 메시지 미출력 방법 본문

Python

Python information성 불필요 메시지 미출력 방법

koos808 2023. 9. 11. 20:10
728x90
반응형
* Information성 불필요 메시지(messages) 미출력
    ```
    # 1. Info성 불필요 메시지 미출력을 위한 작업
    import os
    os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2'
    ```
    ```
    # 2. User 에러 미표시 무시
    import warnings
    warnings.filterwarnings("ignore", category=UserWarning)

    # 3. WARNING:tensorflow:From C:\Python\lib\site-packages\tensorflow\python\framework\op_def_library.py:263: colocate_with (from tensorflow.python.framework.ops) is deprecated and will be removed in a future version. 에러 무시하는 방법(아래 코드 입력)
   
    old_v = tf.logging.get_verbosity()
    tf.logging.set_verbosity(tf.logging.ERROR)

 

 

 

------------------------------------------------------------------------------------------------------------------------------

728x90
반응형
Comments