The MASM Forum Archive 2004 to 2012

General Forums => The Campus => Topic started by: PeterRod on December 15, 2008, 10:06:52 PM

Title: Neural Networks
Post by: PeterRod on December 15, 2008, 10:06:52 PM
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
Title: Re: Neural Networks
Post by: kromag on December 15, 2008, 11:28:43 PM
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.
Title: Re: Neural Networks
Post by: PeterRod on December 16, 2008, 01:30:08 AM
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
Title: Re: Neural Networks
Post by: Citric on December 16, 2008, 01:34:14 AM
I thought i had seen something thing in MASM, and there has been, check out

http://www.madwizard.org/programming/projects/digibrain2
Title: Re: Neural Networks
Post by: Rockoon on December 16, 2008, 01:37:38 AM
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)



Title: Re: Neural Networks
Post by: kromag on December 16, 2008, 01:39:32 AM
Wow thanks for that DSP link  :bg

---
Kromag.