Click here to Skip to main content
15,860,943 members
Articles / Desktop Programming / MFC
Article

Neural Network Classifier

Rate me:
Please Sign up or sign in to vote.
4.47/5 (23 votes)
29 Jan 2005CPOL2 min read 163.8K   8.4K   82   24
A Multilayer perceptron used to classify blue and red points.

Sample Image - Demo.png

Introduction

Neural Network is a powerful tool used in modern intelligent systems. Nowadays, many applications that involve pattern recognition, feature mapping, clustering, classification and etc. use Neural Networks as an essential component. In recent decades, several types of neural networks have been developed. Back Error Propagation, Kohonen feature map and Hopfield network are some of basic networks that have been developed and are used in many applications.

In this article general Multi Layer Perceptron or Back Error Propagation is presented. The sample application uses this Multi Layer Perceptron and classifies the blue and red patterns generated by user.

Network structure

Figure below shows a typical MLP with three layers of weights.

Sample screenshot

In a typical neural network, these objects exist: layers (usually 3 layers), some neurons in each layer and synapses between layers. Based on these objects, I developed appropriate classes.

Classes used in MLP

Neuron: This is the basic element of network, that has some members such as output, sum and delta.

static double momentum;// = 0.9;
static double learningRate;// = 0.05;
CList<Synapse*> inlinks;//a list of synapses brings to this neuron
CList<Synapse*> outlinks;
double output; // range from 0.0 to 1.0
double sum; // weighted sum of inputs
double delta;
CString label;

Layer: This class has a list of neurons and some methods for computing errors and weight adjustment.

CList<Neuron*> neurons;
int size;
CString name;
Layer(CString strLbl,int size);
Neuron* getNeuron(int i);
void computeOutputs();
void computeBackpropDeltas(Samples s); // for output neurons
void computeBackpropDeltas(); // for hidden neurons
void computeWeights();

Synapse: This class has its weight and two pointers to its connected neurons (from and to).

double weight;//weight between "to" and "from" neurons
double data;
Neuron* from;
Neuron* to;

Perceptron: This is the last class that has some lists of layers, inputSamples and outputSamples (targets).

CList<Layer*> layers;
CList<Samples> inputSamples;//Samples are array of double
CList<Samples> outputSamples;
Layer* inputLayer;
Layer* outputLayer;
double error;

How to use Sample Application

To use this program follow these steps:

  1. Clear screen by pressing on the Clear button.
  2. Define your network structure by putting appropriate values in H1, H2 and H3 edit boxes. These are the number of neurons in hidden layers. If some value was 0, that layer will not be included in network (by default the network has three layers: one input, one hidden and one output).
  3. Put some blue and red points on screen by clicking on it. (Select color from combo box).
  4. Now you can press “initialize” network button.
  5. Set maximum number of iterations and press “learn” as more as the network correctly classifies all points on screen. You can see the error graph by clicking on “Show error graph”. The “smartgraph” component is used in this project and you must download and register it on your computer to see error graph correctly. It is available here.
  6. Error values can be written into a text file, if you check in “Write errors to file”.

This program is fully object oriented and can be understood easily if you are familiar with Multi Layer Perceptron. At last, I used this class to develop a Farsi OCR application and it was working very well!.

Use and enjoy…

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) https://shahaab-co.com
Iran (Islamic Republic of) Iran (Islamic Republic of)
Currently I'm working at Dept. of Electrical Engineering in University of Shahrood.
Pattern Recognition (specially OCR), Neural Networks, Image Processing and Machine Vision are my interests. However I'm a PROGRAMMER as well.
BSc: Sharif University of technology @ 2002
MSc. and PhD: Tarbiat Modarres University @ 2006 & 2010 respectively

Personal Blog: Andisheh Online

Religious Blogs: Shia Muslims , Islamic Quotes

Company Site: Shahaab-co
My old Site: Farsi OCR

Comments and Discussions

 
Generalhelp me Pin
lechat232628-Sep-09 7:19
lechat232628-Sep-09 7:19 
GeneralRed&Blue vs Yellow&Blue, see similar software: Sharky Neural Network Pin
SharkTime6-Aug-09 7:44
SharkTime6-Aug-09 7:44 
Generalimage processing & neural network Pin
Member 352189429-Jun-09 21:22
Member 352189429-Jun-09 21:22 
Generalhelp text to speech Pin
elhamhaj31-Jan-09 19:08
elhamhaj31-Jan-09 19:08 
GeneralSOM Pin
aparna tiwari18-Jan-09 2:31
aparna tiwari18-Jan-09 2:31 
GeneralExe crashes under Vista Pin
DPLNeural30-Sep-08 23:45
DPLNeural30-Sep-08 23:45 
GeneralRe: Exe crashes under Vista Pin
Jeff Robertson20-Nov-08 2:32
Jeff Robertson20-Nov-08 2:32 
Generali need a vc6 version Pin
kuelite29-Aug-07 5:24
kuelite29-Aug-07 5:24 
Generalmlp Pin
m_kh26-Jul-06 9:04
m_kh26-Jul-06 9:04 
Generalseems the code forget to free the memory resourses Pin
ninnyknox16-Apr-06 11:46
ninnyknox16-Apr-06 11:46 
GeneralRe: seems the code forget to free the memory resourses Pin
Hossein Khosravi16-Apr-06 18:57
Hossein Khosravi16-Apr-06 18:57 
GeneralRe: need help Pin
Hossein Khosravi8-Apr-06 19:25
Hossein Khosravi8-Apr-06 19:25 
NewsVery Large Handwritten Farsi Digit Dataset [modified] Pin
Hossein Khosravi15-Jan-06 20:36
Hossein Khosravi15-Jan-06 20:36 
QuestionDo these NN classes need any change for OCR app? Pin
caykahve27-Dec-05 13:33
caykahve27-Dec-05 13:33 
GeneralDifferent training set Pin
patrick tran13-Sep-05 3:55
patrick tran13-Sep-05 3:55 
Questionwhat about voice recognition Pin
payamtooba9-Aug-05 5:46
payamtooba9-Aug-05 5:46 
GeneralDoing something very similar Pin
zsnow4-Feb-05 10:25
zsnow4-Feb-05 10:25 
GeneralRe: Doing something very similar Pin
sgenie6821-Jun-05 1:54
sgenie6821-Jun-05 1:54 
GeneralThought-provoking Pin
Jerry Evans31-Jan-05 11:30
Jerry Evans31-Jan-05 11:30 
GeneralRe: Thought-provoking Pin
Hossein Khosravi31-Jan-05 20:05
Hossein Khosravi31-Jan-05 20:05 
QuestionIs that really you Hossien Khosravi?? Pin
Anonymous30-Jan-05 11:35
Anonymous30-Jan-05 11:35 
AnswerRe: Is that really you Hossien Khosravi?? Pin
toxcct1-Feb-05 6:02
toxcct1-Feb-05 6:02 
GeneralInteresting Pin
Rui A. Rebelo30-Jan-05 5:57
Rui A. Rebelo30-Jan-05 5:57 
GeneralAt last some info... Pin
Anonymous30-Jan-05 1:25
Anonymous30-Jan-05 1:25 
Excellent, I havent checked the code yet, but at last something that seems to be an easy implementation of a N.Network.

I've been working with similar classes but it was a long time ago and I couldnt find anything from that time, so this is great...

Cheers

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.