AttributeError: module 'tensorflow' has no attribute 'variable_op_scope'
时间: 2023-10-27 10:05:39 浏览: 143
问题解决:module 'tensorflow.compat.v1' has no attribute '
5星 · 资源好评率100%
这个错误通常是因为你的TensorFlow版本过低,而你的代码中使用了新版本中的某些API。variable_op_scope是TensorFlow 1.x版本中的API,而在TensorFlow 2.x版本中已经被弃用。如果你的代码中使用了这个API,那么你需要将TensorFlow版本降低到1.x版本或者修改代码中使用的API。
阅读全文