AttributeError: module 'tensorflow._api.v1.random' has no attribute 'set_seed'
时间: 2023-10-18 21:05:20 浏览: 189
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常发生在 TensorFlow 2.x 中,因为 TensorFlow 2.x 已经移除了 `tensorflow.set_random_seed()` 方法,而改用 `numpy.random.seed()` 或 `tf.random.set_seed()` 方法来设置随机种子。所以,可以尝试将代码中的 `tensorflow.set_random_seed()` 替换为 `tf.random.set_seed()` 或者 `numpy.random.seed()`,这样应该就可以避免这个错误了。
阅读全文