This node provides neural networks. It is based on brain.js (version 1.0.0-rc.3).
From your node-red directory:
npm install node-red-contrib-neuralnet
or
in the Node-red, Manage palette, Install node-red-contrib-neuralnet
This node provides neural networks.
At first you need to see the brain.js documentation
The following neural networks are available :
- Feedforward Neural Network with backpropagation.
- Recurrent Neural Network (BETA).
- Long Short Term Memory Neural Network (BETA).
- Gated Recurrent Unit (BETA).
The training data need to be stored in msg.trainData and the format is described here.
The network options can be provided in msg.neuralNetworkOptions.
When the training is done, the network is available in msg.net and can be stored to be imported next time.
The running data need to be stored in msg.runData.
The result is available in msg.decision.
When the input message contains msg.netJSON, the network is loaded from the JSON provided.
MIT License