|
Netlib helps the developer in his/her neural network creation process, by having a collection of standard sub-net creation functions, as well as functions to connect one node (neuron) in any sub-net to any other node in any other sub-net. In this way, the neural net depicted above was created with calls to 3 Netlib functions: Create_And_Net(...), Create_Or_Net(...), and Connect_Net2Net(...). Voila, the programmer now has a logical AND net with it’s output connected to one input of a logical OR net. |
|