__init__() 得到了意外的关键字参数 'state_istuple'
__init__() got an unexpected keyword argument 'state_istuple'
我现在在 python 中使用 tensorflow。
我遇到了一个错误,它说 init() 有一个意外的关键字参数 'state_istuple'
你有什么想法吗?
对于 BasicLSTMCell
构造函数,您应该使用关键字参数 state_is_tuple
而不是 state_istuple
作为 documented.
我现在在 python 中使用 tensorflow。 我遇到了一个错误,它说 init() 有一个意外的关键字参数 'state_istuple'
你有什么想法吗?
对于 BasicLSTMCell
构造函数,您应该使用关键字参数 state_is_tuple
而不是 state_istuple
作为 documented.