当前位置:   article > 正文

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

module 'keras.layers.preprocessing' has no attribute 'sequence

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

 

原来我的理解是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)

解决~,运行没问题

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/572820
推荐阅读
相关标签
  

闽ICP备14008679号