odule 'tensorflow._api.v2.nn' has no attribute 'xw_plus_b'
时间: 2023-10-22 18:09:49 浏览: 173
问题解决:module 'tensorflow.compat.v1' has no attribute '
5星 · 资源好评率100%
这个错误通常发生在 TensorFlow 升级后,因为 `xw_plus_b` 已经被移除了。如果你之前的代码中使用了 `xw_plus_b`,你需要将其替换为 `tf.matmul` 和 `tf.add`。例如,如果你之前使用的是:
```
output = tf.nn.xw_plus_b(inputs, weights, biases)
```
那么你需要将其替换为:
```
output = tf.matmul(inputs, weights) + biases
```
这样就可以避免上述错误了。
阅读全文