Programming Neural Networks...

Elledan

Banned
Jul 24, 2000
8,880
0
0
I've been looking a bit into neural networks, and programming one seems like a good challenge.

Anyone got some experience with this? Any tutorials, tips etc. are appreciated.

BTW I'll be using C++
 

DesignDawg

Diamond Member
Oct 9, 1999
3,919
0
0
I read a lot about them a while back. Did a report on the uses of them. I found that fighter jets have been a killer app for neural networks for a long time. Maybe try looking around there and see what you find?

Ricky
DesignDawg
 

satori

Senior member
Nov 2, 1999
471
0
0
Took some classes for it a couple years back. I'll dig around for my old books, if ya want.
 

KMurphy

Golden Member
May 16, 2000
1,014
0
0
What specifically do you want to know? I coded a basic character recognition algorithm in C++ for lower case alphabet letters; requires a training set. I have a SON that someone else wrote in C++ if you want that.

The easiest way to go is to organize your pseudocode. Then, write your functions to perform the pseudocode in whatever language you want. They are pretty simple, just a lot of multi-dimensional array indexing.