解决tensorflow读取本地MNITS_data失败的原因


Posted in Python onJune 22, 2020

MNITS_data 下载保存在本地,一定不要解压!不要解压!不要解压!因为input_data读取的是压缩包

>>>import tensorflow as tf
>>>from tensorflow.examples.tutorials.mnist import input_data
>>>input_data.read_data_stes("/home/wd/MNIST_data",one_hot=True)
WARNING:tensorflow:From <stdin>:1: read_data_sets (from tensorflow.contrib.learn.python.learn.datasets.mnist) is deprecated and will be removed in a future version.
Instructions for updating:
Please use alternatives such as official/mnist/dataset.py from tensorflow/models.
WARNING:tensorflow:From /home/wd/anaconda3/lib/python3.6/site-packages/tensorflow/contrib/learn/python/learn/datasets/mnist.py:260: maybe_download (from tensorflow.contrib.learn.python.learn.datasets.base) is deprecated and will be removed in a future version.
Instructions for updating:
Please write your own downloading logic.
WARNING:tensorflow:From /home/wd/anaconda3/lib/python3.6/site-packages/tensorflow/contrib/learn/python/learn/datasets/mnist.py:262: extract_images (from tensorflow.contrib.learn.python.learn.datasets.mnist) is deprecated and will be removed in a future version.
Instructions for updating:
Please use tf.data to implement this functionality.
Extracting /home/wd/MNIST_data/train-images-idx3-ubyte.gz
WARNING:tensorflow:From /home/wd/anaconda3/lib/python3.6/site-packages/tensorflow/contrib/learn/python/learn/datasets/mnist.py:267: extract_labels (from tensorflow.contrib.learn.python.learn.datasets.mnist) is deprecated and will be removed in a future version.
Instructions for updating:
Please use tf.data to implement this functionality.
Extracting /home/wd/MNIST_data/train-labels-idx1-ubyte.gz
WARNING:tensorflow:From /home/wd/anaconda3/lib/python3.6/site-packages/tensorflow/contrib/learn/python/learn/datasets/mnist.py:110: dense_to_one_hot (from tensorflow.contrib.learn.python.learn.datasets.mnist) is deprecated and will be removed in a future version.
Instructions for updating:
Please use tf.one_hot on tensors.
Extracting /home/wd/MNIST_data/t10k-images-idx3-ubyte.gz
Extracting /home/wd/MNIST_data/t10k-labels-idx1-ubyte.gz
WARNING:tensorflow:From /home/wd/anaconda3/lib/python3.6/site-packages/tensorflow/contrib/learn/python/learn/datasets/mnist.py:290: DataSet.__init__ (from tensorflow.contrib.learn.python.learn.datasets.mnist) is deprecated and will be removed in a future version.
Instructions for updating:
Please use alternatives such as official/mnist/dataset.py from tensorflow/models.
>>> print(mnist.train.images.shape, mnist.train.labels.shape)
(55000, 784) (55000, 10)
>>> print(mnist.test.images.shape, mnist.test.labels.shape)
(10000, 784) (10000, 10)

补充知识:成功解决 \tensorflow\…\datasets\mnist.py:290: DataSet.__init__ (from tensorflow.contrib.learn.python.lea

解决问题

\tensorflow\contrib\learn\python\learn\datasets\mnist.py:290: DataSet.__init__ (from tensorflow.contrib.learn.python.learn.datasets.mnist) is deprecated and will be removed in a future version.
Instructions for updating:
Please use alternatives such as official/mnist/dataset.py from tensorflow/models.

解决思路

警告位置:\tensorflow\contrib\learn\python\learn\datasets\mnist.py:290:

DataSet.__init__ 来自tensorflow.contrib.learn.python.learn.datasets.mnist)已弃用,将在将来的版本中删除。

解决方法

更新说明:

请使用tensorflow/models 中的 official/mnist/dataset.py 等备选方案。

以上这篇解决tensorflow读取本地MNITS_data失败的原因就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Python处理Excel文件实例代码
Jun 20 Python
Python实现简单的HttpServer服务器示例
Sep 25 Python
Python读取Word(.docx)正文信息的方法
Mar 15 Python
python使用Matplotlib画条形图
Mar 25 Python
pycharm 将python文件打包为exe格式的方法
Jan 16 Python
解决pycharm的Python console不能调试当前程序的问题
Jan 20 Python
python输出电脑上所有的串口名的方法
Jul 02 Python
YUV转为jpg图像的实现
Dec 09 Python
pytorch三层全连接层实现手写字母识别方式
Jan 14 Python
python实现将range()函数生成的数字存储在一个列表中
Apr 02 Python
Python爬虫回测股票的实例讲解
Jan 22 Python
Django中的JWT身份验证的实现
May 07 Python
python实现猜数游戏(保存游戏记录)
Jun 22 #Python
基于Tensorflow读取MNIST数据集时网络超时的解决方式
Jun 22 #Python
在Mac中配置Python虚拟环境过程解析
Jun 22 #Python
tensorflow/core/platform/cpu_feature_guard.cc:140] Your CPU supports instructions that this T
Jun 22 #Python
TensorFlow的环境配置与安装教程详解(win10+GeForce GTX1060+CUDA 9.0+cuDNN7.3+tensorflow-gpu 1.12.0+python3.5.5)
Jun 22 #Python
keras的load_model实现加载含有参数的自定义模型
Jun 22 #Python
python GUI模拟实现计算器
Jun 22 #Python
You might like
re0第二季蕾姆被制作组打入冷宫!艾米莉亚女主扶正,原因唏嘘
2020/04/02 日漫
php 友好URL的实现(吐血推荐)
2008/10/04 PHP
利用php+mysql来做一个功能强大的在线计算器
2010/10/12 PHP
php性能优化分析工具XDebug 大型网站调试工具
2011/05/22 PHP
浅析ThinkPHP缓存之快速缓存(F方法)和动态缓存(S方法)(日常整理)
2015/10/26 PHP
redis查看连接数及php模拟并发创建redis连接的方法
2016/12/15 PHP
php异常处理捕获错误整理
2019/09/23 PHP
PHP7.3.10编译安装教程
2019/10/08 PHP
用jQuery实现检测浏览器及版本的脚本代码
2008/01/22 Javascript
在UpdatePanel内jquery easyui效果失效的解决方法
2010/04/11 Javascript
jQuery学习笔记之jQuery动画效果
2013/09/09 Javascript
js对象的复制继承实例
2015/01/10 Javascript
JS实现点击按钮后框架内载入不同网页的方法
2015/05/05 Javascript
Javascript监视变量变化的方法
2015/06/09 Javascript
基于jQuery插件实现点击小图显示大图效果
2016/05/11 Javascript
JavaScript编写带旋转+线条干扰的验证码脚本实例
2016/05/30 Javascript
BootStrap 超链接变按钮的实现方法
2016/09/25 Javascript
bootstrap suggest下拉框使用详解
2017/04/10 Javascript
react-native android状态栏的实现
2018/06/15 Javascript
微信小程序实现自动定位功能
2018/10/31 Javascript
jQuery实现的别踩白块小游戏完整示例
2019/01/07 jQuery
js数组去重的方法总结
2019/01/18 Javascript
[39:21]LGD vs OG 2019国际邀请赛淘汰赛 胜者组 BO3 第二场 8.24
2019/09/10 DOTA
Python基于opencv的图像压缩算法实例分析
2018/05/03 Python
python用插值法绘制平滑曲线
2021/02/19 Python
Python中and和or如何使用
2020/05/28 Python
Linden Leaves官网:新西兰纯净护肤品
2020/12/20 全球购物
有兼职工作经历的简历自我评价
2014/03/07 职场文书
经典洗发水广告词
2014/03/13 职场文书
专业技术职务聘任书
2014/03/29 职场文书
学校文明单位申报材料
2014/05/06 职场文书
关于旅游的活动方案
2014/08/15 职场文书
个人批评与自我批评范文
2014/10/17 职场文书
公司人事管理制度
2015/08/05 职场文书
公司致全体员工的感谢信
2019/06/24 职场文书
【海涛dota】偶遇拉娜娅 质量局德鲁伊第一视角解说
2022/04/01 DOTA