由于系统中安装的 TensorFlow 版本与用于在 TensorFlow API 中编写代码的版本冲突,我遇到了多个错误。我正在使用 python 3.6.7 和 Tensorflow 2.0 开始使用代码https://github.com/tensorflow/models/blob/master/research/deeplab/g3doc/installation.md
但是我遇到了几个错误:
flags = tf.app.flags AttributeError: 模块 'tensorflow' 没有属性 'app. 当我使用 2.0 时,我将 tf.app.flags 替换为 tf.compat.v1.flags。
from tensorflow.contrib import slim as contrib_slim ModuleNotFoundError: No module named 'tensorflow.contrib'
我无法解决第二个问题。我能否获得帮助以了解应该使用哪个 python 和 tensorflow 版本来运行 DeepLab v3+?