module 'tensorflow' has no attribute 'set_random_seed'
时间: 2023-10-08 12:13:47 浏览: 53
module ‘tensorflow’ has no attribute ‘get_default_graph’
TensorFlow 2.0及以上版本已经移除了`set_random_seed`方法,它被`tf.random.set_seed`方法替代。所以如果你想设置TensorFlow的随机种子,可以使用`tf.random.set_seed`方法,例如:
```python
import tensorflow as tf
tf.random.set_seed(42)
```
这样就可以在TensorFlow中设置随机种子了。
阅读全文