-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgrsp10.scm
851 lines (737 loc) · 13.4 KB
/
grsp10.scm
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
;; =========================================================================
;;
;; grsp10.scm
;;
;; Activation functions.
;;
;; =========================================================================
;;
;; Copyright (C) 2018 - 2024 Pablo Edronkin (pablo.edronkin at yahoo.com)
;;
;; This program is free software: you can redistribute it and/or modify
;; it under the terms of the GNU Lesser General Public License as
;; published by the Free Software Foundation, either version 3 of the
;; License, or (at your option) any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU Lesser General Public License for more details.
;;
;; You should have received a copy of the GNU Lesser General Public
;; License along with this program. If not, see
;; <https://www.gnu.org/licenses/>.
;;
;; =========================================================================
;;;; General notes:
;;
;; - Read sources for limitations on function parameters.
;;
(define-module (grsp grsp10)
#:use-module (grsp grsp0)
#:use-module (grsp grsp1)
#:use-module (grsp grsp2)
#:use-module (grsp grsp3)
#:use-module (grsp grsp4)
#:use-module (ice-9 threads)
#:export (grsp-identity
grsp-binary-step
grsp-sigmoid
grsp-tanh
grsp-tanh-mth
grsp-relu
grsp-softplus
grsp-elu
grsp-lrelu
grsp-selu
grsp-gelu
grsp-prelu
grsp-softsign
grsp-sqnl
grsp-bent-identity
grsp-silu
grsp-srelu
grsp-gaussian
grsp-sqrbf
grsp-ifrprnd-num
grsp-trcrnd))
;;;; grsp-identity - Identity function (type 0).
;;
;; Keywords:
;;
;; - functions, activation, ann
;;
;; Parameters:
;;
;; - p_1: list containing the following parameters.
;;
;; - 1: number.
;;
;; Output:
;;
;; - Numeric.
;;
;; Sources:
;;
;; - grsp8.[5].
;;
(define (grsp-identity p_l1)
(let ((res1 0.0))
(set! res1 (grsp-opz (list-ref p_l1 0)))
res1))
;;;; grsp-binary-step - Binary step function (type 1).
;;
;; Keywords:
;;
;; - functions, activation, ann
;;
;; Parameters:
;;
;; - p_1: list containing the following parameters.
;; - 1: number.
;;
;; Output:
;;
;; - Numeric.
;;
;; Sources:
;;
;; - grsp8.[5].
;;
(define (grsp-binary-step p_l1)
(let ((res1 0.0)
(n1 0.0))
;; Extract.
(set! n1 (grsp-opz (list-ref p_l1 0)))
;; Solve.
(cond ((>= n1 0)
(set! res1 1.0)))
res1))
;;;; grsp-sigmoid - Sigmoid function (type 2).
;;
;; Keywords:
;;
;; - functions, activation, ann
;;
;; Parameters:
;;
;; - p_1: list containing the following parameters.
;;
;; - 1: number.
;;
;; Output:
;;
;; - Numeric.
;;
;; Sources:
;;
;; - grsp8.[5]
;;
(define (grsp-sigmoid p_l1)
(let ((res1 0.0)
(n1 0.0))
;; Extract.
(set! n1 (grsp-opz (list-ref p_l1 0)))
;; Solve.
(set! res1 (/ 1.0 (+ 1.0 (grsp-eex (* -1.0 n1)))))
res1))
;;;; grsp-tanh - Tanh function (type 3).
;;
;; Keywords:
;;
;; - functions, activation, ann
;;
;; Parameters:
;;
;; - p_1: list containing the following parameters.
;;
;; - 1: number.
;;
;; Output:
;;
;; - Numeric.
;;
;; Sources:
;;
;; - grsp8.[5].
;;
(define (grsp-tanh p_l1)
(let ((res1 0.0)
(e1 0.0)
(e2 0.0)
(n1 0.0))
;; Extract.
(set! n1 (grsp-opz (list-ref p_l1 0)))
;; Solve.
(set! e1 (grsp-eex n1))
(set! e2 (grsp-eex (* -1.0 n1)))
(set! res1 (/ (- e1 e2) (+ e1 e2)))
res1))
;;;; grsp-tanh-mth - Multithreaded variant of grsp-tanh.
;;
;; Keywords:
;;
;; - functions, activation, ann
;;
;; Parameters:
;;
;; - p_1: list containing the following parameters.
;;
;; - 1: number.
;;
;; Output:
;;
;; - Numeric.
;;
;; Sources:
;;
;; - grsp8.[5].
;;
(define (grsp-tanh-mth p_l1)
(let ((res1 0.0)
(e1 0.0)
(e2 0.0)
(n1 0.0))
;; Extract.
(set! n1 (grsp-opz (list-ref p_l1 0)))
;; Solve.
(parallel (set! e1 (grsp-eex n1))
(set! e2 (grsp-eex (* -1.0 n1))))
(set! res1 (/ (- e1 e2) (+ e1 e2)))
res1))
;;;; grsp-relu - Rectified linear unit function (type 4).
;;
;; Keywords:
;;
;; - functions, activation, ann
;;
;; Parameters:
;;
;; - p_1: list containing the following parameters.
;; - 1: number.
;;
;; Output:
;;
;; - Numeric.
;;
;; Sources:
;;
;; - grsp8.[5].
;;
(define (grsp-relu p_l1)
(let ((res1 0.0)
(n1 0.0))
;; Extract.
(set! n1 (grsp-opz (list-ref p_l1 0)))
;; Solve.
(cond ((> n1 0.0)
(set! res1 n1)))
res1))
;;;; grsp-softplus - Softplus function (type 5).
;;
;; Keywords:
;;
;; - functions, activation, ann
;;
;; Parameters:
;;
;; - p_1: list containing the following parameters.
;; - 1: number.
;;
;; Output:
;;
;; - Numeric.
;;
;; Sources:
;;
;; - grsp8.[5].
;;
(define (grsp-softplus p_l1)
(let ((res1 0.0)
(n1 0.0))
;; Extract.
(set! n1 (grsp-opz (list-ref p_l1 0)))
;; Solve.
(set! res1 (grsp-log 2 (+ 1.0 (grsp-eex n1))))
res1))
;;;; grsp-elu - Exponential linear unit function (type 6).
;;
;; Keywords:
;;
;; - functions, activation, ann
;;
;; Parameters:
;;
;; - p_1: list containing the following parameters.
;;
;; - 1: number.
;; - 2: alpha.
;;
;; Output:
;;
;; - Numeric.
;;
;; Sources:
;;
;; - grsp8.[5].
;;
(define (grsp-elu p_l1)
(let ((res1 0.0)
(n1 0.0)
(n2 0.0))
;; Extract.
(set! n1 (grsp-opz (list-ref p_l1 0)))
(set! n2 (grsp-opz (list-ref p_l1 1)))
;; Solve.
(cond ((> n1 0.0)
(set! res1 n1))
((<= n1 0.0)
(set! res1 (* n2 (- (grsp-eex n1) 1.0)))))
res1))
;;;; grsp-lrelu - Leaky rectified linear unit function (type 7).
;;
;; Keywords:
;;
;; - functions, activation, ann
;;
;; Parameters:
;;
;; - p_1: list containing the following parameters.
;;
;; - 1: number.
;;
;; Output:
;;
;; - Numeric.
;;
;; Sources:
;;
;; - grsp8.[5].
;;
(define (grsp-lrelu p_l1)
(let ((res1 0.0)
(n1 0.0))
;; Extract.
(set! n1 (grsp-opz (list-ref p_l1 0)))
;; Solve.
(cond ((< n1 0.0)
(set! res1 0.01))
((>= n1 0.0)
(set! res1 n1)))
res1))
;;;; grsp-selu - Scaled exponential linear unit function (type 8).
;;
;; Keywords:
;;
;; - functions, activation, ann
;;
;; Parameters:
;;
;; - p_1: list containing the following parameters.
;;
;; - 1: number.
;; - 2: alpha.
;; - 3: lambda.
;;
;; Output:
;;
;; - Numeric.
;;
;; Sources:
;;
;; - grsp8.[5], grsp8.[6].
;;
(define (grsp-selu p_l1)
(let ((res1 0.0)
(n1 0.0)
(n2 0.0)
(n3 0.0))
;; Extract.
(set! n1 (grsp-opz (list-ref p_l1 0)))
(set! n2 (grsp-opz (list-ref p_l1 1)))
(set! n3 (grsp-opz (list-ref p_l1 2)))
;; Solve.
(cond ((< n1 0.0)
(set! res1 (* n2 n3 (- (grsp-eex n1) 1.0))))
((>= n1 0.0)
(set! res1 (* n3 n1))))
res1))
;;;; grsp-gelu - Gaussian error linear unit function (type 9).
;;
;; Keywords:
;;
;; - functions, activation, ann
;;
;; Parameters:
;;
;; - p_1: list containing the following parameters.
;; - 1: number.
;; - 2: alpha.
;;
;; Output:
;;
;; - Numeric.
;;
;; Sources:
;;
;; - grsp8.[5], grsp8.[6].
;;
(define (grsp-gelu p_l1)
(let ((res1 0.0)
(n1 0.0)
(n2 0.0)
(n3 0.0))
;; Extract.
(set! n1 (grsp-opz (list-ref p_l1 0)))
(set! n2 (grsp-opz (list-ref p_l1 1)))
;; Solve.
(set! n3 (* (sqrt (/ 2.0 (grsp-pi))) (+ n1 (* n2 (expt n1 3)))))
(set! res1 (* (/ n1 2.0) (+ 1.0 (tanh n3))))
res1))
;;;; grsp-prelu - Parametric rectified linear unit function (type 10).
;;
;; Keywords:
;;
;; - functions, activation, ann
;;
;; Parameters:
;;
;; - p_1: list containing the following parameters.
;;
;; - 1: number.
;; - 2: alpha.
;;
;; Output:
;;
;; - Numeric.
;;
;; Sources:
;;
;; - grsp8.[5].
;;
(define (grsp-prelu p_l1)
(let ((res1 0.0)
(n1 0.0)
(n2 0.0))
;; Extract.
(set! n1 (grsp-opz (list-ref p_l1 0)))
(set! n2 (grsp-opz (list-ref p_l1 1)))
;; Solve.
(cond ((< n1 0.0)
(set! res1 (* n1 n2)))
((>= n1 0.0)
(set! res1 n1)))
res1))
;;;; grsp-softsign - Softsign function (type 11).
;;
;; Keywords:
;;
;; - functions, activation, ann
;;
;; Parameters:
;;
;; - p_1: list containing the following parameters.
;;
;; - 1: number.
;;
;; Output:
;;
;; - Numeric.
;;
;; Sources:
;;
;; - grsp8.[5].
;;
(define (grsp-softsign p_l1)
(let ((res1 0.0)
(n1 0.0))
;; Extract.
(set! n1 (grsp-opz (list-ref p_l1 0)))
;; Solve.
(set! res1 (/ n1 (+ (abs n1))))
res1))
;;;; grsp-sqnl - Square nonlinearity unit function (type 12).
;;
;; Keywords:
;;
;; - functions, activation, ann
;;
;; Parameters:
;; - p_1: list containing the following parameters.
;;
;; - 1: number.
;;
;; Output:
;;
;; - Numeric.
;;
;; Sources:
;;
;; - grsp8.[5].
;;
(define (grsp-sqnl p_l1)
(let ((res1 0.0)
(n1 0.0)
(n2 0.0))
;; Extract.
(set! n1 (grsp-opz (list-ref p_l1 0)))
;; Solve.
(set! n2 (expt n1 2))
(cond ((< n1 0.0)
(cond ((< n1 -2.0)
(set! res1 -1.0))
((>= n1 -2.0)
(set! res1 (+ n1 (/ n2 4.0))))))
((>= n1 0.0)
(cond ((<= n1 2.0)
(set! res1 (- n1 (/ n2 4.0))))
((> n1 2.0)
(set! res1 1.0)))))
res1))
;;;; grsp-bent-identity - Bent identity activation function (type 13).
;;
;; Keywords:
;;
;; - functions, activation, ann
;;
;; Parameters:
;;
;; - p_1: list containing the following parameters.
;;
;; - 1: number.
;;
;; Output:
;;
;; - Numeric.
;;
;; Sources:
;;
;; - grsp8.[5].
;;
(define (grsp-bent-identity p_l1)
(let ((res1 0.0)
(n1 0.0))
;; Extract.
(set! n1 (grsp-opz (list-ref p_l1 0)))
;; Solve.
(set! res1 (* (/ (- (sqrt (+ (expt n1 2))) 1.0) 2.0) n1))
res1))
;;;; grsp-silu - Sigmoid linear function (type 14).
;;
;; Keywords:
;;
;; - functions, activation, ann
;;
;; Parameters:
;;
;; - p_1: list containing the following parameters.
;;
;; - 1: number.
;;
;; Output:
;;
;; - Numeric.
;;
;; Sources:
;;
;; - grsp8.[5].
;;
(define (grsp-silu p_l1)
(let ((res1 0.0)
(n1 0.0))
;; Extract.
(set! n1 (grsp-opz (list-ref p_l1 0)))
;; Solve.
(set! res1 (/ n1 (+ 1.0 (grsp-eex (* -1 n1)))))
res1))
;;;; grsp-srelu - S-shaped rectified linear function (type 15).
;;
;; Keywords:
;;
;; - functions, activation, ann
;;
;; Parameters:
;;
;; - p_1: list containing the following parameters.
;;
;; - 1: number.
;; - 2: tl.
;; - 3: al.
;; - 4: tr.
;; - 5: ar.
;;
;; Output:
;;
;; - Numeric.
;;
;; Sources:
;;
;; - grsp8.[5].
;;
(define (grsp-srelu p_l1)
(let ((res1 0.0)
(n1 0.0)
(tl 0.0)
(al 0.0)
(tr 0.0)
(ar 0.0))
;; Extract.
(set! n1 (grsp-opz (list-ref p_l1 0)))
(set! tl (grsp-opz (list-ref p_l1 1)))
(set! al (grsp-opz (list-ref p_l1 2)))
(set! tr (grsp-opz (list-ref p_l1 3)))
(set! ar (grsp-opz (list-ref p_l1 3)))
;; Solve.
(cond ((<= n1 tl)
(set! res1 (+ tl (* al (- n1 tl)))))
((>= n1 tr)
(set! res1 (+ tr (* ar (- n1 tr))))))
res1))
;;;; grsp-gaussian - Gaussian activation function (type 16).
;;
;; Keywords:
;;
;; - functions, activation, ann.
;;
;; Parameters:
;;
;; - p_1: list containing the following parameters.
;;
;; - 1: number.
;;
;; Output:
;;
;; - Numeric.
;;
;; Sources:
;;
;; - grsp8.[5].
;;
(define (grsp-gaussian p_l1)
(let ((res1 0.0)
(n1 0.0))
;; Extract.
(set! n1 (grsp-opz (list-ref p_l1 0)))
;; Solve.
(set! res1 (expt (grsp-eex (* -1 n1)) 2))
res1))
;;;; grsp-sqrbf - Sqrbf activation function (type 17).
;;
;; Keywords:
;;
;; - functions, activation, ann
;;
;; Parameters:
;;
;; - p_11: list containing the following parameters.
;;
;; - 1: number.
;;
;; Output:
;;
;; - Numeric.
;;
;; Sources:
;;
;; - grsp8.[5].
;;
(define (grsp-sqrbf p_l1)
(let ((res1 0.0)
(n1 0.0)
(n2 0.0))
;; Extract.
(set! n1 (grsp-opz (list-ref p_l1 0)))
;; Solve.
(set! n2 (abs n1))
(cond ((<= n2 1.0)
(set! res1 (- 1 (/ (expt n1 2) 2))))
((>= n2 2.0)
(set! res1 0.0))
((> n2 1.0)
(cond ((< n2 2.0)
(set! res1 (* 0.5 (expt (- 2 n2) 2)))))))
res1))
;;;; grsp-ifrprnd-num - If a pseudo random number generated with the
;; arguments of the function is less than p_n1, the function returns 1, or
;; 0 otherwise; (type 18).
;;
;; Keywords:
;;
;; - functions, activation, ann
;;
;; Parameters:
;;
;; - p_11: list containing the following parameters.
;;
;; - 1: type of distribution.
;;
;; - "#normal": normal.
;; - "#exp": exponential.
;; - "#uniform": uniform.
;;
;; - 2: mean.
;; - 3: standard deviation.
;; - 4: number.
;;
;; Notes:
;;
;; - See grsp0.grsp-random-state-set.
;;
;; Output:
;;
;; - Numeric.
;;
(define (grsp-ifrprnd-num p_l1)
(let ((res1 0)
(l1 '())
(s1 "")
(u1 0)
(v1 0)
(n1 0))
;; Extract list elements.
(set! l1 p_l1)
(set! s1 (list-ref l1 0))
(set! u1 (list-ref l1 1))
(set! v1 (list-ref l1 2))
(set! n1 (list-ref l1 3))
;; Solve.
(cond ((equal? (grsp-ifrprnd s1 u1 v1 n1) #t)
(set! res1 1)))
res1))
;; grsp-trcrnd - Simple truncation and rounding function (type 19).
;;
;; Keywords:
;;
;; - functions, activation, ann
;;
;; Parameters:
;;
;; - p_11: list containing the following parameters.
;;
;; - Element 0: threshold.
;; - Element 1: number.
;; - Element 2: result if element1 < element 0.
;; - Element 3: result if element >= element 0.
;;
;; Output:
;;
;; - Numeric.
;;
(define (grsp-trcrnd p_l1)
(let ((res1 0)
(l1 '())
(n0 0)
(n1 0)
(n2 0)
(n3 0))
;; Extract list elements.
(set! l1 p_l1)
(set! n0 (list-ref l1 0))
(set! n1 (list-ref l1 1))
(set! n2 (list-ref l1 2))
(set! n3 (list-ref l1 3))
;; Solve.
(cond ((< n1 n0)
(set! res1 n2))
(else (set! res1 n3)))
res1))