AttributeError: module 'tensorflow' has no attribute 'get_variable'
时间: 2023-10-20 13:06:15 浏览: 96
pycharm用import报错:AttributeError: module tensorflow(or other) has no attribut (import搜索路径顺序问题)
这个错误通常是因为 TensorFlow 的版本问题导致的。在 TensorFlow 2.x 版本中,`get_variable` 被移除了。如果你使用的是 TensorFlow 2.x 版本,应该使用 `tf.Variable` 代替。如果你使用的是旧版本的 TensorFlow(如TensorFlow 1.x),则应该检查你的代码是否正确导入了 TensorFlow,或者可能是你使用了过时的 API。建议升级到最新版本的 TensorFlow,并使用最新的 API。
阅读全文