Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA
- 패키지 파일을 통해서 설치를 하였다면 다음과 같은 에러 메세지가 발생할 것이다.
- 가장 간단한 해결방법은 성능은 조금 떨어질 수 있지만 그냥 사용하겠다 싶으면 다음 문장을 추가하면된다.
import os os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2'
- 근본적으로 해결하고자 한다면 직접 소스를 빌드하여 설치해야 한다.
'IT > 머신러닝' 카테고리의 다른 글
[section_2] 머신러닝 Linear Regression (0) | 2018.06.01 |
---|---|
[section_1] Tensorflow 기본예제(Hello world! 및 간단한 연산), 상수 & placeholder (0) | 2018.06.01 |
[section_1] Tensorflow 이해 와 Ranks,Shapes,Types (0) | 2018.06.01 |
[section_1] 머신러닝(Machine Learning) 이란? / Supervised vs Unsupervised Learning (0) | 2018.06.01 |
Tensorflow MNIST 설치 오류_proxy server 설정 (ssl.SSLError) (0) | 2018.06.01 |