之前简单介绍过 LSTM,网址,本文将利用 LSTM 构建一个故事生成的模型。
数据及其预处理
数据源
我们使用的数据是 Aesop’s Fables 里的一部分内容,如下:
long ago , the mice had a general council to consider what measures they could take to outwit their common enemy , the cat . some said this , and some said that but at last a young mouse got up and said he had a proposal to make继续阅读 »
This blog is reprinted from colah's blog and some changes are added by myself.
About RNN
Humans don’t start their thinking from scratch every second. And traditional neural networks have a major shortcoming, and they cannot learn from the previous information. Recurrent neural networks (RNN) address this issue.
RNN继续阅读 »
Text Recognition
Fully Convolutional Recurrent Network for Handwritten Chinese Text Recognition paper
Deep LSTM Networks for Online Chinese Handwriting Recognition 2016 ICFHR
Convolution Multi-directional Recurrent Network for Offline Handwritten Text Recognition 2016 ICFHR
Sequence to Sequen继续阅读 »