在Brain.js神经网络模型上恢复训练

时间:2018-10-14 01:46:41

标签: node.js brain.js

我希望使用Brain.js逐步训练神经网络,但无法使用当前版本找到解决方案。 There is a similar answer to this same problem,但它使用了不推荐使用的函数参数keepNetworkIntact。怎么做?

1 个答案:

答案 0 :(得分:2)

您只需要将json导入到神经网络中,然后继续训练:

const net = new brain.NeuralNetwork();
net.fromJSON(json);
net.train(trainingData, trainingOptions);

该功能已被弃用,因为我们只希望保持绝对必要的选项,以使api尽可能简单,并且基于导入json,网络可以确定您下一步打算做什么。