AttributeError: module 'tensorflow' has no attribute 'random_shuffle'
时间: 2023-09-30 10:08:03 浏览: 147
pycharm用import报错:AttributeError: module tensorflow(or other) has no attribut (import搜索路径顺序问题)
这个错误是因为 TensorFlow 的版本更新后,去掉了`random_shuffle`函数。取而代之的是`tf.random.shuffle`函数。所以你需要将代码中的`random_shuffle`替换为`tf.random.shuffle`来修复这个错误。例如,将`tensorflow.random_shuffle()`改为`tf.random.shuffle()`。
阅读全文