我正在尝试运行与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
我再次运行程序,我也遇到了同样的错误。
我该怎么做才能运行程序?