Skip to content

Implements Back propagation algorithm for multi-layer perceptron in incremental mode

Notifications You must be signed in to change notification settings

ahmedshoaib/backpropagation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

This program implements the Back propagation algorithm on Multi-layer perceptron (1 hidden layer, n hidden neurons) in incremental mode using sigmoidal activation function.

Description of input files:

Line 1 : n                                 //no of attributes
Line 2 : x1 x2 x3 .... xn y11 y12 ....y1n               //Training sample 1  y is binary classification where  '1 0 0 ' indicates class 1
Line 3 : x1 x2 x3 .... xn y21 y22 .... y2n
.
.
.
Line m : x1 x2 x3 .... xn ym1 ym2 ......ymn         //Training sample m

test sample -- enter test attributes :
x1
x2
.
.
xn

About

Implements Back propagation algorithm for multi-layer perceptron in incremental mode

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages