module 'tensorflow' has no attribute 'variable_scope'怎么办
时间: 2023-05-27 18:07:41 浏览: 67
问题解决:module 'tensorflow.compat.v1' has no attribute '
5星 · 资源好评率100%
这个错误可能是因为你正在使用 TensorFlow 2.0 或更高版本,而 `variable_scope` 已经被弃用了。在 TensorFlow 2.0 中,可以使用 `tf.keras.layers.Layer` 来代替 `variable_scope`。如果你仍然需要使用 `variable_scope`,可以将代码迁移到 TensorFlow 1.x 版本。
阅读全文