zoukankan      html  css  js  c++  java
  • TensorFlow忽略警告信息:FutureWarning

    最近执行Tensorflow程序出现如下警告信息

    D:python36libsite-packages	ensorflowpythonframeworkdtypes.py:493: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.
      _np_qint8 = np.dtype([("qint8", np.int8, 1)])
    D:python36libsite-packages	ensorflowpythonframeworkdtypes.py:494: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.
      _np_quint8 = np.dtype([("quint8", np.uint8, 1)])
    D:python36libsite-packages	ensorflowpythonframeworkdtypes.py:495: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.
      _np_qint16 = np.dtype([("qint16", np.int16, 1)])
    D:python36libsite-packages	ensorflowpythonframeworkdtypes.py:496: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.
      _np_quint16 = np.dtype([("quint16", np.uint16, 1)])
    D:python36libsite-packages	ensorflowpythonframeworkdtypes.py:497: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.
      _np_qint32 = np.dtype([("qint32", np.int32, 1)])
    D:python36libsite-packages	ensorflowpythonframeworkdtypes.py:502: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.
      np_resource = np.dtype([("resource", np.ubyte, 1)])
    2019-10-16 10:47:11.344409: I C:	f_jenkinsworkspace
    el-winMwindowsPY36	ensorflowcoreplatformcpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX

    网上查发现numpy的版本过高了我安装的版本是1.17.2,将版本到1.16.0就FutureWarning不在显示了

    pip uninstall numpy        # 卸载numpy
    pip install numpy==1.16.0  # 安装指定版本的numpy

    然后最下面的。。。not compiled to use: AVX警告信息通过添加如下方式忽略

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

    这里的2代表是如下

    # TF_CPP_MIN_LOG_LEVEL = 1 //默认设置,为显示所有信息
    # TF_CPP_MIN_LOG_LEVEL = 2 //只显示error和warining信息
    # TF_CPP_MIN_LOG_LEVEL = 3 //只显示error信息

    这样就不再显示启动强迫症的红色警告信息!!!

    参考GodLordGee的笔记:https://blog.csdn.net/GodLordGee/article/details/100579932

    谢谢GodLordGee兄弟。

  • 相关阅读:
    C程序设计语言学习笔记(二)
    字符串处理代码(国际化转换C++版) 荣
    取得MySQL数据库表,列信息的SQL语句 荣
    C++中,以类成员函数指针作为参数对std::map中的元素进行迭代处理 荣
    我的我的C#数据库操作类(与大家交流) 荣
    以较少代码实现DataGrid的排序,翻页,删除等功能 荣
    批处理文件的学习 荣
    DLL内存管理模板类 荣
    我的C++数据库访问库 荣
    我的C++数据库访问库临界区处理类 荣
  • 原文地址:https://www.cnblogs.com/jumpkin1122/p/11684200.html
Copyright © 2011-2022 走看看