-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNeuralNetworkWrapper.cs
357 lines (294 loc) · 16.4 KB
/
NeuralNetworkWrapper.cs
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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
using NeuronDotNet.Core;
using NeuronDotNet.Core.Backpropagation;
using ORI.NeuralNetworks.BusinessLogic;
using ORI.NeuralNetworks.Models;
using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using System.Threading;
using System.Windows.Threading;
namespace ORI.NeuralNetworks
{
[Serializable]
public class NeuralNetworkWrapper
{
private BackpropagationNetwork _genitiveNetwork;
private BackpropagationNetwork _dativeOrLocativeNetwork;
private BackpropagationNetwork _accussativeNetwork;
private BackpropagationNetwork _vocativeNetwork;
private BackpropagationNetwork _instrumentalNetwork;
private double[] errorList;
public NeuralNetworkWrapper()
{
errorList = new double[Constants.Cycles];
InitializeGenitiveNetwork();
InitializeDativeOrLocativeNetwork();
InitializeAccussativeNetwork();
InitializeVocativeNetwork();
InitializeInstrumentalNetwork();
}
#region [Initialization]
private void InitializeGenitiveNetwork()
{
SigmoidLayer inputLayer = new SigmoidLayer(Constants.InterfaceNeuronCount);
SigmoidLayer hiddenLayer = new SigmoidLayer(Constants.NeuronCount);
SigmoidLayer outputLayer = new SigmoidLayer(Constants.InterfaceNeuronCount);
new BackpropagationConnector(inputLayer, hiddenLayer);
new BackpropagationConnector(hiddenLayer, outputLayer);
_genitiveNetwork = new BackpropagationNetwork(inputLayer, outputLayer);
_genitiveNetwork.SetLearningRate(Constants.LearningRate);
}
private void InitializeDativeOrLocativeNetwork()
{
SigmoidLayer inputLayer = new SigmoidLayer(Constants.InterfaceNeuronCount);
SigmoidLayer hiddenLayer = new SigmoidLayer(Constants.NeuronCount);
SigmoidLayer outputLayer = new SigmoidLayer(Constants.InterfaceNeuronCount);
new BackpropagationConnector(inputLayer, hiddenLayer);
new BackpropagationConnector(hiddenLayer, outputLayer);
_dativeOrLocativeNetwork = new BackpropagationNetwork(inputLayer, outputLayer);
_dativeOrLocativeNetwork.SetLearningRate(Constants.LearningRate);
}
private void InitializeAccussativeNetwork()
{
SigmoidLayer inputLayer = new SigmoidLayer(Constants.InterfaceNeuronCount);
SigmoidLayer hiddenLayer = new SigmoidLayer(Constants.NeuronCount);
SigmoidLayer outputLayer = new SigmoidLayer(Constants.InterfaceNeuronCount);
new BackpropagationConnector(inputLayer, hiddenLayer);
new BackpropagationConnector(hiddenLayer, outputLayer);
_accussativeNetwork = new BackpropagationNetwork(inputLayer, outputLayer);
_accussativeNetwork.SetLearningRate(Constants.LearningRate);
}
private void InitializeVocativeNetwork()
{
SigmoidLayer inputLayer = new SigmoidLayer(Constants.InterfaceNeuronCount);
SigmoidLayer hiddenLayer = new SigmoidLayer(Constants.NeuronCount);
SigmoidLayer outputLayer = new SigmoidLayer(Constants.InterfaceNeuronCount);
new BackpropagationConnector(inputLayer, hiddenLayer);
new BackpropagationConnector(hiddenLayer, outputLayer);
_vocativeNetwork = new BackpropagationNetwork(inputLayer, outputLayer);
_vocativeNetwork.SetLearningRate(Constants.LearningRate);
}
private void InitializeInstrumentalNetwork()
{
SigmoidLayer inputLayer = new SigmoidLayer(Constants.InterfaceNeuronCount);
SigmoidLayer hiddenLayer = new SigmoidLayer(Constants.NeuronCount);
SigmoidLayer outputLayer = new SigmoidLayer(Constants.InterfaceNeuronCount);
new BackpropagationConnector(inputLayer, hiddenLayer);
new BackpropagationConnector(hiddenLayer, outputLayer);
_instrumentalNetwork = new BackpropagationNetwork(inputLayer, outputLayer);
_instrumentalNetwork.SetLearningRate(Constants.LearningRate);
}
#endregion [Initialization]
#region [Training]
public void InitialTraining()
{
string[] names = File.ReadAllLines(
System.IO.Path.GetFullPath(
System.IO.Path.Combine(
System.Reflection.Assembly.GetExecutingAssembly().Location,
@"..\..\..\database\initial_training.txt"
)
), Encoding.Default);
Thread t = new Thread(new ThreadStart(() =>
{
Train(names);
}));
t.Start();
}
public void TrainOnConcreteNouns(List<NounModel> names)
{
Commons.mainWindow.progressBar.Dispatcher.Invoke(() => Commons.mainWindow.progressBar.Value = 0, DispatcherPriority.Background);
TrainingSet genitiveSet = new TrainingSet(Constants.InterfaceNeuronCount, Constants.InterfaceNeuronCount);
TrainingSet dativeLocativeSet = new TrainingSet(Constants.InterfaceNeuronCount, Constants.InterfaceNeuronCount);
TrainingSet accussativeSet = new TrainingSet(Constants.InterfaceNeuronCount, Constants.InterfaceNeuronCount);
TrainingSet vocativeSet = new TrainingSet(Constants.InterfaceNeuronCount, Constants.InterfaceNeuronCount);
TrainingSet instrumentalSet = new TrainingSet(Constants.InterfaceNeuronCount, Constants.InterfaceNeuronCount);
double step = 100.0 / names.Count;
foreach (var n in names)
{
genitiveSet.Add(new TrainingSample(EncodingHelper.EncodeInput(n.Nominative).ToArray(), EncodingHelper.EncodeInput(n.Genitive).ToArray()));
dativeLocativeSet.Add(new TrainingSample(EncodingHelper.EncodeInput(n.Nominative).ToArray(), EncodingHelper.EncodeInput(n.Dative).ToArray()));
accussativeSet.Add(new TrainingSample(EncodingHelper.EncodeInput(n.Nominative).ToArray(), EncodingHelper.EncodeInput(n.Accussative).ToArray()));
vocativeSet.Add(new TrainingSample(EncodingHelper.EncodeInput(n.Nominative).ToArray(), EncodingHelper.EncodeInput(n.Vocative).ToArray()));
instrumentalSet.Add(new TrainingSample(EncodingHelper.EncodeInput(n.Nominative).ToArray(), EncodingHelper.EncodeInput(n.Instrumental).ToArray()));
Thread t1 = new Thread(new ThreadStart(() =>
{
TrainGenitive(genitiveSet);
}));
t1.Start();
Thread t2 = new Thread(new ThreadStart(() =>
{
TrainDativeOrLocative(dativeLocativeSet);
}));
t2.Start();
Thread t3 = new Thread(new ThreadStart(() =>
{
TrainAccussative(accussativeSet);
}));
t3.Start();
Thread t4 = new Thread(new ThreadStart(() =>
{
TrainVocative(vocativeSet);
}));
t4.Start();
Thread t5 = new Thread(new ThreadStart(() =>
{
TrainInstrumental(instrumentalSet);
}));
t5.Start();
t1.Join();
t2.Join();
t3.Join();
t4.Join();
t5.Join();
genitiveSet = new TrainingSet(Constants.InterfaceNeuronCount, Constants.InterfaceNeuronCount);
dativeLocativeSet = new TrainingSet(Constants.InterfaceNeuronCount, Constants.InterfaceNeuronCount);
accussativeSet = new TrainingSet(Constants.InterfaceNeuronCount, Constants.InterfaceNeuronCount);
vocativeSet = new TrainingSet(Constants.InterfaceNeuronCount, Constants.InterfaceNeuronCount);
instrumentalSet = new TrainingSet(Constants.InterfaceNeuronCount, Constants.InterfaceNeuronCount);
Commons.mainWindow.progressBar.Dispatcher.Invoke(() => Commons.mainWindow.progressBar.Value += step, DispatcherPriority.Background);
}
Commons.mainWindow.progressBar.Dispatcher.Invoke(() => Commons.mainWindow.submitBtn.IsEnabled = true, DispatcherPriority.Background);
Commons.mainWindow.progressBar.Dispatcher.Invoke(() => Commons.mainWindow.initialTrainingBtn.IsEnabled = true, DispatcherPriority.Background);
Commons.mainWindow.progressBar.Dispatcher.Invoke(() => Commons.mainWindow.trainBtn.IsEnabled = true, DispatcherPriority.Background);
Commons.mainWindow.progressBar.Dispatcher.Invoke(() => Commons.mainWindow.indicatorLabel.Content = "Ready", DispatcherPriority.Background);
}
private void Train(string[] names)
{
Commons.mainWindow.progressBar.Dispatcher.Invoke(() => Commons.mainWindow.progressBar.Value = 0, DispatcherPriority.Background);
TrainingSet genitiveSet = new TrainingSet(Constants.InterfaceNeuronCount, Constants.InterfaceNeuronCount);
TrainingSet dativeLocativeSet = new TrainingSet(Constants.InterfaceNeuronCount, Constants.InterfaceNeuronCount);
TrainingSet accussativeSet = new TrainingSet(Constants.InterfaceNeuronCount, Constants.InterfaceNeuronCount);
TrainingSet vocativeSet = new TrainingSet(Constants.InterfaceNeuronCount, Constants.InterfaceNeuronCount);
TrainingSet instrumentalSet = new TrainingSet(Constants.InterfaceNeuronCount, Constants.InterfaceNeuronCount);
double step = 100.0 / names.Length;
foreach (var n in names)
{
genitiveSet.Add(new TrainingSample(EncodingHelper.EncodeInput(n).ToArray(), EncodingHelper.EncodeInput(CaseHelper.GetGenitive(n)).ToArray()));
dativeLocativeSet.Add(new TrainingSample(EncodingHelper.EncodeInput(n).ToArray(), EncodingHelper.EncodeInput(CaseHelper.GetDativeOrLocative(n)).ToArray()));
accussativeSet.Add(new TrainingSample(EncodingHelper.EncodeInput(n).ToArray(), EncodingHelper.EncodeInput(CaseHelper.GetAccussative(n)).ToArray()));
vocativeSet.Add(new TrainingSample(EncodingHelper.EncodeInput(n).ToArray(), EncodingHelper.EncodeInput(CaseHelper.GetVocative(n)).ToArray()));
instrumentalSet.Add(new TrainingSample(EncodingHelper.EncodeInput(n).ToArray(), EncodingHelper.EncodeInput(CaseHelper.GetInstrumental(n)).ToArray()));
Thread t1 = new Thread(new ThreadStart(() =>
{
TrainGenitive(genitiveSet);
}));
t1.Start();
Thread t2 = new Thread(new ThreadStart(() =>
{
TrainDativeOrLocative(dativeLocativeSet);
}));
t2.Start();
Thread t3 = new Thread(new ThreadStart(() =>
{
TrainAccussative(accussativeSet);
}));
t3.Start();
Thread t4 = new Thread(new ThreadStart(() =>
{
TrainVocative(vocativeSet);
}));
t4.Start();
Thread t5 = new Thread(new ThreadStart(() =>
{
TrainInstrumental(instrumentalSet);
}));
t5.Start();
t1.Join();
t2.Join();
t3.Join();
t4.Join();
t5.Join();
genitiveSet = new TrainingSet(Constants.InterfaceNeuronCount, Constants.InterfaceNeuronCount);
dativeLocativeSet = new TrainingSet(Constants.InterfaceNeuronCount, Constants.InterfaceNeuronCount);
accussativeSet = new TrainingSet(Constants.InterfaceNeuronCount, Constants.InterfaceNeuronCount);
vocativeSet = new TrainingSet(Constants.InterfaceNeuronCount, Constants.InterfaceNeuronCount);
instrumentalSet = new TrainingSet(Constants.InterfaceNeuronCount, Constants.InterfaceNeuronCount);
Commons.mainWindow.progressBar.Dispatcher.Invoke(() => Commons.mainWindow.progressBar.Value += step, DispatcherPriority.Background);
}
Commons.mainWindow.progressBar.Dispatcher.Invoke(() => Commons.mainWindow.submitBtn.IsEnabled = true, DispatcherPriority.Background);
Commons.mainWindow.progressBar.Dispatcher.Invoke(() => Commons.mainWindow.initialTrainingBtn.IsEnabled = true, DispatcherPriority.Background);
Commons.mainWindow.progressBar.Dispatcher.Invoke(() => Commons.mainWindow.trainBtn.IsEnabled = true, DispatcherPriority.Background);
Commons.mainWindow.progressBar.Dispatcher.Invoke(() => Commons.mainWindow.indicatorLabel.Content = "Ready", DispatcherPriority.Background);
}
private void TrainGenitive(TrainingSet set)
{
double max = 0d;
_genitiveNetwork.EndEpochEvent += delegate (object network, TrainingEpochEventArgs args)
{
errorList[args.TrainingIteration] = _genitiveNetwork.MeanSquaredError;
max = Math.Max(max, _genitiveNetwork.MeanSquaredError);
};
_genitiveNetwork.Learn(set, Constants.Cycles);
}
private void TrainDativeOrLocative(TrainingSet set)
{
double max = 0d;
_dativeOrLocativeNetwork.EndEpochEvent += delegate (object network, TrainingEpochEventArgs args)
{
errorList[args.TrainingIteration] = _dativeOrLocativeNetwork.MeanSquaredError;
max = Math.Max(max, _dativeOrLocativeNetwork.MeanSquaredError);
};
_dativeOrLocativeNetwork.Learn(set, Constants.Cycles);
}
private void TrainAccussative(TrainingSet set)
{
double max = 0d;
_accussativeNetwork.EndEpochEvent += delegate (object network, TrainingEpochEventArgs args)
{
errorList[args.TrainingIteration] = _accussativeNetwork.MeanSquaredError;
max = Math.Max(max, _accussativeNetwork.MeanSquaredError);
};
_accussativeNetwork.Learn(set, Constants.Cycles);
}
private void TrainVocative(TrainingSet set)
{
double max = 0d;
_vocativeNetwork.EndEpochEvent += delegate (object network, TrainingEpochEventArgs args)
{
errorList[args.TrainingIteration] = _vocativeNetwork.MeanSquaredError;
max = Math.Max(max, _vocativeNetwork.MeanSquaredError);
};
_vocativeNetwork.Learn(set, Constants.Cycles);
}
private void TrainInstrumental(TrainingSet set)
{
double max = 0d;
_instrumentalNetwork.EndEpochEvent += delegate (object network, TrainingEpochEventArgs args)
{
errorList[args.TrainingIteration] = _instrumentalNetwork.MeanSquaredError;
max = Math.Max(max, _instrumentalNetwork.MeanSquaredError);
};
_instrumentalNetwork.Learn(set, Constants.Cycles);
}
#endregion [Training]
#region [Testing]
public ResponseModel TestMultiple(string[] names)
{
ResponseModel model = new ResponseModel();
model.Nouns = new List<NounModel>();
foreach (var n in names)
{
model.Nouns.Add(TestSingle(n));
}
return model;
}
public NounModel TestSingle(string name)
{
List<double> inputs = EncodingHelper.EncodeInput(name);
NounModel model = new NounModel()
{
Nominative = name,
Genitive = EncodingHelper.DecodeOutput(_genitiveNetwork.Run(inputs.ToArray())).Trim('\0'),
Dative = EncodingHelper.DecodeOutput(_dativeOrLocativeNetwork.Run(inputs.ToArray())).Trim('\0'),
Accussative = EncodingHelper.DecodeOutput(_accussativeNetwork.Run(inputs.ToArray())).Trim('\0'),
Vocative = EncodingHelper.DecodeOutput(_vocativeNetwork.Run(inputs.ToArray())).Trim().Trim('\0'),
Instrumental = EncodingHelper.DecodeOutput(_instrumentalNetwork.Run(inputs.ToArray())).Trim('\0'),
Locative = EncodingHelper.DecodeOutput(_dativeOrLocativeNetwork.Run(inputs.ToArray())).Trim('\0')
};
return model;
}
#endregion [Testing]
}
}