News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

Neural Networks

Started by PeterRod, December 15, 2008, 10:06:52 PM

Previous topic - Next topic

PeterRod

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

kromag

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.

PeterRod

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

Citric

I thought i had seen something thing in MASM, and there has been, check out

http://www.madwizard.org/programming/projects/digibrain2

Rockoon

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)



When C++ compilers can be coerced to emit rcl and rcr, I *might* consider using one.

kromag

Wow thanks for that DSP link  :bg

---
Kromag.