0


解决AttributeError: module ‘keras‘ has no attribute ……

在成功解决AttributeError: module ‘keras‘ has no attribute ‘utils‘_new1998的博客-CSDN博客这篇博客中博主有提到如何解决这一问题,其中就是要把

import keras

更改成为

from tensorflow import keras

而博主不知道其中原因,原因其实是在TensorFlow 2.4及以上版本中,

import keras

的方式已经被弃用,取而代之的是

import tensorflow.keras

,它是Keras和TensorFlow的官方集成版本。所以在终端中使用如下代码来检查一下你的tf和keras版本吧。

import tensorflow as tf
import keras

print(tf.__version__)
print(keras.__version__)

本文转载自: https://blog.csdn.net/weixin_57795068/article/details/129144684
版权归原作者 智齿山羊 所有, 如有侵权,请联系我们删除。

“解决AttributeError: module ‘keras‘ has no attribute ……”的评论:

还没有评论