본문 바로가기
파이썬

파이썬 FutureWarning : issubdtype의 두 번째 인수를`float`에서`np.floating`으로 변환하는 것은 더 이상 사용되지 않습니다.

by º기록 2020. 10. 14.
반응형


FutureWarning: Conversion of the second argument of issubdtype from `float` to `np.floating` is deprecated. In future, it will be treated as `np.float64 == np.dtype(float).type`.
  from ._conv import register_converters as _register_converters
2018-01-19 17:11:38.695932: I C:\tf_jenkins\home\workspace\rel-win\M\windows\PY\36\tensorflow\core\platform\cpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX AVX2

 

해결 방법

 

나는 이것들로 시도했고 그것은 나에게 동일한 문제를 해결했다.

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

 

참조 페이지 https://stackoverflow.com/questions/48340392

 

 

반응형

댓글