AttributeError: module 'tensorflow' has no attribute 'set_random_seed'
时间: 2023-06-23 07:55:19 浏览: 273
问题解决:module 'tensorflow.compat.v1' has no attribute '
5星 · 资源好评率100%
在 TensorFlow 2.1.0 及更高版本中,`set_random_seed` 已被弃用。相反,您可以使用 `tf.random.set_seed` 来设置种子。例如:
```
import tensorflow as tf
tf.random.set_seed(123) # 设置种子为 123
```
如果你使用的是 TensorFlow 1.x 版本,那么可以使用 `tf.set_random_seed` 来设置种子。例如:
```
import tensorflow as tf
tf.set_random_seed(123) # 设置种子为 123
```
注意,使用随机种子并不能完全保证结果的重复性,因为某些操作可能仍然是随机的(例如 Dropout 层)。
阅读全文