标签: machine-learning
我正在与brainjs玩耍,并希望训练一个可以预测简单+1计数器的模型。
所以当我想预测3个条目中的4,5,6时,我期望7,8,9
我通过两种方式将Brainjs的LSTMTimestep用于以下输入:
1。 train([[1,2,3,4,5,6,7,8,9,10]])
train([[1,2,3,4,5,6,7,8,9,10]])
2。 train([[1,2,3,4,5],[6,7,8,9,10]])
train([[1,2,3,4,5],[6,7,8,9,10]])
https://github.com/BrainJS/brain.js/blob/master/README.md#for-training-with-rnntimestep-lstmtimestep-and-grutimestep
该预测适用于看到的数据,但是当我使用看不见的数字时会失败。
我在做什么错了,没有足够的数据吗?