0% found this document useful (0 votes)
41 views

Perceptron Learning Table

This document provides details on using perceptron learning for Jordan and Elman recurrent neural networks. It includes the threshold and learning rate values used, how the initial weights are set, sample input and initial weight tables, and shows that Jordan recurrent neural networks have a single neuron with weighted inputs that are summed and passed through a sigmoid function to produce the output.

Uploaded by

Caey Zen
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
41 views

Perceptron Learning Table

This document provides details on using perceptron learning for Jordan and Elman recurrent neural networks. It includes the threshold and learning rate values used, how the initial weights are set, sample input and initial weight tables, and shows that Jordan recurrent neural networks have a single neuron with weighted inputs that are summed and passed through a sigmoid function to produce the output.

Uploaded by

Caey Zen
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

PERCEPTRON LEARNING TABLE FOR BOTH JORDAN AND ELMAN RECURRENT NEURAL

NETWORK

Threshold value: = 0.2 [0-1]; // set random number & test


Learning rate: = 0.1;

// set random number & test

Initial weight = [0-1];

Epoch,
En
1

Epoch,
En
1

Data,
Dn
1
2
3
4
5
.
.
.
n
-

Data,
Dn
1
2
3
4
5
.
.
.
n
-

// set random number & test

1
1
1
1
1
1

1
0.3
0.3
0.3
0.3
0.3

2
0
1
0
1
1

2
0.2
0.2
0.2
0.2
0.2

3
1
1
1
1
1

3
0.3
0.3
0.3
0.3
0.3

4
1
1
1
1
0

5
1
1
1
1
1

4
0.2
0.2
0.2
0.2
0.2

6
0
0
0
0
1

7
1
1
1
1
1

5
0.3
0.3
0.3
0.3
0.3

8
1
1
1
1
1

Input, Xn
9
10
0
1
0
1
1
1
0
1
1
1
.
.
.
.
Table 1 Input

11
0
0
1
0
1

12
0
1
1
1
1

13
1
1
0
1
0

Initial weights, Wn
8
9
10
0.2
0.3
0.2
0.2
0.3
0.2
0.2
0.3
0.2
0.2
0.3
0.2
0.2
0.3
0.2
.
.
.
.
Table 2 Initial weight
6
0.2
0.2
0.2
0.2
0.2

7
0.3
0.3
0.3
0.3
0.3

14
0
1
1
1
0

11
0.3
0.3
0.3
0.3
0.3

15
1
1
0
0
1

16
-

12
0.2
0.2
0.2
0.2
0.2

Desired output,
Yd
1
0
1
0
1
.
.
.
.
-

13
0.3
0.3
0.3
0.3
0.3

14
0.2
0.2
0.2
0.2
0.2

15
0.3
0.3
0.3
0.3
0.3

16
-

Epoch,
En

Data,
Dn

1
2
3
4
5
.
.
.
n
-

Epoch,
En
1

Data,
Dn
1
2
3
4
5
.
.
.
n
-

1
-

2
-

3
-

4
-

5
-

6
-

Actual
Output,
Yd
.
.
.
n
-

7
-

Error,
e
.
.
.
n
-

Final weights, Wfn


8
9
10
.
.
.
.
-

11
-

12
-

13
-

14
-

15
-

16
-

Jordan Recurrent Neural Network single neutron


1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.

Gender,
Status,
Status,
Monetary,
Monetary,
DldApps,
DldApps,
ProbFec,
ProbFec,
CustServ,
CustServ,
Quality,
Quality,
StfctionLvl,
StfctionLvl,
FedbackInput

X1
X2
X3
X4
X5
X6
X7
X8
X9
X10
X11
X12
X13
X14
X15
X16
Input layer

W1.15

xiwi

W16

sigmoid

Hidden layer

Output layer

You might also like