class GCN(tf.keras.Model): AttributeError: module 'tensorflow' has no attribute 'keras'
时间: 2024-05-26 21:09:16 浏览: 165
问题解决:module 'tensorflow.compat.v1' has no attribute '
5星 · 资源好评率100%
这个错误提示意味着在使用 TensorFlow 时,你引用了 tf.keras.Model,但是 TensorFlow 模块中没有 keras 属性。
这可能是由于 TensorFlow 的版本问题。在TensorFlow 2.0之前的版本中,您需要使用tf.keras.Model;而在2.0及更高版本中,您应该直接使用keras.Model。
你可以尝试将代码中的"tf.keras.Model"替换为"keras.Model"。如果您使用的是低于2.0版本的TensorFlow,那么您需要升级到2.0或更高版本。
阅读全文