keras AttributeError: module 'keras.preprocessing' has no attribute 'sequence' 错误解决办法

参考博客https://stackoverflow.com/questions/48561909/attributeerror-module-keras-preprocessing-has-no-attribute-text?answertab=oldest

keras AttributeError: module 'keras.preprocessing' has no attribute 'sequence' 错误解决办法_第1张图片

keras AttributeError: module 'keras.preprocessing' has no attribute 'sequence' 错误解决办法_第2张图片

 

原来我的理解是keras.preprocessing 没有导入或者公开text子模块,因此采用import text方法而不是.text方法。本人就是比葫芦画瓢,嘎嘎。

写法:

import keras

x_pad = kr.preprocessing.sequence.pad_sequences(data_id, max_length)
出现错误:AttributeError: module 'keras.preprocessing' has no attribute 'sequence' 

改为:

from keras.preprocessing import sequence
x_pad = sequence.pad_sequences(data_id, max_length)

解决~,运行没问题

 

你可能感兴趣的:(错误调试,keras,解决办法)