2020
10-08
10-08
keras 简单 lstm实例(基于one-hot编码)
简单的LSTM问题,能够预测一句话的下一个字词是什么固定长度的句子,一个句子有3个词。使用one-hot编码各种引用importkerasfromkeras.modelsimportSequentialfromkeras.layersimportLSTM,Dense,Dropoutimportnumpyasnp数据预处理data='abcdefghijklmnopqrstuvwxyz'data_set=set(data)word_2_int={b:afora,binenumerate(data_set)}int_2_word={a:bfora,binenumerate(data_set)}word_len=len(data_s...
继续阅读 >