VII. Libneural, a software implementation of a Backpropagation Neural Network

OK, now you should understand the principle of this particular neural network topology, and you want to play around or even you want to learn a little more about it The solution for you is an already implemented and stable library called libneural.

This C++ written library gives the powerful of a BPN neural network without having to bother with implementing the training algorithms as described in the previous section, actually you just have to do the following steps

You can even save on disk all connections weight (also called the memory of the network) to a file for later recovery (to avoid teaching your network the same thing again).

Use of libneural

Previous Contents Next