-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmlp.m
247 lines (170 loc) · 6.28 KB
/
mlp.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
%%
% Character Recognition Project version 1.0.0
% NEURAL NETWORK Multi Layer Perceptron
% COPYRIGHT (c) 2010 - 2011
% Programmed by: Jalal Amini Robaty, Shayan Asadpour
% Master: Mrs. Abnavi
%%
function [id] = mlp(char, epoch, suppressFigures)
%epoch = 1;
learningRate = 0.075;
momentum = 0.8;
charTypeCount = 23;
characters = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23;
'1', '2', '3', '4', '5', '6', '7', '8', '9', 'b', 'c', 'd', 't', 'te', 's', 'gh', 'n', 'h', 'j', 'v', 'y', 'l', 'm'};
imageRows = 20;
imageCols = 20;
imageSize = imageRows * imageCols;
charTypeLearnCount = 3;
totalInputCount = charTypeCount * charTypeLearnCount;
hiddenLayerNeuronCount = 280;
S = zeros(imageSize, totalInputCount);
outputWeights = zeros(charTypeCount, hiddenLayerNeuronCount) ;
hiddenWeights = rand(hiddenLayerNeuronCount, imageSize) / 10 - 0.05 ;
hiddenLayerBias = ones(hiddenLayerNeuronCount, 1);
outputLayerBias = ones(charTypeCount, 1);
testOutputs = zeros(totalInputCount, 1);
trainOutputs = zeros(totalInputCount, 1);
outputMatrix = zeros(charTypeCount, totalInputCount);
% Load samples
for j = 1 : charTypeLearnCount % = 3
for i = 1 : charTypeCount % = 21
path = ['20x20/' characters{2, i} '-' int2str(j) '.jpg'];
image = imread(path);
image = imresize(image, [20 20]);
image = imresize(image, [imageRows imageCols]);
image = ~image;
col = reshape(image, imageSize, 1);
S(:, ((j - 1) * charTypeCount) + i) = col;
end
end
% Initialize Target matrix
T = zeros(charTypeCount, charTypeCount);
for i = 1 : charTypeCount
T(i, i) = 1;
end
[row col] = size(S); %#ok<NASGU>
while epoch > 0
counter = 0 ;
% Training Phase
for i = 1 : totalInputCount
Iy = hiddenWeights * S(:, i) + hiddenLayerBias;
% Sigmoid function for hidden layer
Y = tansig(Iy);
Io = outputWeights * Y + outputLayerBias;
O = purelin(Io);
[c, f] = max (O);
O(f, 1) = 1;
for g = 1 : charTypeCount
if g ~= f
if O(g, 1) <= c
O(g, 1) = 0;
end
end
end
x = fix(mod(i, charTypeCount));
if(x == 0)
x = charTypeCount;
end
thetao = T(:, x) - O ;
thetay = outputWeights' * thetao;
outputLayerBias = outputLayerBias + learningRate * thetao;
hiddenLayerBias = hiddenLayerBias + learningRate * thetay;
hiddenOldWeight = outputWeights;
outputWeights = outputWeights + learningRate * thetao * Y';
hiddenweightChange = outputWeights - hiddenOldWeight;
outputWeights = outputWeights + (hiddenweightChange * momentum);
outputOldWeight = hiddenWeights;
hiddenWeights = hiddenWeights + learningRate * thetay * S(:, i)';
outputWeightChange = hiddenWeights - outputOldWeight;
hiddenWeights = hiddenWeights + (outputWeightChange * momentum);
outputMatrix(:, i) = O;
trainOutputs(i, 1) = find(O, 1);
end
if (isequal(T, outputMatrix))
epoch = 0;
end
%Test Phase
for i = 1 : totalInputCount
Iy = hiddenWeights * S(:, i) + hiddenLayerBias;
Y = tansig(Iy);
Io = outputWeights * Y + outputLayerBias;
O = purelin(Io);
[c, f] = max (O);
O(f, 1)=1;
for g = 1 : charTypeCount
if g ~= f
if O(g, 1) <= c
O(g, 1) = 0;
end
end
end
testOutputs(i, 1) = find(O, 1);
end
epoch = epoch - 1;
epoch
end
if(~suppressFigures)
%% Display training result
for i = 1 : totalInputCount
x = fix(mod(i, charTypeCount));
if(x == 0)
x = charTypeCount;
end
if(x == 1)
figure('Name', 'Training Result');
end
subplot(4, 6, x);
image = reshape(S(:, i), sqrt(imageSize), sqrt(imageSize));
imshow(image, []);
subplot(4, 6, x);
id = trainOutputs(i, 1);
titleId = characters{2, id };
title(titleId);
end
%% Display test result
for i = 1 : totalInputCount
x = fix(mod(i, charTypeCount));
if(x == 0)
x = charTypeCount;
end
if(x == 1)
figure('Name', 'Test Result');
end
subplot(4, 6, x);
image = reshape(S(:, i), sqrt(imageSize), sqrt(imageSize));
imshow(image, []);
subplot(4, 6, x);
id = testOutputs(i, 1);
titleId = characters{2, id };
title(titleId);
end
end
%% Generalization Phase
% Load samples
Iy = hiddenWeights * char + hiddenLayerBias;
Y = tansig(Iy);
Io = outputWeights * Y + outputLayerBias;
O = purelin(Io);
[c, f] = max(O);
O(f, 1) = 1;
for g = 1 : charTypeCount
if g ~= f
if O(g, 1) <= c
O(g, 1) = 0;
end
end
end
id = find(O, 1);
% Display generalization result
figure('Name', 'Generalization Result');
subplot(1, 1, 1);
image = reshape(char, sqrt(imageSize), sqrt(imageSize));
imshow(image, []);
titleId = characters{2, id};
title(titleId);
% percentage = counter / charTypeCount * 100.0;
% set(gcf, 'name',['Generalization Result : '...
% num2str(percentage) '% Correct'], 'numbertitle', 'off');
pause;
end