解决问题
AttributeError: module 'tensorflow' has no attribute 'get_variable'
解决思路
属性错误:模块tensorflow没有属性get_variable
解决方法
版本升级导致该方法被弃用,可以选择修改方法,或着调用旧版本的函数去解决!
将
tf.get_variable
改为
tf.compat.v1.get_variable
2023-09-24 19:00:15
AttributeError: module 'tensorflow' has no attribute 'get_variable'
属性错误:模块tensorflow没有属性get_variable
版本升级导致该方法被弃用,可以选择修改方法,或着调用旧版本的函数去解决!
将
tf.get_variable
改为
tf.compat.v1.get_variable