AttributeError: module 'tensorflow.compat.v1.random' has no attribute 'set_seed'.
时间: 2023-09-28 15:08:00 浏览: 190
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误是因为 TensorFlow 的版本问题导致的。在 TensorFlow 1.x 版本中,使用 `tf.compat.v1.random.set_seed` 来设置随机种子,但在 TensorFlow 2.x 版本中,使用 `tf.random.set_seed` 来设置随机种子。请确认你正在使用正确的 TensorFlow 版本,并相应地更改代码中的随机种子设置。
阅读全文