I am interested in coding a simple feed forward neural network in MASM.
Are there any examples in this forum.
I could not find any.
Would appreciate any links, help with designs and coding ANN.
Regards
PeterRod
Not sure if you're into any high level languages. If you are there's tons of examples on http://codeproject.com
You could compile, for example, Sasha's examples on this subject in .Net and emit the MSIL then convert that with the same thing the Cosmos OS uses.
Or you could load some example in .Net and/or C/C++ up in Visual Studio Express C++ then step into the program and save the emitted output of the ASM code.
As far as a pure ASM example, I've not ever seen one. I also haven't really looked for one; Figured I'd give you some alternative ways of doing this tho. :wink
---
Kromag.
Thanks kromag.
I now have a starting point.
I looked at Sasha's 3 part article.
After more detailed study I will try a MASM version.
Will continue to post here as problems develop.
PeterRod
I thought i had seen something thing in MASM, and there has been, check out
http://www.madwizard.org/programming/projects/digibrain2
Hard to believe, but this free book on DSP's:
http://www.dspguide.com/
..is all you need to understand feed forward neural networks.
No bullshit. No romance. No over-complications. Just the practical application of the correlation technique. Chapter 26 specifically discusses NN's but you probably want to read the first few chapters of the book as well (up to where it discusses correlation)
Wow thanks for that DSP link :bg
---
Kromag.