반응형

tensorflow를 활용한 python 코드 실행시 아래와 같은 메세지가 나온다면

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'] = '2'

Tensorflow는 TF_CPP_MIN_LOG_LEVEL 이라는 환경변수를 통해 로깅을 제어 할 수 있으므로 설정을 통해 해결 가능하다.

기본값은 0(모든 로그 표시) , 1(INFO 로그 필터링), 2(WARNING 로그 필터), 3(ERROR 로그 필터)

 
import os
import tensorflow as tf
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2'
hellow = tf.constant('hellow' )
print(hellow)
반응형
brew install libmagic

맥환경에서 Unable to revert mtime: /Library/Fonts  메세지 발생시 해당 libmagic 설치로 해결 할수 있다.

반응형
AttributeError: 'DataFrame' object has no attribute 'ix'

pandas 함수에서 ix가 삭제되고 .loc , .iloc 가 추가되었다.

ix 함수를 loc 나 iloc로 바꿔주자.

위에 같은 문제가 발생하면 api 문서를 찾아 보는 습관을 가져야 겠다.

pandas doc 참고해 보도록 하자

 

+ Recent posts