解决:AttributeError: module ‘tensorflow‘ has no attribute ‘variable_scope‘AttributeError: module 'tensorflow' has no attribute 'variable_scope' 报错的原因是,tf.variable_scope 在 TensorFlow 2.x 中已经被移除,而它是 TensorFlow 1.x 的一种构建静态图的特性。在 TensorFlow 2.x 中,可以通过 tf.name_scope 或者直接使用函数和 Keras API 来替代。