tensorflow 中input_data没有此模块问题
tensorflow
一个面向所有人的开源机器学习框架
项目地址:https://gitcode.com/gh_mirrors/te/tensorflow
免费下载资源
·
在TensorFlow中文文档的教程中, 关于MNIST机器学习入门 一节,导入数据集的代码
import tensorflow.examples.tutorials.mnist.input_data
mnist = input_data.read_data_sets(“MNIST_data/”, one_hot=True)
运行会报错, NameError: name ‘input_data’ is not defined
应改成如下代码:
from tensorflow.examples.tutorials.mnist import input_data
--------------------------------------------------------------------------------------------------------
更新20191212 注意:新版本可能不存在这个文件,使用 tensorflow.keras导入
GitHub 加速计划 / te / tensorflow
184.55 K
74.12 K
下载
一个面向所有人的开源机器学习框架
最近提交(Master分支:2 个月前 )
a49e66f2
PiperOrigin-RevId: 663726708
2 个月前
91dac11a
This test overrides disabled_backends, dropping the default
value in the process.
PiperOrigin-RevId: 663711155
2 个月前
更多推荐
已为社区贡献4条内容
所有评论(0)