時序預測 | Matlab實現(xiàn)ARIMA-LSTM差分自回歸移動差分自回歸移動平均模型模型結合長短期記憶神經(jīng)網(wǎng)絡時間序列預測
預測效果
基本介紹
時序預測 | Matlab實現(xiàn)ARIMA-LSTM差分自回歸移動差分自回歸移動平均模型模型結合長短期記憶神經(jīng)網(wǎng)絡時間序列預測文章來源:http://www.zghlxwxcb.cn/news/detail-733321.html
程序設計
- 完整程序和數(shù)據(jù)下載方式私信博主回復:Matlab實現(xiàn)ARIMA-LSTM差分自回歸移動差分自回歸移動平均模型模型結合長短期記憶神經(jīng)網(wǎng)絡時間序列預測。
%% lstm
layers = [ ...
sequenceInputLayer(inputSize) %輸入層設置
lstmLayer(numhidden_units1,'name','hidden1') %學習層設置
dropoutLayer(0.2,'name','dropout_1')
lstmLayer(numhidden_units2,'name','hidden2')
dropoutLayer(0.3,'name','dropout_2')
lstmLayer(numhidden_units3,'name','hidden3')
dropoutLayer(0.2,'name','dropout_3')
fullyConnectedLayer(outputSize) % 全連接層設置
regressionLayer('name','out')];
%% trainoption(lstm)
參考資料
[1] https://blog.csdn.net/article/details/126072792?spm=1001.2014.3001.5502
[2] https://blog.csdn.net/article/details/126044265?spm=1001.2014.3001.5502文章來源地址http://www.zghlxwxcb.cn/news/detail-733321.html
到了這里,關于時序預測 | Matlab實現(xiàn)ARIMA-LSTM差分自回歸移動差分自回歸移動平均模型模型結合長短期記憶神經(jīng)網(wǎng)絡時間序列預測的文章就介紹完了。如果您還想了解更多內容,請在右上角搜索TOY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關文章,希望大家以后多多支持TOY模板網(wǎng)!