最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Dead simple example of synaptic js lstm rnn algorithm - Stack Overflow

programmeradmin0浏览0评论

It's pretty crazy that there isn't a dead simple example of the LSTM RNN predicting time series data.

I'd like to use the historical data in the following array:

const array = [
    0,
    0,
    0,
    1,
    0,
    0,
    0,
    1
];

Some pretty mind blowing data right there right?

I'd like to A) train the algorithm with the array then B) test the algorithm with the following array:

const array = [
    0,
    0,
    0,
    1,
    0,
    0,
    0,
    1,
    0
];

Should result in it predicting a 0.

Unfortunately the documentation is pretty bad, no clear code examples exist. Anyone have any examples?

It's pretty crazy that there isn't a dead simple example of the LSTM RNN predicting time series data.

https://github./cazala/synaptic

https://github./cazala/synaptic/wiki/Architect#lstm

I'd like to use the historical data in the following array:

const array = [
    0,
    0,
    0,
    1,
    0,
    0,
    0,
    1
];

Some pretty mind blowing data right there right?

I'd like to A) train the algorithm with the array then B) test the algorithm with the following array:

const array = [
    0,
    0,
    0,
    1,
    0,
    0,
    0,
    1,
    0
];

Should result in it predicting a 0.

Unfortunately the documentation is pretty bad, no clear code examples exist. Anyone have any examples?

Share Improve this question asked Apr 23, 2017 at 18:18 basickarlbasickarl 40.6k69 gold badges238 silver badges357 bronze badges 1
  • 1 Answer: stackoverflow./questions/43589015/… – basickarl Commented Jan 24, 2018 at 14:32
Add a ment  | 

1 Answer 1

Reset to default 11

This answer is not written with Synaptic, but with Neataptic. I decided to make a quick answer that I will include in the documentation soon. This is the code, it works 9/10 times:

var network = new neataptic.architect.LSTM(1,6,1);

// when the timeseries is [0,0,0,1,0,0,0,1...]
var trainingData = [
  { input: [0], output: [0] },
  { input: [0], output: [0] },
  { input: [0], output: [1] },
  { input: [1], output: [0] },
  { input: [0], output: [0] },
  { input: [0], output: [0] },
  { input: [0], output: [1] },
];

network.train(trainingData, {
  log: 500,
  iterations: 6000,
  error: 0.03,
  clear: true,
  rate: 0.05,
});

Run it on JSFIDDLE to see the prediction! For more predictions, open this one.

Explanation to some choices I made:

  • I set option clear to true, as you want do a chronological timeseries prediction. This makes sure that the network starts from the 'beginning' every training iteration, instead of continuing on from the 'end' of the last iteration.
  • Rate is fairly low, higher rates will get stuck at an MSE error of ~0.2
  • The LSTM has 1 block of 6 memory nodes, lower amounts don't seem to work as well.
发布评论

评论列表(0)

  1. 暂无评论