1

我尝试从 tensorflow git:mnist_tpu运行此代码

python mnist_tpu.py --tpu='' 
python mnist_tpu.py --use_tpu=false --tpu=''

但我一直收到以下错误:

AttributeError: module 'official.mnist.mnist' has no attribute 'create_model'

我不知道 create_model 方法是在哪里定义的。我觉得文档仍然缺少一些信息。

有任何想法吗?提前致谢。

4

1 回答 1

2

“create_model”在 mnist.py 中定义,与 mnist_tpu.py 一起出现。确认您从 github 获得该文件:https ://github.com/tensorflow/models/blob/master/official/mnist/mnist.py 它会起作用。

于 2018-09-28T23:55:00.750 回答