赞
踩
原来我的理解是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)
解决~,运行没问题
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。