-
Notifications
You must be signed in to change notification settings - Fork 0
/
nntk.pas
1279 lines (1120 loc) · 58.8 KB
/
nntk.pas
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
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/// Модуль для создания и обучений ИНС
unit nntk;
uses neo;
var
global_alpha: real;
global_dropout_probability: real;
global_initializing_weights_range: System.Tuple<real, real>;
type
functions_type = function(const input: neo.neo_array): neo.neo_array;
// ********** Раздел функций активации и их производных **********
functions = class
private
static elu_alpha: real;
static elu_derivative_alpha: real;
static isru_alpha: real;
static isru_derivative_alpha: real;
static isrlu_alpha: real;
static isrlu_derivative_alpha: real;
static plu_alpha: real;
static plu_c: real;
static plu_derivative_alpha: real;
static plu_derivative_c: real;
static prelu_alpha: real;
static prelu_derivative_alpha: real;
static softexponential_alpha: real;
static softexponential_derivative_alpha: real;
static srelu_al: real;
static srelu_ar: real;
static srelu_tl: real;
static srelu_tr: real;
static srelu_derivative_al: real;
static srelu_derivative_ar: real;
static srelu_derivative_tl: real;
static srelu_derivative_tr: real;
/// Возвращает вектор, к каждому члену которого применена функции активации Арктангенс
static function __arctan(const input: real): real;
begin
result := System.Math.Atan(input);
end;
/// Возвращает вектор, к каждому члену которого применена производная функции активации Арктангенс
static function __arctan_derivative(const input: real): real;
begin
result := 1/(input**2 + 1);
end;
/// Возвращает вектор, к каждому члену которого применена функция активации Ареасинус
static function __arsinh(const input: real): real;
begin
result := ln(input + sqrt(input**2 + 1));
end;
/// Возвращает вектор, к каждому члену которого применена производная функции активации Ареасинус
static function __arsinh_derivative(const input: real): real;
begin
result := 1/sqrt(input**2 + 1);
end;
/// Возвращает вектор, к каждому члену которого применена Выгнутая тождественная функция активации
static function __bent_identity(const input: real): real;
begin
result := (sqr(input**2+1)-1)/2 + input;
end;
/// Возвращает вектор, к каждому члену которого применена производная Выгнутой тождественной функции активации
static function __bent_identity_derivative(const input: real): real;
begin
result := input/(2*sqr(input**2+1))+1;
end;
/// Возвращает вектор, к каждому члену которого применена функция активации Хевисайда
static function __binary_step(const input: real): real;
begin
if input < 0 then
result := 0
else
result := 1;
end;
/// Возвращает вектор, к каждому члену которого применена производная функции активации Хевисайда
static function __binary_step_derivative(const input: real): real;
begin
if input <> 0 then
result := 0
else
result := System.Double.NaN;
end;
static function __elu(const input: real): real;
begin
if input > 0 then
result := input
else
result := elu_alpha*(exp(input)-1)
end;
static function __elu_derivative(const input: real): real;
begin
if input > 0 then
result := 1
else
result := elu_derivative_alpha*(exp(input)-1)+elu_derivative_alpha;
end;
/// Возвращает вектор, к каждому члену которого применена Гауссова функция активации
static function __gaussian(const input: real): real;
begin
result := exp(-(input**2));
end;
/// Возвращает вектор, к каждому члену которого применена производная Гауссовой функции активации
static function __gaussian_derivative(const input: real): real;
begin
result := -2*input*exp(-(input**2));
end;
/// Возвращает вектор, к каждому члену которого применена Тождественная функция активации
static function __identity(const input: real): real;
begin
result := input
end;
/// Возвращает вектор, к каждому члену которого применена производная Тождественной функции активации
static function __identity_derivative(const input: real): real;
begin
result := 1
end;
static function __isru(const input: real): real;
begin
result := input/sqrt(1 + isru_alpha*input**2);
end;
static function __isru_derivative(const input: real): real;
begin
result := (1/sqrt(1 + isru_derivative_alpha*input**2))**3;
end;
static function __isrlu(const input: real): real;
begin
if input < 0 then
result := input/sqrt(1 + isrlu_alpha*input**2)
else
result := input
end;
static function __isrlu_derivative(const input: real): real;
begin
if input < 0 then
result := (1/sqrt(1 + isrlu_derivative_alpha*input**2))**3
else
result := 1;
end;
static function __plu(const input: real): real;
begin
result := max(plu_alpha*(input+plu_c)-plu_c, min(plu_alpha*(input-plu_c)+plu_c, input));
end;
static function __plu_derivative(const input: real): real;
begin
if abs(input) > plu_derivative_c then
result := plu_derivative_alpha
else
result := 1;
end;
static function __prelu(const input: real): real;
begin
if input < 0 then
result := prelu_alpha*input
else
result := input
end;
static function __prelu_derivative(const input: real): real;
begin
if input < 0 then
result := prelu_derivative_alpha
else
result := 1;
end;
/// Возвращает вектор, к каждому члену которого применена функция активации Линейный выпрямитель
static function __relu(const input: real): real;
begin
if input > 0 then
result := input
else
result := 0;
end;
/// Возвращает вектор, к каждому члену которого применена производная функции активации Линейный выпрямитель
static function __relu_derivative(const input: real): real;
begin
if input > 0 then
result := 1
else
result := 0;
end;
/// Возвращает вектор, к каждому члену которого применена функция активации Сигмоида
static function __sigmoid(const input: real): real;
begin
result := 1/(1+exp(-input))
end;
/// Возвращает вектор, к каждому члену которого применена производная функции активации Сигмоида
static function __sigmoid_derivative(const input: real): real;
begin
result := 1/(1+exp(-input))*(1-1/(1+exp(-input)));
end;
/// Возвращает вектор, к каждому члену которого применена функция активации Кардинальный синус
static function __sinc(const input: real): real;
begin
if input = 0 then
result := 1
else
result := sin(input)/input;
end;
/// Возвращает вектор, к каждому члену которого применена производная функции активации Кардинальный синус
static function __sinc_derivative(const input: real): real;
begin
if input = 0 then
result := 0
else
result := cos(input)/input - sin(input)/input**2;
end;
/// Возвращает вектор, к каждому члену которого применена функция активации Синусода
static function __sinusoid(const input: real): real;
begin
result := sin(input);
end;
/// Возвращает вектор, к каждому члену которого применена производная функции активации Синусода
static function __sinusoid_derivative(const input: real): real;
begin
result := cos(input);
end;
/// Возвращает вектор, к каждому члену которого применена функция активации Softplus
static function __softexponential(const input: real): real;
begin
if softexponential_alpha < 0 then
result := -ln(1-softexponential_alpha*(input+softexponential_alpha))/softexponential_alpha
else if softexponential_alpha > 0 then
result := (exp(softexponential_alpha*input)-1)/softexponential_alpha+softexponential_alpha
else
result := input
end;
/// Возвращает вектор, к каждому члену которого применена производная функции активации Softplus
static function __softexponential_derivative(const input: real): real;
begin
if softexponential_derivative_alpha < 0 then
result := 1/(1 - softexponential_derivative_alpha*(softexponential_derivative_alpha+input))
else
result := exp(softexponential_derivative_alpha*input);
end;
/// Возвращает вектор, к каждому члену которого применена функция активации Softplus
static function __softplus(const input: real): real;
begin
result := ln(1+exp(input));
end;
/// Возвращает вектор, к каждому члену которого применена производная функции активации Softplus
static function __softplus_derivative(const input: real): real;
begin
result := 1/(1+exp(-input));
end;
/// Возвращает вектор, к каждому члену которого применена функция активации Softsign
static function __softsign(const input: real): real;
begin
result := input/(1+abs(input));
end;
/// Возвращает вектор, к каждому члену которого применена производная функции активации Softsign
static function __softsign_derivative(const input: real): real;
begin
result := 1/(1+abs(input))**2;
end;
/// Возвращает вектор, к каждому члену которого применена Квадратная радиальная базисная функция активации
static function __sqrbf(const input: real): real;
begin
if abs(input) < 1 then
result := 1 - input**2/2
else if abs(input) > 2 then
result := 0
else
result := (2-abs(input))**2/2;
end;
/// Возвращает вектор, к каждому члену которого применена производная Квадратной радиальной базисной функции активации
static function __sqrbf_derivative(const input: real): real;
begin
if abs(input) < 1 then
result := -input
else if abs(input) > 2 then
result := 0
else
result := input - 2*sign(input);
end;
/// Возвращает вектор, к каждому члену которого применена функция активации Линейный выпрямитель
static function __srelu(const input: real): real;
begin
if input <= srelu_tl then
result := srelu_tl + srelu_al*(input - srelu_tl)
else if input >= srelu_tr then
result := srelu_tr + srelu_ar*(input - srelu_tr)
else
result := input;
end;
/// Возвращает вектор, к каждому члену которого применена производная функции активации Линейный выпрямитель
static function __srelu_derivative(const input: real): real;
begin
if input <= srelu_derivative_tl then
result := srelu_derivative_al
else if input >= srelu_derivative_tr then
result := srelu_derivative_ar
else
result := 1
end;
/// Возвращает вектор, к каждому члену которого применена функции активации Гиперболический тангенс
static function __tanh(const input: real): real;
begin
result := System.Math.Tanh(input);
end;
/// Возвращает вектор, к каждому члену которого применена производная функции активации Гиперболический тангенс
static function __tanh_derivative(const input: real): real;
begin
result := 1-System.Math.Tanh(input)**2;
end;
public
/// Возвращает вектор, к каждому члену которого применена функции активации Арктангенс
static function arctan(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__arctan, input);
end;
/// Возвращает вектор, к каждому члену которого применена производная функции активации Арктангенс
static function arctan_derivative(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__arctan_derivative, input);
end;
/// Возвращает вектор, к каждому члену которого применена функция активации Ареасинус
static function arsinh(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__arsinh, input);
end;
/// Возвращает вектор, к каждому члену которого применена производная функции активации Ареасинус
static function arsinh_derivative(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__arsinh_derivative, input);
end;
/// Возвращает вектор, к каждому члену которого применена Выгнутая тождественная функция активации
static function bent_identity(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__bent_identity, input);
end;
/// Возвращает вектор, к каждому члену которого применена производная Выгнутой тождественной функции активации
static function bent_identity_derivative(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__bent_identity_derivative, input);
end;
/// Возвращает вектор, к каждому члену которого применена функция активации Хевисайда
static function binary_step(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__binary_step, input);
end;
/// Возвращает вектор, к каждому члену которого применена производная функции активации Хевисайда
static function binary_step_derivative(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__binary_step_derivative, input);
end;
// /// Возвращает вектор, к каждому члену которого применена функция активации Биполярный линейный выпрямитель
// static function brelu(const input: neo.neo_array): neo.neo_array;
// begin
// result := new neo.neo_array(input.shape()[0], input.shape()[1]);
// result.set_size(input.size);
// {$omp parallel for}
// for var index := 0 to input.shape()[0] do
// if index mod 2 = 0 then
// result[index] := __relu(input[index])
// else
// result[index] := -__relu(input[index]);
// end;
// /// Возвращает вектор, к каждому члену которого применена производная функции активации Биполярный линейный выпрямитель
// static function brelu_derivative(const input: neo.neo_array): neo.neo_array;
// begin
// result := new neo.neo_array;
// result.set_size(input.size);
// {$omp parallel for}
// for var index := 0 to input.size-1 do
// if index mod 2 = 0 then
// result[index] := __relu_derivative(input[index])
// else
// result[index] := __relu_derivative(-input[index]);
// end;
/// Возвращает вектор, к каждому члену которого применена Тождественная функция активации
static function elu(const alpha: real): function(const input: neo.neo_array):neo.neo_array;
begin
functions.elu_alpha := alpha;
result := _elu;
end;
/// Возвращает вектор, к каждому члену которого применена Гауссова функция активации
static function _elu(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__elu, input);
end;
/// Возвращает вектор, к каждому члену которого применена Тождественная функция активации
static function elu_derivative(const alpha: real): function(const input: neo.neo_array):neo.neo_array;
begin
functions.elu_derivative_alpha := alpha;
result := _elu_derivative;
end;
/// Возвращает вектор, к каждому члену которого применена Гауссова функция активации
static function _elu_derivative(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__elu_derivative, input);
end;
static function gaussian(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__gaussian, input);
end;
/// Возвращает вектор, к каждому члену которого применена производная Гауссовой функции активации
static function gaussian_derivative(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__gaussian_derivative, input);
end;
/// Возвращает вектор, к каждому члену которого применена Тождественная функция активации
static function identity(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__identity, input);
end;
/// Возвращает вектор, к каждому члену которого применена производная Тождественной функции активации
static function identity_derivative(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__identity_derivative, input);
end;
/// Возвращает вектор, к каждому члену которого применена Тождественная функция активации
static function isru(const alpha: real): function(const input: neo.neo_array):neo.neo_array;
begin
functions.isru_alpha := alpha;
result := _isru;
end;
/// Возвращает вектор, к каждому члену которого применена Гауссова функция активации
static function _isru(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__isru, input);
end;
/// Возвращает вектор, к каждому члену которого применена Тождественная функция активации
static function isru_derivative(const alpha: real): function(const input: neo.neo_array):neo.neo_array;
begin
functions.isru_derivative_alpha := alpha;
result := _isru_derivative;
end;
/// Возвращает вектор, к каждому члену которого применена Гауссова функция активации
static function _isru_derivative(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__isru_derivative, input);
end;
/// Возвращает вектор, к каждому члену которого применена Тождественная функция активации
static function isrlu(const alpha: real): function(const input: neo.neo_array):neo.neo_array;
begin
functions.isrlu_alpha := alpha;
result := _isrlu;
end;
/// Возвращает вектор, к каждому члену которого применена Гауссова функция активации
static function _isrlu(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__isrlu, input);
end;
/// Возвращает вектор, к каждому члену которого применена Тождественная функция активации
static function isrlu_derivative(const alpha: real): function(const input: neo.neo_array):neo.neo_array;
begin
functions.isrlu_derivative_alpha := alpha;
result := _isrlu_derivative;
end;
/// Возвращает вектор, к каждому члену которого применена Гауссова функция активации
static function _isrlu_derivative(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__isrlu_derivative, input);
end;
/// Возвращает вектор, к каждому члену которого применена Тождественная функция активации
static function plu(const alpha, c: real): function(const input: neo.neo_array):neo.neo_array;
begin
functions.plu_alpha := alpha;
functions.plu_c := c;
result := _plu;
end;
/// Возвращает вектор, к каждому члену которого применена Гауссова функция активации
static function _plu(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__plu, input);
end;
/// Возвращает вектор, к каждому члену которого применена Тождественная функция активации
static function plu_derivative(const alpha, c: real): function(const input: neo.neo_array):neo.neo_array;
begin
functions.plu_derivative_alpha := alpha;
functions.plu_derivative_c := c;
result := _plu_derivative;
end;
/// Возвращает вектор, к каждому члену которого применена Гауссова функция активации
static function _plu_derivative(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__plu_derivative, input);
end;
/// Возвращает вектор, к каждому члену которого применена Тождественная функция активации
static function prelu(const alpha: real): function(const input: neo.neo_array):neo.neo_array;
begin
functions.prelu_alpha := alpha;
result := _prelu;
end;
/// Возвращает вектор, к каждому члену которого применена Гауссова функция активации
static function _prelu(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__prelu, input);
end;
/// Возвращает вектор, к каждому члену которого применена Тождественная функция активации
static function prelu_derivative(const alpha: real): function(const input: neo.neo_array):neo.neo_array;
begin
functions.prelu_derivative_alpha := alpha;
result := _prelu_derivative;
end;
/// Возвращает вектор, к каждому члену которого применена Гауссова функция активации
static function _prelu_derivative(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__prelu_derivative, input);
end;
/// Возвращает вектор, к каждому члену которого применена функция активации Линейный выпрямитель
static function relu(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__relu, input);
end;
/// Возвращает вектор, к каждому члену которого применена производная функции активации Линейный выпрямитель
static function relu_derivative(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__relu_derivative, input);
end;
/// Возвращает вектор, к каждому члену которого применена функция активации Сигмоида
static function sigmoid(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__sigmoid, input);
end;
/// Возвращает вектор, к каждому члену которого применена производная функции активации Сигмоида
static function sigmoid_derivative(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__sigmoid_derivative, input);
end;
/// Возвращает вектор, к каждому члену которого применена функция активации Кардинальный синус
static function sinc(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__sinc, input);
end;
/// Возвращает вектор, к каждому члену которого применена производная функции активации Кардинальный синус
static function sinc_derivative(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__sinc_derivative, input);
end;
/// Возвращает вектор, к каждому члену которого применена функция активации Синусода
static function sinusoid(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__sinusoid, input);
end;
/// Возвращает вектор, к каждому члену которого применена производная функции активации Синусода
static function sinusoid_derivative(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__sinusoid_derivative, input);
end;
/// Возвращает вектор, к каждому члену которого применена Тождественная функция активации
static function softexponential(const alpha: real): function(const input: neo.neo_array):neo.neo_array;
begin
functions.softexponential_alpha := alpha;
result := _softexponential;
end;
/// Возвращает вектор, к каждому члену которого применена Гауссова функция активации
static function _softexponential(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__softexponential, input);
end;
/// Возвращает вектор, к каждому члену которого применена Тождественная функция активации
static function softexponential_derivative(const alpha: real): function(const input: neo.neo_array):neo.neo_array;
begin
functions.softexponential_derivative_alpha := alpha;
result := _softexponential_derivative;
end;
/// Возвращает вектор, к каждому члену которого применена Гауссова функция активации
static function _softexponential_derivative(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__softexponential_derivative, input);
end;
// /// Возвращает вектор, к каждому члену которого применена функция активации Softmax
// static function softmax(const input: neo.neo_array): neo.neo_array;
// begin
// result := new neo.neo_array(input.shapes());
// result.set_size(input.size);
// {$omp parallel for}
// for var index := 0 to input.size-1 do
// result[index] := exp(input[index]);
// var sum := result.sum();
// result /= sum;
// end;
//
// /// Возвращает вектор, к каждому члену которого применена производная функции активации Softmax
// static function softmax_derivative(const input: neo.neo_array): neo.neo_array;
// begin
// result := softmax(input);
// {$omp parallel for}
// for var index := 0 to input.size-1 do
// result[index] := result[index]*(1-result[index]);
// end;
/// Возвращает вектор, к каждому члену которого применена функция активации Softplus
static function softplus(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__softplus, input);
end;
/// Возвращает вектор, к каждому члену которого применена производная функции активации Softplus
static function softplus_derivative(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__softplus_derivative, input);
end;
/// Возвращает вектор, к каждому члену которого применена функция активации Softsign
static function softsign(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__softsign, input);
end;
/// Возвращает вектор, к каждому члену которого применена производная функции активации Softsign
static function softsign_derivative(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__softsign_derivative, input);
end;
/// Возвращает вектор, к каждому члену которого применена Квадратная радиальная базисная функция активации
static function sqrbf(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__sqrbf, input);
end;
/// Возвращает вектор, к каждому члену которого применена производная Квадратной радиальной базисной функции активации
static function sqrbf_derivative(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__sqrbf_derivative, input);
end;
/// Возвращает вектор, к каждому члену которого применена Тождественная функция активации
static function srelu(const al, ar, tl, tr: real): function(const input: neo.neo_array):neo.neo_array;
begin
functions.srelu_al := al;
functions.srelu_ar := ar;
functions.srelu_tl := tl;
functions.srelu_tr := tr;
result := _srelu;
end;
/// Возвращает вектор, к каждому члену которого применена Гауссова функция активации
static function _srelu(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__srelu, input);
end;
/// Возвращает вектор, к каждому члену которого применена Тождественная функция активации
static function srelu_derivative(const al, ar, tl, tr: real): function(const input: neo.neo_array):neo.neo_array;
begin
functions.srelu_derivative_al := al;
functions.srelu_derivative_ar := ar;
functions.srelu_derivative_tl := tl;
functions.srelu_derivative_tr := tr;
result := _srelu_derivative;
end;
/// Возвращает вектор, к каждому члену которого применена Гауссова функция активации
static function _srelu_derivative(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__srelu_derivative, input);
end;
/// Возвращает вектор, к каждому члену которого применена функции активации Гиперболический тангенс
static function tanh(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__tanh, input);
end;
/// Возвращает вектор, к каждому члену которого применена производная функции активации Гиперболический тангенс
static function tanh_derivative(const input: neo.neo_array): neo.neo_array;
begin
result := neo.map(__tanh_derivative, input);
end;
end;
loss_functions_type = function(const true_answer, received_answer: neo.neo_array): real;
loss_functions = class
public
static function tmp_sqr(x: real): real;
begin
result := x**2;
end;
static function mse(const true_answer, received_answer: neo.neo_array): real;
begin
result := neo.map(tmp_sqr, (true_answer-received_answer)).sum()/received_answer.shape()[0];
end;
static function root_mse(const true_answer, received_answer: neo.neo_array): real;
begin
result := System.Math.Sqrt(neo.map(tmp_sqr, (true_answer-received_answer)).sum()/received_answer.shape()[0]);
end;
end;
Neuron = class
private
weights: neo.neo_array;
input: neo.neo_array;
/// Иницилизирует number_of_weights случайных весов в диапазоне [0, 1)
function initialize_weights(const number_of_weights: uint64): neo.neo_array;
var
tmp_result: array of real;
begin
tmp_result := new real[number_of_weights];
{$omp parallel for}
for var index := 0 to number_of_weights-1 do
tmp_result[index] := random(global_initializing_weights_range[0],
global_initializing_weights_range[1]);
result := new neo.neo_array(tmp_result);
end;
public
/// Инициализирует новый экземпляр класса Neuron с number_of_inputs входов
constructor Create(const number_of_inputs: uint64);
begin
self.weights := initialize_weights(number_of_inputs);
end;
/// Возвращает ненормализированный выход нейрона
function calculate(input: neo.neo_array): real;
begin
self.input := input;
var tmp := neo.multiply(self.weights, input);
result := real.Parse(neo.sum(tmp).ToString);
end;
/// Возвращает вектор ошибок для предшестующих нейронов
function backprop(const input: real): neo.neo_array;
begin
result := self.weights * input;
end;
/// Изменяет веса с учетом ошибки delta
procedure adjust_weights(const delta: real);
begin
self.weights := self.weights + self.input * delta * global_alpha;
end;
function ToString: string; override;
begin
result := 'Нейрон (Веса): ' + self.weights.ToString;
end;
end;
Layer = class
private
layer: array of Neuron;
public
/// Инициализирует новый экземпляр класса Layer с number_of_neurons нейронов и number_of_weights входов для каждого
constructor Create(const number_of_neurons, number_of_weights: uint64);
begin
if number_of_neurons < 1 then
raise new System.ArgumentException('Размеры любого слоя ИНС должны быть больше 0');
self.layer := new Neuron[number_of_neurons];
{$omp parallel for}
for var index := 0 to number_of_neurons-1 do
self.layer[index] := new Neuron(number_of_weights);
end;
/// Возвращает ненормализированный вектор выходных значений слоя
function calculate(const input: neo.neo_array): neo.neo_array;
begin
result := new neo.neo_array(1, self.layer.Length);
{$omp parallel for}
for var index := 0 to self.layer.length-1 do
result[0, index] := self.layer[index].calculate(input);
end;
/// Возвращает вектор ошибок для предшестующих слоев
function backprop(const input: neo.neo_array): neo.neo_array;
begin
result := self.layer[0].backprop(input[0, 0]);
{$omp parallel for reduction(+:result)}
for var index := 1 to self.layer.Length-1 do
result := result + self.layer[index].backprop(input[0, index]);
end;
/// Изменяет веса нейронов слоя с учетом ошибки delta
procedure adjust_weights(const delta: neo.neo_array);
begin
{$omp parallel for}
for var index := 0 to self.layer.Length-1 do
self.layer[index].adjust_weights(delta[0, index]);
end;
function ToString: string; override;
begin
result := 'Слой: ';
for var index := 0 to layer.Length-2 do
result += layer[index].ToString + ' | ';
result += layer[layer.Length-1].ToString;
end;
end;
Neural_Network = class
private
seed: integer;
neural_network: array of Layer;
topology: neo.neo_array;
number_of_layers: uint64;
activation_functions: array of function(const input: neo.neo_array): neo.neo_array;
activation_functions_derivatives: array of nntk.functions_type;
loss_function: loss_functions_type;
batch_size: uint64;
/// Обучает нейронную сеть на входных данных input_data и выходных данных output_data number_of_epoch эпох
procedure __train(const train_input_data: List<neo.neo_array>;
const train_output_data: List<neo.neo_array>;
const test_input_data: List<neo.neo_array>;
const test_output_data: List<neo.neo_array>;
const number_of_epoch: uint64);
var
deltas: array of neo.neo_array;
layers: array of neo.neo_array;
mask: array of neo.neo_array;
error: real;
test_error: real;
begin
deltas := new neo.neo_array[self.number_of_layers-1];
{$omp parallel for}
for var index := 0 to self.number_of_layers-2 do
begin
deltas[index] := new neo.neo_array(1, trunc(topology[0, self.number_of_layers-index-1]));
end;
layers := new neo.neo_array[self.number_of_layers];
mask := new neo.neo_array[self.number_of_layers-1];
for var epoch := 1 to number_of_epoch do
begin
error := 0.0;
for var index := 0 to train_input_data.count-1 do
begin
layers[0] := train_input_data[index];
for var i := 0 to self.number_of_layers-2 do
begin
layers[i+1] := self.activation_functions[i](self.neural_network[i].calculate(layers[i]));
end;
{$omp parallel for}
for var i := 1 to self.number_of_layers-2 do
begin
mask[i-1] := get_dropout_mask(layers[i].shape()[0]);
layers[i] := neo.multiply(layers[i], mask[i-1]) * (1/(1-global_dropout_probability));
end;
error += self.loss_function(train_output_data[index], layers.Last);
deltas[0] := deltas[0] + train_output_data[index]-layers.last();
for var i := 1 to self.number_of_layers-2 do
deltas[i] := deltas[i] + neo.multiply(neo.multiply(self.neural_network[self.number_of_layers-i-1].backprop(deltas[i-1]),
self.activation_functions_derivatives[self.number_of_layers-i-1](layers[self.number_of_layers-i-1])),
mask[self.number_of_layers-i-2]);
if ((epoch-1)*train_input_data.Count+index+1) mod self.batch_size = 0 then
{$omp parallel for}
for var i := 0 to self.number_of_layers-2 do
begin
self.neural_network[i].adjust_weights(deltas[self.number_of_layers-2-i]/self.batch_size);
deltas[self.number_of_layers-2-i] := new neo.neo_array(1, trunc(topology[0, i+1]));
end;
end;
if (epoch) mod 10 = 0 then
begin
for var index := 0 to test_input_data.count-1 do
begin
layers[0] := test_input_data[index];
for var i := 0 to self.number_of_layers-2 do
layers[i+1] := self.activation_functions[i](self.neural_network[i].calculate(layers[i]));
test_error += self.loss_function(test_output_data[index], layers.Last);
end;
println(format('I:{0} Train-Error:{1,17:f15} Test-Error:{2,17:f15}',
epoch, error/train_input_data.count, test_error/test_input_data.count));
test_error := 0.0;
end;
end;
end;
public
/// Инициализирует объект класса Neural_Network с заданной топологией
constructor Create(const neural_network_topology: neo.neo_array;
initializing_weights_range: System.Tuple<real, real> := (-1.0, 1.0);
activation_functions: array of nntk.functions_type := nil;
activation_functions_derivatives: array of nntk.functions_type := nil;
seed: integer := 0);
begin
Randomize(seed);
self.topology := neural_network_topology;
self.number_of_layers := neural_network_topology.shape()[1];
if self.number_of_layers < 2 then
raise new System.ArgumentException('Кол-во слоев ИНС должно быть больше 1');
global_initializing_weights_range := initializing_weights_range;
if activation_functions = nil then
begin
Setlength(self.activation_functions, self.number_of_layers-1);
for var index := 0 to self.number_of_layers-2 do
self.activation_functions[index] := nntk.Functions.sigmoid;
end
else if activation_functions.Length <> self.number_of_layers-1 then
raise new System.ArgumentException('Кол-во функций активации и кол-во слоев ИНС данных должны совпадать')
else
begin
Setlength(self.activation_functions, self.number_of_layers-1);
for var index := 0 to self.number_of_layers-2 do
self.activation_functions[index] := activation_functions[index];
end;
if activation_functions_derivatives = nil then
begin
Setlength(activation_functions_derivatives, self.number_of_layers-1);
for var index := 0 to self.number_of_layers-2 do
self.activation_functions_derivatives[index] := nntk.Functions.sigmoid_derivative;
end
else if activation_functions_derivatives.length <> self.number_of_layers-1 then