nnCONDUCTOR
In order to get a good assessment of the abilities of the nn-os a simple application was developed for a Neural Network conductor that learns from the user gestures of one hand, note that all code below runs on the … Continue reading
In order to get a good assessment of the abilities of the nn-os a simple application was developed for a Neural Network conductor that learns from the user gestures of one hand, note that all code below runs on the … Continue reading
From nnBackProp.h (this file will be broken up into more includes): All Nets in the nn-os are serialized via the struct nnPacket i.e. any graph like or matrix like structures for the Neural Networks or Petri Nets are serialized into … Continue reading
Persistent Structs Data structures in nn-os are made to be suitable for persistent applications i.e. they can be stored away and retrieved and all the interim computational structures and params are parts of the struct definition. With a slight hit … Continue reading
Once the Petri Net is configured then the next step is to start it with some set of deposited tokens, in our case only one. nnPetriFire() returns an integer which if non-zero indicates some transition was fire and the print_array() … Continue reading
Below is the code for nnNET1.c. In order to understand the matrices and math see this link: http://www.techfak.uni-bielefeld.de/~mchen/BioPNML/Intro/MRPN.html There are two matrices I and O, input and output, with below C expressions to configure the Petri Net. The programmer needs … Continue reading
In the example test codes there is a nnNET2.c file which contains the C program that runs the NN on the Beaglebone. Idea was to have 3 separate NN running on separate machines and communicating with each other. nnNET2's input … Continue reading