使用tf.estimator.Estimator cnn教程时出错

时间:2018-05-10 18:47:26

标签: tensorflow machine-learning computer-vision artificial-intelligence

我正在尝试运行与Tensor Flow中的CNN教程类似的文件:

mnist_classifier = tf.estimator.Estimator(
model_fn=cnn_model_fn, model_dir="/tmp/mnist_convnet_model")

我收到以下错误:

File "tfCNNMNIST.py", line 77, in main
mnistClassifier = tf.estimator.Estimator(model_fn=convNet, 
model_dir="/tmp/mln_MNIST2")
AttributeError: 'module' object has no attribute 'estimator'

我在谷歌搜索并使用以下命令更新了我的tensorflow版本:

pip3 install --upgrade tensorflow

我再次运行程序,我也遇到了同样的错误。

我该怎么做才能运行程序?

0 个答案:

没有答案