AttributeError: module 'tensorflow' has no attribute 'get_variable'
时间: 2023-10-22 14:05:53 浏览: 193
attribute详细介绍
这个错误通常是因为 TensorFlow 版本过高导致的。在 TensorFlow 2.0 及以上版本中,`get_variable` 方法已被移除。如果你需要使用 `get_variable` 方法,可以考虑降低 TensorFlow 版本或者使用 `tf.compat.v1.get_variable` 方法来代替。另外,建议在代码中使用 `tf.Variable` 来代替 `get_variable` 方法来创建变量。
阅读全文