Convolutional LSTM Network: A Machine Learning Approach for Precipitation Nowcasting论文阅读

Convolutional LSTM Network: A Machine Learning Approach for Precipitation Nowcasting论文阅读

问题描述:

时空域序列预测问题:需要通过过去的雷达图预测未来的雷达图:
Convolutional LSTM Network: A Machine Learning Approach for Precipitation Nowcasting论文阅读
其中,χRP×M×N\chi\in R^{P\times M\times N},表示面积范围 M×NM\times NPP 个观测,需要通过过去的JJ个观测预测未来KK个观测。
本文通过提出ConvLSTM结构建立2D图片之间的时序关系。

传统LSTM结构

FC-LSTM原理:
Convolutional LSTM Network: A Machine Learning Approach for Precipitation Nowcasting论文阅读
Convolutional LSTM Network: A Machine Learning Approach for Precipitation Nowcasting论文阅读
其中,it,ft,oti_t, f_t, o_t表示门控单元,其值取0~1之间,分别表示input gate、forget gate、output gate,ctc_t表示memory cell,hth_t表示final state,xtx_t表示输入, 即上一个时间点的memory cell和final state会对下一个时间点产生影响。

注意,xt,ct,htx_t, c_t, h_t可以为1维向量,此时相当于构建一维向量与一维向量之间的时序关系。WxiW_{xi}xix_i相当于fully connect全连接操作。

ConvLSTM结构

Convolutional LSTM Network: A Machine Learning Approach for Precipitation Nowcasting论文阅读
Convolutional LSTM Network: A Machine Learning Approach for Precipitation Nowcasting论文阅读
同样,it,ft,oti_t, f_t, o_t表示门控单元,其值取0~1之间,分别表示input gate、forget gate、output gate,CtC_t表示memory cell,HtH_t表示final state,XtX_t表示输入,三者为二维数据,相当于建立二维数据与二维数据之间的时序联系。

与FC-LSTM相比,Xt,Ht,CtX_t, H_t, C_t为二维数据,WxiW_{xi}XiX_i之间的关系为卷积关系,而FC-LSTM为全连接关系。

Ref.:
[1] Xingjian, S., et al. (2015). Convolutional LSTM network: A machine learning approach for precipitation nowcasting. Advances in neural information processing systems.
[2] Graves A. Generating sequences with recurrent neural networks[J]. arXiv preprint arXiv:1308.0850, 2013.