這是非常瘋狂的,沒有死簡單 LSTM RNN預測時間序列數據的例子。突然的js lstm rnn算法死簡單的例子
https://github.com/cazala/synaptic
https://github.com/cazala/synaptic/wiki/Architect#lstm
我想下面的陣列中使用的歷史數據:
const array = [
0,
0,
0,
1,
0,
0,
0,
1
];
一些非常令人興奮的數據就在那裏吧?
我想A)培養與陣列然後B)的算法測試用下面陣列的算法:
const array = [
0,
0,
0,
1,
0,
0,
0,
1,
0
];
應導致它預測0
。
不幸的是,文檔非常糟糕,沒有明確的代碼示例。任何人有任何例子?
答:https://stackoverflow.com/questions/43589015/lstm-figuring-out-the-library?noredirect=1&lq=1 –