TensorFlow忽略警告信息:FutureWarning

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

D:\python36\lib\site-packages\tensorflow\python\framework\dtypes.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:\python36\lib\site-packages\tensorflow\python\framework\dtypes.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:\python36\lib\site-packages\tensorflow\python\framework\dtypes.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:\python36\lib\site-packages\tensorflow\python\framework\dtypes.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:\python36\lib\site-packages\tensorflow\python\framework\dtypes.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:\python36\lib\site-packages\tensorflow\python\framework\dtypes.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:\tf_jenkins\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

网上查发现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兄弟。

原文地址:https://www.cnblogs.com/jumpkin1122/p/11684200.html

时间: 2024-10-04 05:30:41

TensorFlow忽略警告信息:FutureWarning的相关文章

PythonStudy——PyCharm 选择性忽略PEP8代码风格警告信息

用了几天的PyCharm,发现确实在编写Python代码上非常好用,但有一点体验不太好,就是代码编写时要按照PEP8代码风格编写,不然会有波浪线的警告信息.解决方法如下: 方法一:将鼠标移到提示的地方,按 Alt+Enter,选择忽略(Ignore)这个错误即好. 方法二打开:File - Settings…… - Editor - Inspections 在python下找到 PEP8 coding style violation,在右边下面的Ignore errors里可以添加忽略的警告信息

Python Cookbook(第3版)中文版:14.11 输出警告信息

14.11 输出警告信息? 问题? 你希望自己的程序能生成警告信息(比如废弃特性或使用问题). 解决方案? 要输出一个警告消息,可使用 warning.warn() 函数.例如: import warnings def func(x, y, logfile=None, debug=False): if logfile is not None: warnings.warn('logfile argument deprecated', DeprecationWarning) ... warn() 的

iOS忽略警告

#pragma clang diagnostic push #pragma clang diagnostic ignored "***" //这里忽略警告的类型可以在XCode里的警告信息查看 /*这里是包含警告的代码*/ #pragma clang diagnostic pop //已知的一些编译警告类型 -Wtautological-pointer-compare -Wincompatible-pointer-types 指针类型不匹配 -Wincomplete-implement

@SuppressWarnings忽略警告

简介:java.lang.SuppressWarnings是J2SE 5.0中标准的Annotation之一.可以标注在类.字段.方法.参数.构造方法,以及局部变量上.作用:告诉编译器忽略指定的警告,不用在编译完成后出现警告信息.使用:@SuppressWarnings("")@SuppressWarnings({})@SuppressWarnings(value={}) 根据sun的官方文档描述:value - 将由编译器在注释的元素中取消显示的警告集.允许使用重复的名称.忽略第二个

Xcode 项目忽略警告

下面,就介绍一下在项目中忽略警告的三个地方: 在源文件中忽略警告 在一些第三方库中,总能看到下面这段代码的身影,这就是用于忽略某个警告 用法很简单,比如在控制器的 -viewDidLoad 中写了句创建一个 eTestView 的代码 Xcode 会立即报一个警告,提示我们没有使用这个变量 Unused variable 'eTestView' 只需在创建 eTestView 的前后加上如下几行,黄色警告就消失了?? 至于警告标识符,鼠标点几下就可以找到. 如下图,右击某个警告,选择 Revea

去除hadoop启动过程中的警告信息

安装完hadoop后启动hadoop 会报一个Warning.解决办法 vi  /etc/profile 进入编辑模式,添加下面这行 export HADOOP_HOME_WARN_SUPPRESS=1 保存退出 立即生效:source /etc/profile 重新启动hadoop 消除警告成功! 去除hadoop启动过程中的警告信息,布布扣,bubuko.com

bootstrap错误警告信息提示

bootstrap提供了成功执行.警告和错误信息的样式. 在使用该功能的时候需要引入以下几个文件: bootstrap.css jquery.js(需放在bootstrap.js之前) bootstrap.js(官方推荐引入的是bootstrap-alert.js) 主要使用的样式: .span4 .alert(默认样式) .alert alert-successs .alert alert-error .alert alert-info 实例代码如下: <!DOCTYPE html> <

1.一男子在路边一根接着一根地抽烟。一个女士走过来对他说:“嘿,你不知道你是在慢性自杀吗?注意看看烟盒上的警告信息。”“没关系”, 男子悠然自得地又吸了一口:“我是个程序员。”“嗯?这和你是程序员有什么关系?...

1.一男子在路边一根接着一根地抽烟.一个女士走过来对他说:"嘿,你不知道你是在慢性自杀吗?注意看看烟盒上的警告信息.""没关系",男子悠然自得地又吸了一口:"我是个程序员.""嗯?这和你是程序员有什么关系?""我们一点儿也不在乎警告(warning),我们只在乎错误(error)." 2.(唔--这个貌似跟程序员没关系--)地理学家和数学家在飞机上坐在了一起.地理学家伸过头来问数学家想不想玩个有趣的游戏.数

iOS常用的忽略警告

在iOS开发过程中,偶尔会碰到一些编译器警告,如果能够确定该警告不会影响到程序的正常运行,则可以手动告诉编译器忽略掉这个警告 iOS常用的忽略警告类型: 1.方法弃用警告 #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wdeprecated-declarations"//过期的方法#pragma clang diagnostic pop 2.不兼容指针类型警告 #pragma clang diagnos