본문 바로가기
  • AI 개발자가 될래요
Python

[Tensorflow] Pycharm tensorflow Error

by 꿀개 2022. 5. 25.

This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDNN)to use the following CPU instructions in performance-critical operations:  AVX AVX2
To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags.

 

프로그램을 돌려보니 위와 같은 에러 메세지가 떴다.

에러라기보단 워닝에 가까운것 같은게, 그 뒤의 프로그램들은 오류 없이 잘 실행되었다.

 

위와 같은 경고 메세지를 없애는 방법은 간단하다.

 

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

os를 임포트하는 코드 아래에 코드를 추가하면 된다.