发布时间:2023-04-20 文章分类:电脑百科 投稿人:王小丽 字号: 默认 | | 超大 打印

报错:

AttributeError: module ‘keras.preprocessing.sequence’ has no attribute ‘pad_sequences’
【AI学习笔记】AttributeError: module ‘keras.preprocessing.sequence‘ has no attribute ‘pad_sequences‘
看了许多博客,说是版本问题,我的版本都是2.11.0
【AI学习笔记】AttributeError: module ‘keras.preprocessing.sequence‘ has no attribute ‘pad_sequences‘

解决方法

有的人说:

from keras.preprocessing import sequence
改为
from keras_preprocessing import sequence
结果换了一个报错(然后找相关博客没找到解决方法,可能是我太菜了)
【AI学习笔记】AttributeError: module ‘keras.preprocessing.sequence‘ has no attribute ‘pad_sequences‘
有的人说:
【AI学习笔记】AttributeError: module ‘keras.preprocessing.sequence‘ has no attribute ‘pad_sequences‘

from keras.preprocessing.sequence import pad_sequences
改为
from keras_preprocessing.sequence import pad_sequences
或者
from keras.utils import pad_sequences

看到第一个改法,我寻思着这不和前面那个方法一样吗~
结果:果然不出我所料,一样的错误
【AI学习笔记】AttributeError: module ‘keras.preprocessing.sequence‘ has no attribute ‘pad_sequences‘
然后我又试了第二个改法,结果如下:
【AI学习笔记】AttributeError: module ‘keras.preprocessing.sequence‘ has no attribute ‘pad_sequences‘
欸~,成了哈哈哈,