我从官方存储库here下载了tensorflow resnet预训练模型
sess = tf.Session()
saver = tf.train.import_meta_graph("path/to/model/model.ckpt-62500.meta")
saver.restore(sess,"path/to/model/model.ckpt-62500")
但是当我导入它时,引发KeyError:'IteratorGetDevice',并且继续操作时会有更多键错误。
有人问相同的问题here,说“在更新到tensorflow 1.9后已修复”,但对我不起作用。
这是官方存储库,所以我很困惑,没有其他人会遇到此错误?