module 'tensorflow' has no attribute 'set_random_seed'
时间: 2023-10-23 07:10:29 浏览: 271
问题解决:module 'tensorflow.compat.v1' has no attribute '
5星 · 资源好评率100%
module 'tensorflow' has no attribute 'set_random_seed'是一个AttributeError错误,它表示在tensorflow模块中找不到'set_random_seed'属性。这可能是因为tensorflow版本的问题,set_random_seed在较新的版本中可能已被移除或更改了名称。建议您检查您所使用的tensorflow版本,并查看相应的文档以了解如何设置随机种子。您可以尝试使用以下代码行来设置随机种子:
```
import tensorflow as tf
tf.random.set_seed(seed_value)
```
其中seed_value是您要设置的随机种子的值。
阅读全文