-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwordpress_github_pages_mapping.csv
More file actions
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
1491 lines (1491 loc) · 283 KB
/
wordpress_github_pages_mapping.csv
File metadata and controls
1491 lines (1491 loc) · 283 KB
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
wordpress_url;github_pages_url
https://graiphic.io/accelerator/quick-start/installation-guide/execution-providers/cuda/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/quick_start-installation_guide/execution_providers/cuda/README.md
https://graiphic.io/accelerator/quick-start/installation-guide/execution-providers/onednn/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/quick_start-installation_guide/execution_providers/onednn/README.md
https://graiphic.io/accelerator/quick-start/installation-guide/execution-providers/openvino/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/quick_start-installation_guide/execution_providers/openvino/README.md
https://graiphic.io/accelerator/quick-start/installation-guide/execution-providers/tensorrt/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/quick_start-installation_guide/execution_providers/tensorrt/README.md
https://graiphic.io/documentation/1d-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-name/1d-2/README.md
https://graiphic.io/documentation/1d/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-index/1d/README.md
https://graiphic.io/documentation/2d-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-name/2d-2/README.md
https://graiphic.io/documentation/2d/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-index/2d/README.md
https://graiphic.io/documentation/3d-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-name/3d-2/README.md
https://graiphic.io/documentation/3d/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-index/3d/README.md
https://graiphic.io/documentation/4d-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-name/4d-2/README.md
https://graiphic.io/documentation/4d/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-index/4d/README.md
https://graiphic.io/documentation/5d-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-name/5d-2/README.md
https://graiphic.io/documentation/5d/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-index/5d/README.md
https://graiphic.io/documentation/6d-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-name/6d-2/README.md
https://graiphic.io/documentation/6d/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-index/6d/README.md
https://graiphic.io/documentation/abs/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/abs/README.md
https://graiphic.io/documentation/accelerator/api/execution/close/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/close/README.md
https://graiphic.io/documentation/accelerator/api/execution/cuda-advanced/construct-ptr/index/1d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/cuda_advanced/construct_ptr_input_data/index/1d/README.md
https://graiphic.io/documentation/accelerator/api/execution/cuda-advanced/construct-ptr/index/2d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/cuda_advanced/construct_ptr_input_data/index/2d/README.md
https://graiphic.io/documentation/accelerator/api/execution/cuda-advanced/construct-ptr/index/3d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/cuda_advanced/construct_ptr_input_data/index/3d/README.md
https://graiphic.io/documentation/accelerator/api/execution/cuda-advanced/construct-ptr/index/4d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/cuda_advanced/construct_ptr_input_data/index/4d/README.md
https://graiphic.io/documentation/accelerator/api/execution/cuda-advanced/construct-ptr/index/5d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/cuda_advanced/construct_ptr_input_data/index/5d/README.md
https://graiphic.io/documentation/accelerator/api/execution/cuda-advanced/construct-ptr/index/6d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/cuda_advanced/construct_ptr_input_data/index/6d/README.md
https://graiphic.io/documentation/accelerator/api/execution/cuda-advanced/construct-ptr/index/scalar/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/cuda_advanced/construct_ptr_input_data/index/scalar/README.md
https://graiphic.io/documentation/accelerator/api/execution/cuda-advanced/construct-ptr/name/1d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/cuda_advanced/construct_ptr_input_data/name/1d/README.md
https://graiphic.io/documentation/accelerator/api/execution/cuda-advanced/construct-ptr/name/2d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/cuda_advanced/construct_ptr_input_data/name/2d/README.md
https://graiphic.io/documentation/accelerator/api/execution/cuda-advanced/construct-ptr/name/3d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/cuda_advanced/construct_ptr_input_data/name/3d/README.md
https://graiphic.io/documentation/accelerator/api/execution/cuda-advanced/construct-ptr/name/4d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/cuda_advanced/construct_ptr_input_data/name/4d/README.md
https://graiphic.io/documentation/accelerator/api/execution/cuda-advanced/construct-ptr/name/5d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/cuda_advanced/construct_ptr_input_data/name/5d/README.md
https://graiphic.io/documentation/accelerator/api/execution/cuda-advanced/construct-ptr/name/6d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/cuda_advanced/construct_ptr_input_data/name/6d/README.md
https://graiphic.io/documentation/accelerator/api/execution/cuda-advanced/construct-ptr/name/scalar/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/cuda_advanced/construct_ptr_input_data/name/scalar/README.md
https://graiphic.io/documentation/accelerator/api/execution/cuda-advanced/convert/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/cuda_advanced/convert/README.md
https://graiphic.io/documentation/accelerator/api/execution/cuda-advanced/exec/mono-input/preallocated-cuda/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/cuda_advanced/exec/mono_input/preallocated-cuda/README.md
https://graiphic.io/documentation/accelerator/api/execution/cuda-advanced/exec/multi-input/autoallocated-cuda/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/cuda_advanced/exec/multi_input/autoallocated-cuda/README.md
https://graiphic.io/documentation/accelerator/api/execution/cuda-advanced/exec/multi-input/local-ram/autoallocated-cuda/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/cuda_advanced/exec/multi_input/autoallocated-cuda/README.md
https://graiphic.io/documentation/accelerator/api/execution/cuda-advanced/exec/multi-input/local-ram/preallocated-cuda/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/cuda_advanced/exec/multi_input/preallocated-cuda/README.md
https://graiphic.io/documentation/accelerator/api/execution/cuda-advanced/exec/multi-input/preallocated-cuda/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/cuda_advanced/exec/multi_input/preallocated-cuda/README.md
https://graiphic.io/documentation/accelerator/api/execution/cuda-advanced/free-cuda/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/cuda_advanced/free-cuda/README.md
https://graiphic.io/documentation/accelerator/api/execution/cuda-advanced/function/copy-cuda-and-free/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/cuda_advanced/function/copy-cuda-and-free/README.md
https://graiphic.io/documentation/accelerator/api/execution/cuda-advanced/function/copy-cuda/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/cuda_advanced/function/copy-cuda/README.md
https://graiphic.io/documentation/accelerator/api/execution/cuda-advanced/function/free-cuda/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/cuda_advanced/function/free-cuda/README.md
https://graiphic.io/documentation/accelerator/api/execution/exec/mono/1d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/exec/mono/1d/README.md
https://graiphic.io/documentation/accelerator/api/execution/exec/mono/2d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/exec/mono/2d/README.md
https://graiphic.io/documentation/accelerator/api/execution/exec/mono/3d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/exec/mono/3d/README.md
https://graiphic.io/documentation/accelerator/api/execution/exec/mono/4d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/exec/mono/4d/README.md
https://graiphic.io/documentation/accelerator/api/execution/exec/mono/5d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/exec/mono/5d/README.md
https://graiphic.io/documentation/accelerator/api/execution/exec/mono/6d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/exec/mono/6d/README.md
https://graiphic.io/documentation/accelerator/api/execution/exec/mono/scalar/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/exec/mono/scalar/README.md
https://graiphic.io/documentation/accelerator/api/execution/exec/multi/index/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/exec/multi/index/README.md
https://graiphic.io/documentation/accelerator/api/execution/exec/multi/name/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/exec/multi/name/README.md
https://graiphic.io/documentation/accelerator/api/execution/input/index/1d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/input/index/1d/README.md
https://graiphic.io/documentation/accelerator/api/execution/input/index/2d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/input/index/2d/README.md
https://graiphic.io/documentation/accelerator/api/execution/input/index/3d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/input/index/3d/README.md
https://graiphic.io/documentation/accelerator/api/execution/input/index/4d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/input/index/4d/README.md
https://graiphic.io/documentation/accelerator/api/execution/input/index/5d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/input/index/5d/README.md
https://graiphic.io/documentation/accelerator/api/execution/input/index/6d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/input/index/6d/README.md
https://graiphic.io/documentation/accelerator/api/execution/input/index/scalar/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/input/index/scalar/README.md
https://graiphic.io/documentation/accelerator/api/execution/input/name/1d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/input/name/1d/README.md
https://graiphic.io/documentation/accelerator/api/execution/input/name/2d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/input/name/2d/README.md
https://graiphic.io/documentation/accelerator/api/execution/input/name/3d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/input/name/3d/README.md
https://graiphic.io/documentation/accelerator/api/execution/input/name/4d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/input/name/4d/README.md
https://graiphic.io/documentation/accelerator/api/execution/input/name/5d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/input/name/5d/README.md
https://graiphic.io/documentation/accelerator/api/execution/input/name/6d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/input/name/6d/README.md
https://graiphic.io/documentation/accelerator/api/execution/input/name/scalar/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/input/name/scalar/README.md
https://graiphic.io/documentation/accelerator/api/execution/open/file/cuda/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/open/file/cuda/README.md
https://graiphic.io/documentation/accelerator/api/execution/open/file/default/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/open/file/default/README.md
https://graiphic.io/documentation/accelerator/api/execution/open/file/tensor-rt/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/open/file/tensor-rt/README.md
https://graiphic.io/documentation/accelerator/api/execution/open/graph/cuda/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/open/graph/cuda/README.md
https://graiphic.io/documentation/accelerator/api/execution/open/graph/default/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/open/graph/default/README.md
https://graiphic.io/documentation/accelerator/api/execution/open/graph/tensor-rt/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/open/graph/tensor-rt/README.md
https://graiphic.io/documentation/accelerator/api/execution/output/mono/1d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/output/mono/1d/README.md
https://graiphic.io/documentation/accelerator/api/execution/output/mono/2d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/output/mono/2d/README.md
https://graiphic.io/documentation/accelerator/api/execution/output/mono/3d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/output/mono/3d/README.md
https://graiphic.io/documentation/accelerator/api/execution/output/mono/4d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/output/mono/4d/README.md
https://graiphic.io/documentation/accelerator/api/execution/output/mono/5d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/output/mono/5d/README.md
https://graiphic.io/documentation/accelerator/api/execution/output/mono/6d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/output/mono/6d/README.md
https://graiphic.io/documentation/accelerator/api/execution/output/mono/scalar/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/output/mono/scalar/README.md
https://graiphic.io/documentation/accelerator/api/execution/output/multi/1d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/output/multi/1d/README.md
https://graiphic.io/documentation/accelerator/api/execution/output/multi/2d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/output/multi/2d/README.md
https://graiphic.io/documentation/accelerator/api/execution/output/multi/3d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/output/multi/3d/README.md
https://graiphic.io/documentation/accelerator/api/execution/output/multi/4d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/output/multi/4d/README.md
https://graiphic.io/documentation/accelerator/api/execution/output/multi/5d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/output/multi/5d/README.md
https://graiphic.io/documentation/accelerator/api/execution/output/multi/6d/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/output/multi/6d/README.md
https://graiphic.io/documentation/accelerator/api/execution/output/multi/scalar/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/output/multi/scalar/README.md
https://graiphic.io/documentation/accelerator/quick-start/general/beginners-guide/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/quick_start-general/beginners-guide/README.md
https://graiphic.io/documentation/accelerator/quick-start/general/deployment/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/quick_start-general/deployment/README.md
https://graiphic.io/documentation/accelerator/quick-start/general/examples-guide/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/quick_start-general/examples-guide/README.md
https://graiphic.io/documentation/accelerator/quick-start/general/faq/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/quick_start-general/faq/README.md
https://graiphic.io/documentation/accelerator/quick-start/general/introduction/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/quick_start-general/introduction/README.md
https://graiphic.io/documentation/accelerator/quick-start/general/troubleshooting/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/quick_start-general/troubleshooting/README.md
https://graiphic.io/documentation/accelerator/quick-start/installation-guide/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/quick_start-installation_guide/installation-guide/README.md
https://graiphic.io/documentation/accuracy/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/metrics/accuracy/README.md
https://graiphic.io/documentation/acos/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/acos/README.md
https://graiphic.io/documentation/acosh/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/acosh/README.md
https://graiphic.io/documentation/activation/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/more-deep-learning/layers-parameters/activation/README.md
https://graiphic.io/documentation/adam/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/optimizers/adam/README.md
https://graiphic.io/documentation/add-2/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/functions/operators/add-2/README.md
https://graiphic.io/documentation/add-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/add-add-to-graph/README.md
https://graiphic.io/documentation/add-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/graph-function/graph-deep-learning/add-graph/README.md
https://graiphic.io/documentation/additive-attention-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/additive-attention-add-to-graph/README.md
https://graiphic.io/documentation/additiveattention-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-name/additiveattention-2/README.md
https://graiphic.io/documentation/additiveattention-3/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/format-weight/additiveattention-3/README.md
https://graiphic.io/documentation/additiveattention/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-index/additiveattention/README.md
https://graiphic.io/documentation/algorithm/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/more-deep-learning/layers-parameters/algorithm/README.md
https://graiphic.io/documentation/all-index-array/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/set-deep-learning/weight-set-dl/write/all-index-array/README.md
https://graiphic.io/documentation/all-inputs-layers/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/shape/all-inputs-layers/README.md
https://graiphic.io/documentation/all-inputs/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/shape/layer-shape-get/all-inputs/README.md
https://graiphic.io/documentation/all-model/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/set-deep-learning/weight-set-dl/write/all-model/README.md
https://graiphic.io/documentation/all-name-array/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/set-deep-learning/weight-set-dl/write/all-name-array/README.md
https://graiphic.io/documentation/all-outputs-layers/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/shape/all-outputs-layers/README.md
https://graiphic.io/documentation/all-outputs/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/shape/layer-shape-get/all-outputs/README.md
https://graiphic.io/documentation/all-random/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/set-deep-learning/weight-set-dl/write/all-random/README.md
https://graiphic.io/documentation/all/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/label/all/README.md
https://graiphic.io/documentation/alpha-dropout-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/alpha-dropout-add-to-graph/README.md
https://graiphic.io/documentation/amin/;https://graiphic.github.io/Graiphic-documentation/#/cuda/cublas-cuda/amin/README.md
https://graiphic.io/documentation/and-2/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/functions/operators/and-2/README.md
https://graiphic.io/documentation/argmax/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/argmax/README.md
https://graiphic.io/documentation/argmin/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/argmin/README.md
https://graiphic.io/documentation/asin/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/asin/README.md
https://graiphic.io/documentation/asinh/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/asinh/README.md
https://graiphic.io/documentation/asynchronous-fit-fifo-close/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/asynchronous_fit/fifo/asynchronous-fit-fifo-close/README.md
https://graiphic.io/documentation/asynchronous-fit-fifo-exec-fixed-learning-rate-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/asynchronous_fit/fifo/fixed-learning-rate-fifo-dl/asynchronous-fit-fifo-exec-fixed-learning-rate-by-index/README.md
https://graiphic.io/documentation/asynchronous-fit-fifo-exec-fixed-learning-rate-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/asynchronous_fit/fifo/fixed-learning-rate-fifo-dl/asynchronous-fit-fifo-exec-fixed-learning-rate-by-name/README.md
https://graiphic.io/documentation/asynchronous-fit-fifo-exec-learning-rate-scheduler-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/asynchronous_fit/fifo/learning-rate-scheduler-fifo-dl/asynchronous-fit-fifo-exec-learning-rate-scheduler-by-index/README.md
https://graiphic.io/documentation/asynchronous-fit-fifo-exec-learning-rate-scheduler-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/asynchronous_fit/fifo/learning-rate-scheduler-fifo-dl/asynchronous-fit-fifo-exec-learning-rate-scheduler-by-name/README.md
https://graiphic.io/documentation/asynchronous-fit-fifo-init/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/asynchronous_fit/fifo/asynchronous-fit-fifo-init/README.md
https://graiphic.io/documentation/asynchronous-fit-fifo-read/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/asynchronous_fit/fifo/asynchronous-fit-fifo-read/README.md
https://graiphic.io/documentation/asynchronous-fit-streaming-exec-fixed-learning-rate-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/asynchronous_fit/streaming/fixed-learning-rate-streaming-dl/asynchronous-fit-streaming-exec-fixed-learning-rate-by-index/README.md
https://graiphic.io/documentation/asynchronous-fit-streaming-exec-fixed-learning-rate-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/asynchronous_fit/streaming/fixed-learning-rate-streaming-dl/asynchronous-fit-streaming-exec-fixed-learning-rate-by-name/README.md
https://graiphic.io/documentation/asynchronous-fit-streaming-exec-learning-rate-scheduler-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/asynchronous_fit/streaming/learning-rate-scheduler-streaming-dl/asynchronous-fit-streaming-exec-learning-rate-scheduler-by-index/README.md
https://graiphic.io/documentation/asynchronous-fit-streaming-exec-learning-rate-scheduler-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/asynchronous_fit/streaming/learning-rate-scheduler-streaming-dl/asynchronous-fit-streaming-exec-learning-rate-scheduler-by-name/README.md
https://graiphic.io/documentation/atan/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/atan/README.md
https://graiphic.io/documentation/atanh/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/atanh/README.md
https://graiphic.io/documentation/attention-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-name/attention-2/README.md
https://graiphic.io/documentation/attention-3/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/format-weight/attention-3/README.md
https://graiphic.io/documentation/attention-4/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/multi-output/attention-4/README.md
https://graiphic.io/documentation/attention-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/attention-add-to-graph/README.md
https://graiphic.io/documentation/attention/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-index/attention/README.md
https://graiphic.io/documentation/attnlstm/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/multi-output/attnlstm/README.md
https://graiphic.io/documentation/auto-adjust-contrast/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/functions/treatment/auto-adjust-contrast/README.md
https://graiphic.io/documentation/average-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/average-add-to-graph/README.md
https://graiphic.io/documentation/averagepool/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/averagepool/README.md
https://graiphic.io/documentation/avg-pool-1d-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/avg-pool-1d-add-to-graph/README.md
https://graiphic.io/documentation/avg-pool-2d-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/avg-pool-2d-add-to-graph/README.md
https://graiphic.io/documentation/avg-pool-3d-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/avg-pool-3d-add-to-graph/README.md
https://graiphic.io/documentation/batch-norm-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/batch-norm-add-to-graph/README.md
https://graiphic.io/documentation/batchnormalization-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-name/batchnormalization-2/README.md
https://graiphic.io/documentation/batchnormalization-3/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/format-weight/batchnormalization-3/README.md
https://graiphic.io/documentation/batchnormalization-4/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/multi-output/batchnormalization-4/README.md
https://graiphic.io/documentation/batchnormalization/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-index/batchnormalization/README.md
https://graiphic.io/documentation/bcg-lookup/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/functions/treatment/bcg-lookup/README.md
https://graiphic.io/documentation/beginners-guide/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/general-computer-vision/beginners-guide/README.md
https://graiphic.io/documentation/bernouilli/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/bernouilli/README.md
https://graiphic.io/documentation/biasdropout/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/multi-output/biasdropout/README.md
https://graiphic.io/documentation/bidirectional-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-name/bidirectional-2/README.md
https://graiphic.io/documentation/bidirectional-3/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/format-weight/bidirectional-3/README.md
https://graiphic.io/documentation/bidirectional-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/bidirectional-add-to-graph/README.md
https://graiphic.io/documentation/bidirectional/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-index/bidirectional/README.md
https://graiphic.io/documentation/bifurcationdetector/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/multi-output/bifurcationdetector/README.md
https://graiphic.io/documentation/binaryaccuracy/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/metrics/binaryaccuracy/README.md
https://graiphic.io/documentation/binarycrossentropy-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/metrics/binarycrossentropy-2/README.md
https://graiphic.io/documentation/binarycrossentropy/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/losses/binarycrossentropy/README.md
https://graiphic.io/documentation/binaryiou/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/metrics/binaryiou/README.md
https://graiphic.io/documentation/bitmaskbiasdropout/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/multi-output/bitmaskbiasdropout/README.md
https://graiphic.io/documentation/bitmaskdropout/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/multi-output/bitmaskdropout/README.md
https://graiphic.io/documentation/bitwisenot/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/bitwisenot/README.md
https://graiphic.io/documentation/blackmanwindow/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/blackmanwindow/README.md
https://graiphic.io/documentation/bmp-file/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/set-deep-learning/weight-set-dl/write/bmp-file/README.md
https://graiphic.io/documentation/build-kernel/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/functions/filters/build-kernel/README.md
https://graiphic.io/documentation/canny-edge-detection/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/functions/filters/canny-edge-detection/README.md
https://graiphic.io/documentation/cast-image/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/image-manipulation/cast-image/README.md
https://graiphic.io/documentation/cast/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/cast/README.md
https://graiphic.io/documentation/categorical-to-onehot/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/pre-post-process/categorical-to-onehot/README.md
https://graiphic.io/documentation/categoricalaccuracy/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/metrics/categoricalaccuracy/README.md
https://graiphic.io/documentation/categoricalcrossentropy-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/metrics/categoricalcrossentropy-2/README.md
https://graiphic.io/documentation/categoricalcrossentropy/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/losses/categoricalcrossentropy/README.md
https://graiphic.io/documentation/categoricalhinge-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/metrics/categoricalhinge-2/README.md
https://graiphic.io/documentation/categoricalhinge/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/losses/categoricalhinge/README.md
https://graiphic.io/documentation/category/accelerator/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/README.md
https://graiphic.io/documentation/category/accelerator/accelerator-api-execution/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/README.md
https://graiphic.io/documentation/category/accelerator/accelerator-api-execution/accelerator-api-execution-cuda_advanced/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/cuda_advanced/README.md
https://graiphic.io/documentation/category/accelerator/accelerator-api-execution/accelerator-api-execution-cuda_advanced/accelerator-api-execution-cuda_advanced-construct_ptr_input_data/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/cuda_advanced/construct_ptr_input_data/README.md
https://graiphic.io/documentation/category/accelerator/accelerator-api-execution/accelerator-api-execution-cuda_advanced/accelerator-api-execution-cuda_advanced-construct_ptr_input_data/accelerator-api-execution-cuda_advanced-construct_ptr_input_data-index/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/cuda_advanced/construct_ptr_input_data/index/README.md
https://graiphic.io/documentation/category/accelerator/accelerator-api-execution/accelerator-api-execution-cuda_advanced/accelerator-api-execution-cuda_advanced-construct_ptr_input_data/accelerator-api-execution-cuda_advanced-construct_ptr_input_data-name/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/cuda_advanced/construct_ptr_input_data/name/README.md
https://graiphic.io/documentation/category/accelerator/accelerator-api-execution/accelerator-api-execution-cuda_advanced/accelerator-api-execution-cuda_advanced-exec/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/cuda_advanced/exec/README.md
https://graiphic.io/documentation/category/accelerator/accelerator-api-execution/accelerator-api-execution-cuda_advanced/accelerator-api-execution-cuda_advanced-exec/accelerator-api-execution-cuda_advanced-exec-mono_input/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/cuda_advanced/exec/mono_input/README.md
https://graiphic.io/documentation/category/accelerator/accelerator-api-execution/accelerator-api-execution-cuda_advanced/accelerator-api-execution-cuda_advanced-exec/accelerator-api-execution-cuda_advanced-exec-multi_input/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/cuda_advanced/exec/multi_input/README.md
https://graiphic.io/documentation/category/accelerator/accelerator-api-execution/accelerator-api-execution-cuda_advanced/accelerator-api-execution-cuda_advanced-function/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/cuda_advanced/function/README.md
https://graiphic.io/documentation/category/accelerator/accelerator-api-execution/accelerator-api-execution-exec/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/exec/README.md
https://graiphic.io/documentation/category/accelerator/accelerator-api-execution/accelerator-api-execution-exec/accelerator-api-execution-exec-mono/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/exec/mono/README.md
https://graiphic.io/documentation/category/accelerator/accelerator-api-execution/accelerator-api-execution-exec/accelerator-api-execution-exec-multi/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/exec/multi/README.md
https://graiphic.io/documentation/category/accelerator/accelerator-api-execution/accelerator-api-execution-input/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/input/README.md
https://graiphic.io/documentation/category/accelerator/accelerator-api-execution/accelerator-api-execution-input/accelerator-api-execution-input-index/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/input/index/README.md
https://graiphic.io/documentation/category/accelerator/accelerator-api-execution/accelerator-api-execution-input/accelerator-api-execution-input-name/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/input/name/README.md
https://graiphic.io/documentation/category/accelerator/accelerator-api-execution/accelerator-api-execution-open/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/open/README.md
https://graiphic.io/documentation/category/accelerator/accelerator-api-execution/accelerator-api-execution-open/accelerator-api-execution-open-file/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/open/file/README.md
https://graiphic.io/documentation/category/accelerator/accelerator-api-execution/accelerator-api-execution-open/accelerator-api-execution-open-graph/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/open/graph/README.md
https://graiphic.io/documentation/category/accelerator/accelerator-api-execution/accelerator-api-execution-output/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/output/README.md
https://graiphic.io/documentation/category/accelerator/accelerator-api-execution/accelerator-api-execution-output/accelerator-api-execution-output-mono/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/output/mono/README.md
https://graiphic.io/documentation/category/accelerator/accelerator-api-execution/accelerator-api-execution-output/accelerator-api-execution-output-multi/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/api-execution/output/multi/README.md
https://graiphic.io/documentation/category/accelerator/accelerator-quick_start-general/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/quick_start-general/README.md
https://graiphic.io/documentation/category/accelerator/accelerator-quick_start-installation_guide/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/quick_start-installation_guide/README.md
https://graiphic.io/documentation/category/accelerator/accelerator-quick_start-installation_guide/accelerator-quick_start-installation_guide-execution_providers/;https://graiphic.github.io/Graiphic-documentation/#/accelerator/quick_start-installation_guide/execution_providers/README.md
https://graiphic.io/documentation/category/computer-vision/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/README.md
https://graiphic.io/documentation/category/computer-vision/functions/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/functions/README.md
https://graiphic.io/documentation/category/computer-vision/functions/filters/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/functions/filters/README.md
https://graiphic.io/documentation/category/computer-vision/functions/form/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/functions/form/README.md
https://graiphic.io/documentation/category/computer-vision/functions/inspection/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/functions/inspection/README.md
https://graiphic.io/documentation/category/computer-vision/functions/operators/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/functions/operators/README.md
https://graiphic.io/documentation/category/computer-vision/functions/pattern/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/functions/pattern/README.md
https://graiphic.io/documentation/category/computer-vision/functions/treatment/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/functions/treatment/README.md
https://graiphic.io/documentation/category/computer-vision/general-computer-vision/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/general-computer-vision/README.md
https://graiphic.io/documentation/category/computer-vision/installation-guide-computer-vision/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/installation-guide-computer-vision/README.md
https://graiphic.io/documentation/category/computer-vision/session/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/session/README.md
https://graiphic.io/documentation/category/computer-vision/tools/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/README.md
https://graiphic.io/documentation/category/computer-vision/tools/additional-windows/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/additional-windows/README.md
https://graiphic.io/documentation/category/computer-vision/tools/files/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/files/README.md
https://graiphic.io/documentation/category/computer-vision/tools/image-manipulation/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/image-manipulation/README.md
https://graiphic.io/documentation/category/computer-vision/tools/image-modification/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/image-modification/README.md
https://graiphic.io/documentation/category/computer-vision/tools/pixel-editing/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/pixel-editing/README.md
https://graiphic.io/documentation/category/computer-vision/tools/pixel-editing/color/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/pixel-editing/color/README.md
https://graiphic.io/documentation/category/computer-vision/tools/pixel-editing/draw/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/pixel-editing/draw/README.md
https://graiphic.io/documentation/category/computer-vision/tools/pixel-editing/grayscale/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/pixel-editing/grayscale/README.md
https://graiphic.io/documentation/category/computer-vision/tools/region-of-interest/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/region-of-interest/README.md
https://graiphic.io/documentation/category/computer-vision/video-writter/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/video-writter/README.md
https://graiphic.io/documentation/category/cuda/;https://graiphic.github.io/Graiphic-documentation/#/cuda/README.md
https://graiphic.io/documentation/category/cuda/array-cuda/;https://graiphic.github.io/Graiphic-documentation/#/cuda/array-cuda/README.md
https://graiphic.io/documentation/category/cuda/cublas-cuda/;https://graiphic.github.io/Graiphic-documentation/#/cuda/cublas-cuda/README.md
https://graiphic.io/documentation/category/cuda/elementary-cuda/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/README.md
https://graiphic.io/documentation/category/cuda/elementary-cuda/exponential-elementary/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/exponential-elementary/README.md
https://graiphic.io/documentation/category/cuda/elementary-cuda/hyperbolic-elementary/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/hyperbolic-elementary/README.md
https://graiphic.io/documentation/category/cuda/elementary-cuda/trigonometric-elementary/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/trigonometric-elementary/README.md
https://graiphic.io/documentation/category/cuda/general-cuda/;https://graiphic.github.io/Graiphic-documentation/#/cuda/general-cuda/README.md
https://graiphic.io/documentation/category/cuda/installation-guide-cuda/;https://graiphic.github.io/Graiphic-documentation/#/cuda/installation-guide-cuda/README.md
https://graiphic.io/documentation/category/cuda/memory-control/;https://graiphic.github.io/Graiphic-documentation/#/cuda/memory-control/README.md
https://graiphic.io/documentation/category/cuda/numeric-cuda/;https://graiphic.github.io/Graiphic-documentation/#/cuda/numeric-cuda/README.md
https://graiphic.io/documentation/category/cuda/transforms-cuda/;https://graiphic.github.io/Graiphic-documentation/#/cuda/transforms-cuda/README.md
https://graiphic.io/documentation/category/deep-learning/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/README.md
https://graiphic.io/documentation/category/deep-learning/advanced/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/README.md
https://graiphic.io/documentation/category/deep-learning/advanced/add-weight/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/README.md
https://graiphic.io/documentation/category/deep-learning/advanced/add-weight/deep-learning-input-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-index/README.md
https://graiphic.io/documentation/category/deep-learning/advanced/add-weight/deep-learning-input-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-name/README.md
https://graiphic.io/documentation/category/deep-learning/advanced/convert/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/convert/README.md
https://graiphic.io/documentation/category/deep-learning/advanced/convert/from-onnx/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/convert/from-onnx/README.md
https://graiphic.io/documentation/category/deep-learning/advanced/convert/to-onnx/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/convert/to-onnx/README.md
https://graiphic.io/documentation/category/deep-learning/advanced/format-weight/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/format-weight/README.md
https://graiphic.io/documentation/category/deep-learning/advanced/get-weight/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/README.md
https://graiphic.io/documentation/category/deep-learning/advanced/get-weight/index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/index/README.md
https://graiphic.io/documentation/category/deep-learning/advanced/get-weight/name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/name/README.md
https://graiphic.io/documentation/category/deep-learning/advanced/metrics/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/metrics/README.md
https://graiphic.io/documentation/category/deep-learning/advanced/pre-post-process/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/pre-post-process/README.md
https://graiphic.io/documentation/category/deep-learning/advanced/set-weight/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/set-weight/README.md
https://graiphic.io/documentation/category/deep-learning/advanced/set-weight/index-set-weight/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/set-weight/index-set-weight/README.md
https://graiphic.io/documentation/category/deep-learning/advanced/set-weight/name-set-weight/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/set-weight/name-set-weight/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/architecture_layers/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/architecture_nodes/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/architecture_nodes/architecture_nodes_nodes/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/architecture_nodes/architecture_nodes_nodes/architecture_nodes_nodes_activation/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/activation/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/architecture_nodes/architecture_nodes_nodes/architecture_nodes_nodes_mono_input/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/architecture_nodes/architecture_nodes_nodes/architecture_nodes_nodes_mono_input/architecture_nodes_nodes_mono_input_mono_output/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/architecture_nodes/architecture_nodes_nodes/architecture_nodes_nodes_mono_input/multi-output-nodes-dl/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/multi-output-nodes-dl/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/architecture_nodes/architecture_nodes_nodes/multi-input-dl/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/architecture_nodes/architecture_nodes_nodes/multi-input-dl/mono-output/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/mono-output/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/architecture_nodes/architecture_nodes_nodes/multi-input-dl/multi-output/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/multi-output/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/architecture_nodes/architecture_nodes_nodes/multi-input-dl/variadic-output/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/variadic-output/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/architecture_nodes/architecture_nodes_nodes/structure/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/structure/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/architecture_nodes/architecture_nodes_nodes/variadic-input/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/variadic-input/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/architecture_nodes/parameters-nodes/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/parameters-nodes/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/architecture_nodes/parameters-nodes/initializer/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/parameters-nodes/initializer/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/architecture_nodes/parameters-nodes/tensor-parameters/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/parameters-nodes/tensor-parameters/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/define-deep-learning-architecture/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/define-deep-learning-architecture/activations/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/activations/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/define-deep-learning-architecture/cells/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/cells/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/define-deep-learning-architecture/initializers/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/initializers/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/define-deep-learning-architecture/losses/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/losses/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/define-deep-learning-architecture/optimizers/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/optimizers/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/define-deep-learning-architecture/regularizers/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/regularizers/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/get-set/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/get-set/get-deep-learning/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/get-set/get-deep-learning/label/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/label/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/get-set/get-deep-learning/layer-get-dl/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/layer-get-dl/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/get-set/get-deep-learning/layer-get-dl/lda_coeff/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/layer-get-dl/lda_coeff/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/get-set/get-deep-learning/layer-get-dl/parameters/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/layer-get-dl/parameters/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/get-set/get-deep-learning/layer-get-dl/training-status/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/layer-get-dl/training-status/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/get-set/get-deep-learning/model/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/model/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/get-set/get-deep-learning/shape/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/shape/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/get-set/get-deep-learning/shape/layer-shape-get/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/shape/layer-shape-get/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/get-set/get-deep-learning/weight-architecture-get/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/weight-architecture-get/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/get-set/get-deep-learning/weight-architecture-get/read-weight-get/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/weight-architecture-get/read-weight-get/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/get-set/get-deep-learning/weight-architecture-get/update-weight-get/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/weight-architecture-get/update-weight-get/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/get-set/get-deep-learning/weight-architecture-get/weight-shape-get/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/weight-architecture-get/weight-shape-get/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/get-set/set-deep-learning/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/set-deep-learning/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/get-set/set-deep-learning/layer-set-dl/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/set-deep-learning/layer-set-dl/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/get-set/set-deep-learning/layer-set-dl/lda-coeff-set-dl/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/set-deep-learning/layer-set-dl/lda-coeff-set-dl/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/get-set/set-deep-learning/layer-set-dl/training-status-set-dl/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/set-deep-learning/layer-set-dl/training-status-set-dl/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/get-set/set-deep-learning/model-get-dl/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/set-deep-learning/model-get-dl/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/get-set/set-deep-learning/weight-set-dl/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/set-deep-learning/weight-set-dl/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/get-set/set-deep-learning/weight-set-dl/update-set-dl/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/set-deep-learning/weight-set-dl/update-set-dl/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/get-set/set-deep-learning/weight-set-dl/write/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/set-deep-learning/weight-set-dl/write/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/graph-function/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/graph-function/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/graph-function/file-graph-function-dl/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/graph-function/file-graph-function-dl/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/graph-function/file-graph-function-dl/convert-graph-function/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/graph-function/file-graph-function-dl/convert-graph-function/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/graph-function/file-graph-function-dl/save/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/graph-function/file-graph-function-dl/save/README.md
https://graiphic.io/documentation/category/deep-learning/architecture/graph-function/graph-deep-learning/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/graph-function/graph-deep-learning/README.md
https://graiphic.io/documentation/category/deep-learning/general/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/general/README.md
https://graiphic.io/documentation/category/deep-learning/installation-guide/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/installation-guide/README.md
https://graiphic.io/documentation/category/deep-learning/installation-guide/execution-providers/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/installation-guide/execution-providers/README.md
https://graiphic.io/documentation/category/deep-learning/more-deep-learning/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/more-deep-learning/README.md
https://graiphic.io/documentation/category/deep-learning/more-deep-learning/layers-parameters/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/more-deep-learning/layers-parameters/README.md
https://graiphic.io/documentation/category/deep-learning/more-deep-learning/nodes-parameters/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/more-deep-learning/nodes-parameters/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/advanced-dl-runtime/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/advanced-dl-runtime/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/advanced-dl-runtime/exec-raw-data-advanced-runtime/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/advanced-dl-runtime/exec-raw-data-advanced-runtime/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/advanced-dl-runtime/exec-raw-data-advanced-runtime/academic-train/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/advanced-dl-runtime/exec-raw-data-advanced-runtime/academic-train/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/advanced-dl-runtime/exec-raw-data-advanced-runtime/academic-train/backward/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/advanced-dl-runtime/exec-raw-data-advanced-runtime/academic-train/backward/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/advanced-dl-runtime/exec-raw-data-advanced-runtime/academic-train/forward/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/advanced-dl-runtime/exec-raw-data-advanced-runtime/academic-train/forward/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/advanced-dl-runtime/exec-raw-data-advanced-runtime/academic-train/inference-run-advanced-academic/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/advanced-dl-runtime/exec-raw-data-advanced-runtime/academic-train/inference-run-advanced-academic/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/advanced-dl-runtime/exec-raw-data-advanced-runtime/forward-exec-advanced/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/advanced-dl-runtime/exec-raw-data-advanced-runtime/forward-exec-advanced/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/advanced-dl-runtime/exec-raw-data-advanced-runtime/training-advanced-runtime-dl/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/advanced-dl-runtime/exec-raw-data-advanced-runtime/training-advanced-runtime-dl/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/advanced-dl-runtime/exec-raw-data-advanced-runtime/training-advanced-runtime-dl/eval-step/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/advanced-dl-runtime/exec-raw-data-advanced-runtime/training-advanced-runtime-dl/eval-step/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/advanced-dl-runtime/exec-raw-data-advanced-runtime/training-advanced-runtime-dl/full-train-step/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/advanced-dl-runtime/exec-raw-data-advanced-runtime/training-advanced-runtime-dl/full-train-step/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/advanced-dl-runtime/exec-raw-data-advanced-runtime/training-advanced-runtime-dl/train-step/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/advanced-dl-runtime/exec-raw-data-advanced-runtime/training-advanced-runtime-dl/train-step/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/advanced-dl-runtime/llama/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/advanced-dl-runtime/llama/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/advanced-dl-runtime/tokenizer/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/advanced-dl-runtime/tokenizer/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/create/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/create/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/create/academic-training/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/create/academic-training/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/create/inference/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/create/inference/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/create/training/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/create/training/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/input-deep-leaning/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/input-deep-leaning/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/input-deep-leaning/forward-deep-learning/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/input-deep-leaning/forward-deep-learning/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/input-deep-leaning/loss-deep-learning/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/input-deep-leaning/loss-deep-learning/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_asynchronous_fit/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/asynchronous_fit/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_asynchronous_fit/runtime_asynchronous_fit_fifo/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/asynchronous_fit/fifo/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_asynchronous_fit/runtime_asynchronous_fit_fifo/fixed-learning-rate-fifo-dl/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/asynchronous_fit/fifo/fixed-learning-rate-fifo-dl/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_asynchronous_fit/runtime_asynchronous_fit_fifo/learning-rate-scheduler-fifo-dl/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/asynchronous_fit/fifo/learning-rate-scheduler-fifo-dl/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_asynchronous_fit/streaming/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/asynchronous_fit/streaming/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_asynchronous_fit/streaming/fixed-learning-rate-streaming-dl/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/asynchronous_fit/streaming/fixed-learning-rate-streaming-dl/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_asynchronous_fit/streaming/learning-rate-scheduler-streaming-dl/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/asynchronous_fit/streaming/learning-rate-scheduler-streaming-dl/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_exec/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_exec/academic/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/academic/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_exec/academic/inference-academic/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/academic/inference-academic/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_exec/academic/inference-academic/mono-academic/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/academic/inference-academic/mono-academic/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_exec/academic/inference-academic/multi/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/academic/inference-academic/multi/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_exec/academic/train-backward/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/academic/train-backward/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_exec/academic/train-backward/mono/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/academic/train-backward/mono/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_exec/academic/train-backward/multi-train-backward/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/academic/train-backward/multi-train-backward/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_exec/academic/train-forward/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/academic/train-forward/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_exec/academic/train-forward/mono-forward-academic/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/academic/train-forward/mono-forward-academic/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_exec/academic/train-forward/multi-forward-academic/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/academic/train-forward/multi-forward-academic/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_exec/runtime_exec_inference/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/inference/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_exec/runtime_exec_inference/runtime_exec_inference_mono/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/inference/mono/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_exec/runtime_exec_inference/runtime_exec_inference_multi/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/inference/multi/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_exec/runtime_exec_training/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/training/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_exec/runtime_exec_training/fit/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/training/fit/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_exec/runtime_exec_training/fit/fixed-learning-rate-exec-dl/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/training/fit/fixed-learning-rate-exec-dl/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_exec/runtime_exec_training/fit/learning-rate-scheduler-exec-dl/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/training/fit/learning-rate-scheduler-exec-dl/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_exec/runtime_exec_training/runtime_exec_training_eval/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/training/eval/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_exec/runtime_exec_training/runtime_exec_training_train/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/training/train/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_function/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/function/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_function/runtime_function_academic_training/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/function/academic_training/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_function/runtime_function_training/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/function/training/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_output/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/output/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_output/academic-output-runtime/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/output/academic-output-runtime/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_output/academic-output-runtime/output-academic-inference/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/output/academic-output-runtime/output-academic-inference/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_output/academic-output-runtime/output-academic-inference/mono-inference-academic-output/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/output/academic-output-runtime/output-academic-inference/mono-inference-academic-output/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_output/academic-output-runtime/output-academic-inference/multi-inference-academic-output/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/output/academic-output-runtime/output-academic-inference/multi-inference-academic-output/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_output/academic-output-runtime/train-backward-inference-academic/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/output/academic-output-runtime/train-backward-inference-academic/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_output/academic-output-runtime/train-backward-inference-academic/mono-backward-academic-output/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/output/academic-output-runtime/train-backward-inference-academic/mono-backward-academic-output/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_output/academic-output-runtime/train-backward-inference-academic/multi-backward-academic-output/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/output/academic-output-runtime/train-backward-inference-academic/multi-backward-academic-output/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_output/academic-output-runtime/train-forward-inference-academic/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/output/academic-output-runtime/train-forward-inference-academic/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_output/academic-output-runtime/train-forward-inference-academic/mono-forward-academic-output/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/output/academic-output-runtime/train-forward-inference-academic/mono-forward-academic-output/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_output/academic-output-runtime/train-forward-inference-academic/multi-forward-academic-output/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/output/academic-output-runtime/train-forward-inference-academic/multi-forward-academic-output/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_output/runtime_output_inference/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/output/inference/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_output/runtime_output_inference/multi-runtime_output_inference/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/output/inference/multi-runtime_output_inference/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_output/runtime_output_inference/runtime_output_inference_mono/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/output/inference/mono/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_output/training-output-dl/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/output/training-output-dl/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_output/training-output-dl/training-mono-output-dl/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/output/training-output-dl/training-mono-output-dl/README.md
https://graiphic.io/documentation/category/deep-learning/runtime/runtime_output/training-output-dl/training-multi-output-dl/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/output/training-output-dl/training-multi-output-dl/README.md
https://graiphic.io/documentation/category/sota/;https://graiphic.github.io/Graiphic-documentation/#/sota/README.md
https://graiphic.io/documentation/category/sota/general-sota/;https://graiphic.github.io/Graiphic-documentation/#/sota/general-sota/README.md
https://graiphic.io/documentation/category/sota/installation-guide-sota/;https://graiphic.github.io/Graiphic-documentation/#/sota/installation-guide-sota/README.md
https://graiphic.io/documentation/ceil/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/ceil/README.md
https://graiphic.io/documentation/celu/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/celu/README.md
https://graiphic.io/documentation/check-size/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/files/check-size/README.md
https://graiphic.io/documentation/close-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/asynchronous_fit/streaming/close-2/README.md
https://graiphic.io/documentation/close-3/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/advanced-dl-runtime/llama/close-3/README.md
https://graiphic.io/documentation/close-4/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/advanced-dl-runtime/tokenizer/close-4/README.md
https://graiphic.io/documentation/close-tokenized-text/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/advanced-dl-runtime/tokenizer/close-tokenized-text/README.md
https://graiphic.io/documentation/close/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/close/README.md
https://graiphic.io/documentation/color-image-to-u32-array/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/pixel-editing/color/color-image-to-u32-array/README.md
https://graiphic.io/documentation/color-image-to-u8c3-array/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/pixel-editing/color/color-image-to-u8c3-array/README.md
https://graiphic.io/documentation/color-to-rgb/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/pixel-editing/color/color-to-rgb/README.md
https://graiphic.io/documentation/compare/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/functions/operators/compare/README.md
https://graiphic.io/documentation/computer-vision-installation/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/installation-guide-computer-vision/computer-vision-installation/README.md
https://graiphic.io/documentation/concat/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/variadic-input/concat/README.md
https://graiphic.io/documentation/concatenate-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/concatenate-add-to-graph/README.md
https://graiphic.io/documentation/concatfromsequence/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/concatfromsequence/README.md
https://graiphic.io/documentation/constant/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/initializers/constant/README.md
https://graiphic.io/documentation/conv-1d-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/conv-1d-add-to-graph/README.md
https://graiphic.io/documentation/conv-1d-transpose-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/conv-1d-transpose-add-to-graph/README.md
https://graiphic.io/documentation/conv-2d-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/conv-2d-add-to-graph/README.md
https://graiphic.io/documentation/conv-2d-transpose-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/conv-2d-transpose-add-to-graph/README.md
https://graiphic.io/documentation/conv-3d-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/conv-3d-add-to-graph/README.md
https://graiphic.io/documentation/conv-3d-transpose-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/conv-3d-transpose-add-to-graph/README.md
https://graiphic.io/documentation/conv-lstm-1d-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/conv-lstm-1d-add-to-graph/README.md
https://graiphic.io/documentation/conv-lstm-2d-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/conv-lstm-2d-add-to-graph/README.md
https://graiphic.io/documentation/conv-lstm-3d-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/conv-lstm-3d-add-to-graph/README.md
https://graiphic.io/documentation/conv1d-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-name/conv1d-2/README.md
https://graiphic.io/documentation/conv1d-3/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/format-weight/conv1d-3/README.md
https://graiphic.io/documentation/conv1d/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-index/conv1d/README.md
https://graiphic.io/documentation/conv1dtranspose-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-name/conv1dtranspose-2/README.md
https://graiphic.io/documentation/conv1dtranspose-3/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/format-weight/conv1dtranspose-3/README.md
https://graiphic.io/documentation/conv1dtranspose/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-index/conv1dtranspose/README.md
https://graiphic.io/documentation/conv2d-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-name/conv2d-2/README.md
https://graiphic.io/documentation/conv2d-3/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/format-weight/conv2d-3/README.md
https://graiphic.io/documentation/conv2d/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-index/conv2d/README.md
https://graiphic.io/documentation/conv2dtranspose-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-name/conv2dtranspose-2/README.md
https://graiphic.io/documentation/conv2dtranspose-3/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/format-weight/conv2dtranspose-3/README.md
https://graiphic.io/documentation/conv2dtranspose/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-index/conv2dtranspose/README.md
https://graiphic.io/documentation/conv3d-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-name/conv3d-2/README.md
https://graiphic.io/documentation/conv3d-3/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/format-weight/conv3d-3/README.md
https://graiphic.io/documentation/conv3d/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-index/conv3d/README.md
https://graiphic.io/documentation/conv3dtranspose-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-name/conv3dtranspose-2/README.md
https://graiphic.io/documentation/conv3dtranspose-3/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/format-weight/conv3dtranspose-3/README.md
https://graiphic.io/documentation/conv3dtranspose/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-index/conv3dtranspose/README.md
https://graiphic.io/documentation/convlstm1d-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-name/convlstm1d-2/README.md
https://graiphic.io/documentation/convlstm1d-3/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/format-weight/convlstm1d-3/README.md
https://graiphic.io/documentation/convlstm1d/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-index/convlstm1d/README.md
https://graiphic.io/documentation/convlstm2d-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-name/convlstm2d-2/README.md
https://graiphic.io/documentation/convlstm2d-3/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/format-weight/convlstm2d-3/README.md
https://graiphic.io/documentation/convlstm2d/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-index/convlstm2d/README.md
https://graiphic.io/documentation/convlstm3d-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-name/convlstm3d-2/README.md
https://graiphic.io/documentation/convlstm3d-3/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/format-weight/convlstm3d-3/README.md
https://graiphic.io/documentation/convlstm3d/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-index/convlstm3d/README.md
https://graiphic.io/documentation/convolute/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/functions/filters/convolute/README.md
https://graiphic.io/documentation/coordinate_transformation_mode/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/more-deep-learning/nodes-parameters/coordinate_transformation_mode/README.md
https://graiphic.io/documentation/copy-tokenized-text-to-u8-array/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/advanced-dl-runtime/tokenizer/copy-tokenized-text-to-u8-array/README.md
https://graiphic.io/documentation/copy/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/image-manipulation/copy/README.md
https://graiphic.io/documentation/cos/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/cos/README.md
https://graiphic.io/documentation/cosh/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/cosh/README.md
https://graiphic.io/documentation/cosinesimilarity-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/metrics/cosinesimilarity-2/README.md
https://graiphic.io/documentation/cosinesimilarity/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/losses/cosinesimilarity/README.md
https://graiphic.io/documentation/cpu-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/advanced-dl-runtime/exec-raw-data-advanced-runtime/academic-train/inference-run-advanced-academic/cpu-2/README.md
https://graiphic.io/documentation/cpu-3/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/advanced-dl-runtime/exec-raw-data-advanced-runtime/academic-train/backward/cpu-3/README.md
https://graiphic.io/documentation/cpu-4/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/advanced-dl-runtime/exec-raw-data-advanced-runtime/training-advanced-runtime-dl/full-train-step/cpu-4/README.md
https://graiphic.io/documentation/cpu-5/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/advanced-dl-runtime/exec-raw-data-advanced-runtime/training-advanced-runtime-dl/eval-step/cpu-5/README.md
https://graiphic.io/documentation/cpu-6/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/advanced-dl-runtime/exec-raw-data-advanced-runtime/training-advanced-runtime-dl/train-step/cpu-6/README.md
https://graiphic.io/documentation/cpu-7/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/advanced-dl-runtime/exec-raw-data-advanced-runtime/forward-exec-advanced/cpu-7/README.md
https://graiphic.io/documentation/cpu-data-outside-cluster-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/advanced-dl-runtime/exec-raw-data-advanced-runtime/training-advanced-runtime-dl/train-step/cpu-data-outside-cluster-2/README.md
https://graiphic.io/documentation/cpu-data-outside-cluster/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/advanced-dl-runtime/exec-raw-data-advanced-runtime/forward-exec-advanced/cpu-data-outside-cluster/README.md
https://graiphic.io/documentation/cpu-set-learning-rate/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/advanced-dl-runtime/exec-raw-data-advanced-runtime/training-advanced-runtime-dl/full-train-step/cpu-set-learning-rate/README.md
https://graiphic.io/documentation/cpu-without-storing/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/advanced-dl-runtime/exec-raw-data-advanced-runtime/academic-train/forward/cpu-without-storing/README.md
https://graiphic.io/documentation/cpu/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/advanced-dl-runtime/exec-raw-data-advanced-runtime/academic-train/forward/cpu/README.md
https://graiphic.io/documentation/create-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/advanced-dl-runtime/tokenizer/create-2/README.md
https://graiphic.io/documentation/create-3/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/image-manipulation/create-3/README.md
https://graiphic.io/documentation/create-video-writer/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/video-writter/create-video-writer/README.md
https://graiphic.io/documentation/create/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/advanced-dl-runtime/llama/create/README.md
https://graiphic.io/documentation/cropping-1d-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/cropping-1d-add-to-graph/README.md
https://graiphic.io/documentation/cropping-2d-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/cropping-2d-add-to-graph/README.md
https://graiphic.io/documentation/cropping-3d-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/cropping-3d-add-to-graph/README.md
https://graiphic.io/documentation/cublas/amax-2/;https://graiphic.github.io/Graiphic-documentation/#/cuda/cublas-cuda/amax-2/README.md
https://graiphic.io/documentation/cublas/asum-2/;https://graiphic.github.io/Graiphic-documentation/#/cuda/cublas-cuda/asum-2/README.md
https://graiphic.io/documentation/cublas/axpy-2/;https://graiphic.github.io/Graiphic-documentation/#/cuda/cublas-cuda/axpy-2/README.md
https://graiphic.io/documentation/cublas/copy/;https://graiphic.github.io/Graiphic-documentation/#/cuda/cublas-cuda/copy/README.md
https://graiphic.io/documentation/cublas/dot-2/;https://graiphic.github.io/Graiphic-documentation/#/cuda/cublas-cuda/dot-2/README.md
https://graiphic.io/documentation/cublas/gemm/;https://graiphic.github.io/Graiphic-documentation/#/cuda/cublas-cuda/gemm/README.md
https://graiphic.io/documentation/cublas/gemv-2/;https://graiphic.github.io/Graiphic-documentation/#/cuda/cublas-cuda/gemv-2/README.md
https://graiphic.io/documentation/cublas/nrm2-2/;https://graiphic.github.io/Graiphic-documentation/#/cuda/cublas-cuda/nrm2-2/README.md
https://graiphic.io/documentation/cublas/resume-cublas/;https://graiphic.github.io/Graiphic-documentation/#/cuda/cublas-cuda/resume-cublas/README.md
https://graiphic.io/documentation/cublas/rot-2/;https://graiphic.github.io/Graiphic-documentation/#/cuda/cublas-cuda/rot-2/README.md
https://graiphic.io/documentation/cublas/rotg-2/;https://graiphic.github.io/Graiphic-documentation/#/cuda/cublas-cuda/rotg-2/README.md
https://graiphic.io/documentation/cublas/rotm-2/;https://graiphic.github.io/Graiphic-documentation/#/cuda/cublas-cuda/rotm-2/README.md
https://graiphic.io/documentation/cublas/rotmg-2/;https://graiphic.github.io/Graiphic-documentation/#/cuda/cublas-cuda/rotmg-2/README.md
https://graiphic.io/documentation/cublas/scal-2/;https://graiphic.github.io/Graiphic-documentation/#/cuda/cublas-cuda/scal-2/README.md
https://graiphic.io/documentation/cublas/swap-2/;https://graiphic.github.io/Graiphic-documentation/#/cuda/cublas-cuda/swap-2/README.md
https://graiphic.io/documentation/cuda/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/installation-guide/execution-providers/cuda/README.md
https://graiphic.io/documentation/cuda/array/array-size/;https://graiphic.github.io/Graiphic-documentation/#/cuda/array-cuda/array-size/README.md
https://graiphic.io/documentation/cuda/array/array-subset/;https://graiphic.github.io/Graiphic-documentation/#/cuda/array-cuda/array-subset/README.md
https://graiphic.io/documentation/cuda/array/build-array/;https://graiphic.github.io/Graiphic-documentation/#/cuda/array-cuda/build-array/README.md
https://graiphic.io/documentation/cuda/array/concatenate-array/;https://graiphic.github.io/Graiphic-documentation/#/cuda/array-cuda/concatenate-array/README.md
https://graiphic.io/documentation/cuda/array/decimate-1d-array/;https://graiphic.github.io/Graiphic-documentation/#/cuda/array-cuda/decimate-1d-array/README.md
https://graiphic.io/documentation/cuda/array/decrement-array-element/;https://graiphic.github.io/Graiphic-documentation/#/cuda/array-cuda/decrement-array-element/README.md
https://graiphic.io/documentation/cuda/array/delete-from-array/;https://graiphic.github.io/Graiphic-documentation/#/cuda/array-cuda/delete-from-array/README.md
https://graiphic.io/documentation/cuda/array/increment-array-element/;https://graiphic.github.io/Graiphic-documentation/#/cuda/array-cuda/increment-array-element/README.md
https://graiphic.io/documentation/cuda/array/index-array/;https://graiphic.github.io/Graiphic-documentation/#/cuda/array-cuda/index-array/README.md
https://graiphic.io/documentation/cuda/array/initialize-array/;https://graiphic.github.io/Graiphic-documentation/#/cuda/array-cuda/initialize-array/README.md
https://graiphic.io/documentation/cuda/array/insert-into-array/;https://graiphic.github.io/Graiphic-documentation/#/cuda/array-cuda/insert-into-array/README.md
https://graiphic.io/documentation/cuda/array/interleave-1d-array/;https://graiphic.github.io/Graiphic-documentation/#/cuda/array-cuda/interleave-1d-array/README.md
https://graiphic.io/documentation/cuda/array/interpolate-1d-array/;https://graiphic.github.io/Graiphic-documentation/#/cuda/array-cuda/interpolate-1d-array/README.md
https://graiphic.io/documentation/cuda/array/min-max/;https://graiphic.github.io/Graiphic-documentation/#/cuda/array-cuda/min-max/README.md
https://graiphic.io/documentation/cuda/array/remove-duplicates-from-1d-array/;https://graiphic.github.io/Graiphic-documentation/#/cuda/array-cuda/remove-duplicates-from-1d-array/README.md
https://graiphic.io/documentation/cuda/array/replace-subset/;https://graiphic.github.io/Graiphic-documentation/#/cuda/array-cuda/replace-subset/README.md
https://graiphic.io/documentation/cuda/array/reshape-array/;https://graiphic.github.io/Graiphic-documentation/#/cuda/array-cuda/reshape-array/README.md
https://graiphic.io/documentation/cuda/array/resume/;https://graiphic.github.io/Graiphic-documentation/#/cuda/array-cuda/resume/README.md
https://graiphic.io/documentation/cuda/array/reverse-1d-array/;https://graiphic.github.io/Graiphic-documentation/#/cuda/array-cuda/reverse-1d-array/README.md
https://graiphic.io/documentation/cuda/array/rotate-1d-array/;https://graiphic.github.io/Graiphic-documentation/#/cuda/array-cuda/rotate-1d-array/README.md
https://graiphic.io/documentation/cuda/array/search-in-array/;https://graiphic.github.io/Graiphic-documentation/#/cuda/array-cuda/search-in-array/README.md
https://graiphic.io/documentation/cuda/array/short-array/;https://graiphic.github.io/Graiphic-documentation/#/cuda/array-cuda/short-array/README.md
https://graiphic.io/documentation/cuda/array/shuffle-array/;https://graiphic.github.io/Graiphic-documentation/#/cuda/array-cuda/shuffle-array/README.md
https://graiphic.io/documentation/cuda/array/split-1d-array/;https://graiphic.github.io/Graiphic-documentation/#/cuda/array-cuda/split-1d-array/README.md
https://graiphic.io/documentation/cuda/array/split-2d-array/;https://graiphic.github.io/Graiphic-documentation/#/cuda/array-cuda/split-2d-array/README.md
https://graiphic.io/documentation/cuda/array/threshold-1d-array/;https://graiphic.github.io/Graiphic-documentation/#/cuda/array-cuda/threshold-1d-array/README.md
https://graiphic.io/documentation/cuda/array/transpose-array/;https://graiphic.github.io/Graiphic-documentation/#/cuda/array-cuda/transpose-array/README.md
https://graiphic.io/documentation/cuda/cuda/;https://graiphic.github.io/Graiphic-documentation/#/cuda/installation-guide-cuda/cuda/README.md
https://graiphic.io/documentation/cuda/deployment/;https://graiphic.github.io/Graiphic-documentation/#/cuda/general-cuda/deployment/README.md
https://graiphic.io/documentation/cuda/faq/;https://graiphic.github.io/Graiphic-documentation/#/cuda/general-cuda/faq/README.md
https://graiphic.io/documentation/cuda/hardware-compatibility/;https://graiphic.github.io/Graiphic-documentation/#/cuda/general-cuda/hardware-compatibility/README.md
https://graiphic.io/documentation/cuda/introduction/;https://graiphic.github.io/Graiphic-documentation/#/cuda/general-cuda/introduction/README.md
https://graiphic.io/documentation/cuda/transforms/fft/;https://graiphic.github.io/Graiphic-documentation/#/cuda/transforms-cuda/fft/README.md
https://graiphic.io/documentation/cuda/transforms/inverse-fft/;https://graiphic.github.io/Graiphic-documentation/#/cuda/transforms-cuda/inverse-fft/README.md
https://graiphic.io/documentation/cuda/transforms/resume/;https://graiphic.github.io/Graiphic-documentation/#/cuda/transforms-cuda/resume/README.md
https://graiphic.io/documentation/custom/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/losses/custom/README.md
https://graiphic.io/documentation/cv-display/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/general-computer-vision/cv-display/README.md
https://graiphic.io/documentation/decoderattention/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/multi-output/decoderattention/README.md
https://graiphic.io/documentation/decodermaskedmultiheadattention/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/multi-output/decodermaskedmultiheadattention/README.md
https://graiphic.io/documentation/decodermaskedselfattention/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/multi-output/decodermaskedselfattention/README.md
https://graiphic.io/documentation/deep-learning/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/installation-guide/deep-learning/README.md
https://graiphic.io/documentation/deep-learning/beginners-guide/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/general/beginners-guide/README.md
https://graiphic.io/documentation/dense-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-name/dense-2/README.md
https://graiphic.io/documentation/dense-3/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/format-weight/dense-3/README.md
https://graiphic.io/documentation/dense-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/dense-add-to-graph/README.md
https://graiphic.io/documentation/dense/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-index/dense/README.md
https://graiphic.io/documentation/deployment/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/general-computer-vision/deployment/README.md
https://graiphic.io/documentation/depthtospace/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/depthtospace/README.md
https://graiphic.io/documentation/depthwise-conv-2d-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/depthwise-conv-2d-add-to-graph/README.md
https://graiphic.io/documentation/depthwiseconv2d-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-name/depthwiseconv2d-2/README.md
https://graiphic.io/documentation/depthwiseconv2d-3/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/format-weight/depthwiseconv2d-3/README.md
https://graiphic.io/documentation/depthwiseconv2d/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-index/depthwiseconv2d/README.md
https://graiphic.io/documentation/det/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/det/README.md
https://graiphic.io/documentation/detect-faces/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/functions/inspection/detect-faces/README.md
https://graiphic.io/documentation/display-image/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/additional-windows/display-image/README.md
https://graiphic.io/documentation/divide/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/functions/operators/divide/README.md
https://graiphic.io/documentation/dropout-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/dropout-add-to-graph/README.md
https://graiphic.io/documentation/dropout/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/multi-output/dropout/README.md
https://graiphic.io/documentation/dynamicquantizelinear/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/multi-output/dynamicquantizelinear/README.md
https://graiphic.io/documentation/dynamicquantizelstm/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/multi-output/dynamicquantizelstm/README.md
https://graiphic.io/documentation/dynamictimewarping/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/dynamictimewarping/README.md
https://graiphic.io/documentation/edge-detection/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/functions/filters/edge-detection/README.md
https://graiphic.io/documentation/einsum/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/variadic-input/einsum/README.md
https://graiphic.io/documentation/elementary/exponential/exponential-arg-1/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/exponential-elementary/exponential-arg-1/README.md
https://graiphic.io/documentation/elementary/exponential/exponential/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/exponential-elementary/exponential/README.md
https://graiphic.io/documentation/elementary/exponential/logarithm-base-2-2/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/exponential-elementary/logarithm-base-2-2/README.md
https://graiphic.io/documentation/elementary/exponential/logarithm-base-2/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/exponential-elementary/logarithm-base-2/README.md
https://graiphic.io/documentation/elementary/exponential/logarithm-base-x/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/exponential-elementary/logarithm-base-x/README.md
https://graiphic.io/documentation/elementary/exponential/natural-logarithm-arg/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/exponential-elementary/natural-logarithm-arg/README.md
https://graiphic.io/documentation/elementary/exponential/natural-logarithm/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/exponential-elementary/natural-logarithm/README.md
https://graiphic.io/documentation/elementary/exponential/power-of-10/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/exponential-elementary/power-of-10/README.md
https://graiphic.io/documentation/elementary/exponential/power-of-2/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/exponential-elementary/power-of-2/README.md
https://graiphic.io/documentation/elementary/exponential/power-of-x/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/exponential-elementary/power-of-x/README.md
https://graiphic.io/documentation/elementary/exponential/resume/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/exponential-elementary/resume/README.md
https://graiphic.io/documentation/elementary/exponential/y-th-root-of-x/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/exponential-elementary/y-th-root-of-x/README.md
https://graiphic.io/documentation/elementary/trigonometric/cosecant/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/trigonometric-elementary/cosecant/README.md
https://graiphic.io/documentation/elementary/trigonometric/cosine/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/trigonometric-elementary/cosine/README.md
https://graiphic.io/documentation/elementary/trigonometric/inverse-cosecant/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/trigonometric-elementary/inverse-cosecant/README.md
https://graiphic.io/documentation/elementary/trigonometric/inverse-cosine/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/trigonometric-elementary/inverse-cosine/README.md
https://graiphic.io/documentation/elementary/trigonometric/inverse-cotangent/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/trigonometric-elementary/inverse-cotangent/README.md
https://graiphic.io/documentation/elementary/trigonometric/inverse-secant/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/trigonometric-elementary/inverse-secant/README.md
https://graiphic.io/documentation/elementary/trigonometric/inverse-sine/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/trigonometric-elementary/inverse-sine/README.md
https://graiphic.io/documentation/elementary/trigonometric/inverse-tangent-2/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/trigonometric-elementary/inverse-tangent-2/README.md
https://graiphic.io/documentation/elementary/trigonometric/inverse-tangent/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/trigonometric-elementary/inverse-tangent/README.md
https://graiphic.io/documentation/elementary/trigonometric/resume-trigonometric/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/trigonometric-elementary/resume-trigonometric/README.md
https://graiphic.io/documentation/elementary/trigonometric/secant/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/trigonometric-elementary/secant/README.md
https://graiphic.io/documentation/elementary/trigonometric/sinc/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/trigonometric-elementary/sinc/README.md
https://graiphic.io/documentation/elementary/trigonometric/sine-cosine/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/trigonometric-elementary/sine-cosine/README.md
https://graiphic.io/documentation/elementary/trigonometric/sine/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/trigonometric-elementary/sine/README.md
https://graiphic.io/documentation/elementary/trigonometric/tangent/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/trigonometric-elementary/tangent/README.md
https://graiphic.io/documentation/elu-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/elu-add-to-graph/README.md
https://graiphic.io/documentation/elu/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/activations/elu/README.md
https://graiphic.io/documentation/embedding-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-name/embedding-2/README.md
https://graiphic.io/documentation/embedding-3/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/format-weight/embedding-3/README.md
https://graiphic.io/documentation/embedding-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/embedding-add-to-graph/README.md
https://graiphic.io/documentation/embedding/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-index/embedding/README.md
https://graiphic.io/documentation/embedlayernormalization/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/multi-output/embedlayernormalization/README.md
https://graiphic.io/documentation/epcontext/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/variadic-input/epcontext/README.md
https://graiphic.io/documentation/erf/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/erf/README.md
https://graiphic.io/documentation/exec-academic-inference-mono-1d-5/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/academic/inference-academic/mono-academic/exec-academic-inference-mono-1d-5/README.md
https://graiphic.io/documentation/exec-academic-inference-multi-by-index-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/academic/train-forward/multi-forward-academic/exec-academic-inference-multi-by-index-2/README.md
https://graiphic.io/documentation/exec-academic-inference-multi-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/academic/inference-academic/multi/exec-academic-inference-multi-by-index/README.md
https://graiphic.io/documentation/exec-academic-inference-multi-by-name-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/academic/train-forward/multi-forward-academic/exec-academic-inference-multi-by-name-2/README.md
https://graiphic.io/documentation/exec-academic-inference-multi-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/academic/inference-academic/multi/exec-academic-inference-multi-by-name/README.md
https://graiphic.io/documentation/exec-academic-training-bw-mono-1d/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/academic/train-backward/mono/exec-academic-training-bw-mono-1d/README.md
https://graiphic.io/documentation/exec-academic-training-bw-mono-2d/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/academic/train-backward/mono/exec-academic-training-bw-mono-2d/README.md
https://graiphic.io/documentation/exec-academic-training-bw-mono-3d/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/academic/train-backward/mono/exec-academic-training-bw-mono-3d/README.md
https://graiphic.io/documentation/exec-academic-training-bw-mono-4d/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/academic/train-backward/mono/exec-academic-training-bw-mono-4d/README.md
https://graiphic.io/documentation/exec-academic-training-bw-mono-5d/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/academic/train-backward/mono/exec-academic-training-bw-mono-5d/README.md
https://graiphic.io/documentation/exec-academic-training-bw-mono-6d/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/academic/train-backward/mono/exec-academic-training-bw-mono-6d/README.md
https://graiphic.io/documentation/exec-academic-training-bw-mono-scalar/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/academic/train-backward/mono/exec-academic-training-bw-mono-scalar/README.md
https://graiphic.io/documentation/exec-academic-training-bw-multi-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/academic/train-backward/multi-train-backward/exec-academic-training-bw-multi-by-index/README.md
https://graiphic.io/documentation/exec-academic-training-bw-multi-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/academic/train-backward/multi-train-backward/exec-academic-training-bw-multi-by-name/README.md
https://graiphic.io/documentation/exec-academic-training-fw-mono-1d-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/academic/train-forward/mono-forward-academic/exec-academic-training-fw-mono-1d-2/README.md
https://graiphic.io/documentation/exec-academic-training-fw-mono-2d/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/academic/train-forward/mono-forward-academic/exec-academic-training-fw-mono-2d/README.md
https://graiphic.io/documentation/exec-academic-training-fw-mono-3d/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/academic/train-forward/mono-forward-academic/exec-academic-training-fw-mono-3d/README.md
https://graiphic.io/documentation/exec-academic-training-fw-mono-4d/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/academic/train-forward/mono-forward-academic/exec-academic-training-fw-mono-4d/README.md
https://graiphic.io/documentation/exec-academic-training-fw-mono-5d/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/academic/train-forward/mono-forward-academic/exec-academic-training-fw-mono-5d/README.md
https://graiphic.io/documentation/exec-academic-training-fw-mono-6d/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/academic/train-forward/mono-forward-academic/exec-academic-training-fw-mono-6d/README.md
https://graiphic.io/documentation/exec-academic-training-fw-mono-scalar-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/academic/train-forward/mono-forward-academic/exec-academic-training-fw-mono-scalar-2/README.md
https://graiphic.io/documentation/exec-inference-mono-1d/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/inference/mono/exec-inference-mono-1d/README.md
https://graiphic.io/documentation/exec-inference-mono-2d/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/academic/inference-academic/mono-academic/exec-inference-mono-2d/README.md
https://graiphic.io/documentation/exec-inference-mono-3d/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/academic/inference-academic/mono-academic/exec-inference-mono-3d/README.md
https://graiphic.io/documentation/exec-inference-mono-4d/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/academic/inference-academic/mono-academic/exec-inference-mono-4d/README.md
https://graiphic.io/documentation/exec-inference-mono-5d/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/academic/inference-academic/mono-academic/exec-inference-mono-5d/README.md
https://graiphic.io/documentation/exec-inference-mono-6d/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/academic/inference-academic/mono-academic/exec-inference-mono-6d/README.md
https://graiphic.io/documentation/exec-inference-mono-scalar/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/academic/inference-academic/mono-academic/exec-inference-mono-scalar/README.md
https://graiphic.io/documentation/exec-inference-multi-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/inference/multi/exec-inference-multi-by-index/README.md
https://graiphic.io/documentation/exec-inference-multi-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/inference/multi/exec-inference-multi-by-name/README.md
https://graiphic.io/documentation/exec-training-eval-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/training/eval/exec-training-eval-by-index/README.md
https://graiphic.io/documentation/exec-training-eval-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/training/eval/exec-training-eval-by-name/README.md
https://graiphic.io/documentation/exec-training-fit-fixed-learning-rate-by-index-3/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/training/fit/fixed-learning-rate-exec-dl/exec-training-fit-fixed-learning-rate-by-index-3/README.md
https://graiphic.io/documentation/exec-training-fit-fixed-learning-rate-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/training/fit/fixed-learning-rate-exec-dl/exec-training-fit-fixed-learning-rate-by-name/README.md
https://graiphic.io/documentation/exec-training-fit-learning-rate-scheduler-by-index-3/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/training/fit/learning-rate-scheduler-exec-dl/exec-training-fit-learning-rate-scheduler-by-index-3/README.md
https://graiphic.io/documentation/exec-training-fit-learning-rate-scheduler-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/training/fit/learning-rate-scheduler-exec-dl/exec-training-fit-learning-rate-scheduler-by-name/README.md
https://graiphic.io/documentation/exec-training-train-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/training/train/exec-training-train-by-index/README.md
https://graiphic.io/documentation/exec-training-train-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/exec/training/train/exec-training-train-by-name/README.md
https://graiphic.io/documentation/expand-2/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/image-modification/expand-2/README.md
https://graiphic.io/documentation/explicit-padding/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/more-deep-learning/layers-parameters/explicit-padding/README.md
https://graiphic.io/documentation/exponential-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/exponential-add-to-graph/README.md
https://graiphic.io/documentation/exponential/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/activations/exponential/README.md
https://graiphic.io/documentation/exponential/hyperbolic/hyperbolic-cosecant/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/hyperbolic-elementary/hyperbolic-cosecant/README.md
https://graiphic.io/documentation/exponential/hyperbolic/hyperbolic-cosine/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/hyperbolic-elementary/hyperbolic-cosine/README.md
https://graiphic.io/documentation/exponential/hyperbolic/hyperbolic-cotangent/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/hyperbolic-elementary/hyperbolic-cotangent/README.md
https://graiphic.io/documentation/exponential/hyperbolic/hyperbolic-secant/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/hyperbolic-elementary/hyperbolic-secant/README.md
https://graiphic.io/documentation/exponential/hyperbolic/hyperbolic-sine/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/hyperbolic-elementary/hyperbolic-sine/README.md
https://graiphic.io/documentation/exponential/hyperbolic/hyperbolic-tangent/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/hyperbolic-elementary/hyperbolic-tangent/README.md
https://graiphic.io/documentation/exponential/hyperbolic/inverse-hyperbolic-cosecant/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/hyperbolic-elementary/inverse-hyperbolic-cosecant/README.md
https://graiphic.io/documentation/exponential/hyperbolic/inverse-hyperbolic-cosine/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/hyperbolic-elementary/inverse-hyperbolic-cosine/README.md
https://graiphic.io/documentation/exponential/hyperbolic/inverse-hyperbolic-cotangent/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/hyperbolic-elementary/inverse-hyperbolic-cotangent/README.md
https://graiphic.io/documentation/exponential/hyperbolic/inverse-hyperbolic-secant/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/hyperbolic-elementary/inverse-hyperbolic-secant/README.md
https://graiphic.io/documentation/exponential/hyperbolic/inverse-hyperbolic-sine/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/hyperbolic-elementary/inverse-hyperbolic-sine/README.md
https://graiphic.io/documentation/exponential/hyperbolic/inverse-hyperbolic-tangent/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/hyperbolic-elementary/inverse-hyperbolic-tangent/README.md
https://graiphic.io/documentation/exponential/hyperbolic/resume-hyperbolic/;https://graiphic.github.io/Graiphic-documentation/#/cuda/elementary-cuda/hyperbolic-elementary/resume-hyperbolic/README.md
https://graiphic.io/documentation/exposure/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/functions/treatment/exposure/README.md
https://graiphic.io/documentation/extract-color-planes/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/pixel-editing/color/extract-color-planes/README.md
https://graiphic.io/documentation/extract-single-color-plane/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/pixel-editing/color/extract-single-color-plane/README.md
https://graiphic.io/documentation/extract/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/image-modification/extract/README.md
https://graiphic.io/documentation/eyelike/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/eyelike/README.md
https://graiphic.io/documentation/falsenegatives/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/metrics/falsenegatives/README.md
https://graiphic.io/documentation/falsepositives/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/metrics/falsepositives/README.md
https://graiphic.io/documentation/faq/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/general-computer-vision/faq/README.md
https://graiphic.io/documentation/file-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/create/training/file-2/README.md
https://graiphic.io/documentation/file-3/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/create/academic-training/file-3/README.md
https://graiphic.io/documentation/file/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/create/inference/file/README.md
https://graiphic.io/documentation/fill-hole/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/functions/form/fill-hole/README.md
https://graiphic.io/documentation/flatten-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/flatten-add-to-graph/README.md
https://graiphic.io/documentation/flatten/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/flatten/README.md
https://graiphic.io/documentation/flip/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/image-modification/flip/README.md
https://graiphic.io/documentation/float/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/parameters-nodes/initializer/float/README.md
https://graiphic.io/documentation/floor/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/floor/README.md
https://graiphic.io/documentation/function-academic-training-export-file/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/function/academic_training/function-academic-training-export-file/README.md
https://graiphic.io/documentation/function-academic-training-get-in-out-names/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/function/academic_training/function-academic-training-get-in-out-names/README.md
https://graiphic.io/documentation/function-academic-training-read-soft-update-weights/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/function/academic_training/function-academic-training-read-soft-update-weights/README.md
https://graiphic.io/documentation/function-academic-training-read-update-weights/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/function/academic_training/function-academic-training-read-update-weights/README.md
https://graiphic.io/documentation/function-academic-training-read-weights/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/function/academic_training/function-academic-training-read-weights/README.md
https://graiphic.io/documentation/function-academic-training-set-learning-rate/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/function/academic_training/function-academic-training-set-learning-rate/README.md
https://graiphic.io/documentation/function-academic-training-update-weights/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/function/academic_training/function-academic-training-update-weights/README.md
https://graiphic.io/documentation/function-training-export-file/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/function/training/function-training-export-file/README.md
https://graiphic.io/documentation/function-training-get-in-out-names/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/function/training/function-training-get-in-out-names/README.md
https://graiphic.io/documentation/function-training-read-weights/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/function/training/function-training-read-weights/README.md
https://graiphic.io/documentation/function-training-set-learning-rate/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/function/training/function-training-set-learning-rate/README.md
https://graiphic.io/documentation/function-training-set-linear-learning-rate-scheduler/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/function/training/function-training-set-linear-learning-rate-scheduler/README.md
https://graiphic.io/documentation/gaussian-blur/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/functions/filters/gaussian-blur/README.md
https://graiphic.io/documentation/gaussian-dropout-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/gaussian-dropout-add-to-graph/README.md
https://graiphic.io/documentation/gaussian-noise-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/gaussian-noise-add-to-graph/README.md
https://graiphic.io/documentation/gelu-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/gelu-add-to-graph/README.md
https://graiphic.io/documentation/gelu/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/activations/gelu/README.md
https://graiphic.io/documentation/gemmarotaryembedding/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/multi-output/gemmarotaryembedding/README.md
https://graiphic.io/documentation/general/beginners-guide/;https://graiphic.github.io/Graiphic-documentation/#/cuda/general-cuda/beginners-guide/README.md
https://graiphic.io/documentation/general/deployment/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/general/deployment/README.md
https://graiphic.io/documentation/general/examples-guide/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/general/examples-guide/README.md
https://graiphic.io/documentation/general/faq/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/general/faq/README.md
https://graiphic.io/documentation/general/introduction/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/general/introduction/README.md
https://graiphic.io/documentation/general/troubleshooting/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/general/troubleshooting/README.md
https://graiphic.io/documentation/generate-full-text/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/advanced-dl-runtime/llama/generate-full-text/README.md
https://graiphic.io/documentation/generate-streaming-text/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/advanced-dl-runtime/llama/generate-streaming-text/README.md
https://graiphic.io/documentation/geometry/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/pixel-editing/draw/geometry/README.md
https://graiphic.io/documentation/get-additive-attention-weights-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/index/get-additive-attention-weights-by-index/README.md
https://graiphic.io/documentation/get-additive-attention-weights-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/name/get-additive-attention-weights-by-name/README.md
https://graiphic.io/documentation/get-all-layer-params/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/layer-get-dl/parameters/get-all-layer-params/README.md
https://graiphic.io/documentation/get-all-lda-coeff/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/layer-get-dl/lda_coeff/get-all-lda-coeff/README.md
https://graiphic.io/documentation/get-all-train-status/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/layer-get-dl/training-status/get-all-train-status/README.md
https://graiphic.io/documentation/get-all-update-weights/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/weight-architecture-get/update-weight-get/get-all-update-weights/README.md
https://graiphic.io/documentation/get-all-weights-shape/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/weight-architecture-get/weight-shape-get/get-all-weights-shape/README.md
https://graiphic.io/documentation/get-all-weights/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/weight-architecture-get/read-weight-get/get-all-weights/README.md
https://graiphic.io/documentation/get-attention-weights-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/index/get-attention-weights-by-index/README.md
https://graiphic.io/documentation/get-attention-weights-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/name/get-attention-weights-by-name/README.md
https://graiphic.io/documentation/get-batch-norm-weights-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/index/get-batch-norm-weights-by-index/README.md
https://graiphic.io/documentation/get-batch-norm-weights-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/name/get-batch-norm-weights-by-name/README.md
https://graiphic.io/documentation/get-bidirectional-weights-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/index/get-bidirectional-weights-by-index/README.md
https://graiphic.io/documentation/get-bidirectional-weights-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/name/get-bidirectional-weights-by-name/README.md
https://graiphic.io/documentation/get-camera-modes/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/session/get-camera-modes/README.md
https://graiphic.io/documentation/get-color-pixel-line/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/pixel-editing/color/get-color-pixel-line/README.md
https://graiphic.io/documentation/get-color-pixel-value/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/pixel-editing/color/get-color-pixel-value/README.md
https://graiphic.io/documentation/get-conv-1d-transpose-weights-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/index/get-conv-1d-transpose-weights-by-index/README.md
https://graiphic.io/documentation/get-conv-1d-transpose-weights-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/name/get-conv-1d-transpose-weights-by-name/README.md
https://graiphic.io/documentation/get-conv-1d-weights-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/index/get-conv-1d-weights-by-index/README.md
https://graiphic.io/documentation/get-conv-1d-weights-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/name/get-conv-1d-weights-by-name/README.md
https://graiphic.io/documentation/get-conv-2d-transpose-weights-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/index/get-conv-2d-transpose-weights-by-index/README.md
https://graiphic.io/documentation/get-conv-2d-transpose-weights-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/name/get-conv-2d-transpose-weights-by-name/README.md
https://graiphic.io/documentation/get-conv-2d-weights-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/index/get-conv-2d-weights-by-index/README.md
https://graiphic.io/documentation/get-conv-2d-weights-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/name/get-conv-2d-weights-by-name/README.md
https://graiphic.io/documentation/get-conv-3d-transpose-weights-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/index/get-conv-3d-transpose-weights-by-index/README.md
https://graiphic.io/documentation/get-conv-3d-transpose-weights-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/name/get-conv-3d-transpose-weights-by-name/README.md
https://graiphic.io/documentation/get-conv-3d-weights-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/index/get-conv-3d-weights-by-index/README.md
https://graiphic.io/documentation/get-conv-3d-weights-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/name/get-conv-3d-weights-by-name/README.md
https://graiphic.io/documentation/get-conv-lstm-1d-weights-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/index/get-conv-lstm-1d-weights-by-index/README.md
https://graiphic.io/documentation/get-conv-lstm-1d-weights-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/name/get-conv-lstm-1d-weights-by-name/README.md
https://graiphic.io/documentation/get-conv-lstm-2d-weights-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/index/get-conv-lstm-2d-weights-by-index/README.md
https://graiphic.io/documentation/get-conv-lstm-2d-weights-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/name/get-conv-lstm-2d-weights-by-name/README.md
https://graiphic.io/documentation/get-conv-lstm-3d-weights-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/index/get-conv-lstm-3d-weights-by-index/README.md
https://graiphic.io/documentation/get-conv-lstm-3d-weights-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/name/get-conv-lstm-3d-weights-by-name/README.md
https://graiphic.io/documentation/get-dense-weights-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/index/get-dense-weights-by-index/README.md
https://graiphic.io/documentation/get-dense-weights-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/name/get-dense-weights-by-name/README.md
https://graiphic.io/documentation/get-depthwise-conv-2d-weights-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/index/get-depthwise-conv-2d-weights-by-index/README.md
https://graiphic.io/documentation/get-depthwise-conv-2d-weights-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/name/get-depthwise-conv-2d-weights-by-name/README.md
https://graiphic.io/documentation/get-embedding-weights-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/index/get-embedding-weights-by-index/README.md
https://graiphic.io/documentation/get-embedding-weights-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/name/get-embedding-weights-by-name/README.md
https://graiphic.io/documentation/get-file-info/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/files/get-file-info/README.md
https://graiphic.io/documentation/get-gru-weights-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/index/get-gru-weights-by-index/README.md
https://graiphic.io/documentation/get-gru-weights-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/name/get-gru-weights-by-name/README.md
https://graiphic.io/documentation/get-image-info/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/image-manipulation/get-image-info/README.md
https://graiphic.io/documentation/get-image-size/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/image-manipulation/get-image-size/README.md
https://graiphic.io/documentation/get-kernel/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/functions/filters/get-kernel/README.md
https://graiphic.io/documentation/get-layer-norm-weights-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/index/get-layer-norm-weights-by-index/README.md
https://graiphic.io/documentation/get-layer-norm-weights-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/name/get-layer-norm-weights-by-name/README.md
https://graiphic.io/documentation/get-layer-params-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/layer-get-dl/parameters/get-layer-params-by-index/README.md
https://graiphic.io/documentation/get-layer-params-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/layer-get-dl/parameters/get-layer-params-by-name/README.md
https://graiphic.io/documentation/get-lda-coeff-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/layer-get-dl/lda_coeff/get-lda-coeff-by-index/README.md
https://graiphic.io/documentation/get-lda-coeff-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/layer-get-dl/lda_coeff/get-lda-coeff-by-name/README.md
https://graiphic.io/documentation/get-lstm-weights-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/index/get-lstm-weights-by-index/README.md
https://graiphic.io/documentation/get-lstm-weights-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/name/get-lstm-weights-by-name/README.md
https://graiphic.io/documentation/get-multi-head-attention-weights-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/index/get-multi-head-attention-weights-by-index/README.md
https://graiphic.io/documentation/get-multi-head-attention-weights-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/name/get-multi-head-attention-weights-by-name/README.md
https://graiphic.io/documentation/get-pixel-line/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/pixel-editing/grayscale/get-pixel-line/README.md
https://graiphic.io/documentation/get-pixel-value/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/pixel-editing/grayscale/get-pixel-value/README.md
https://graiphic.io/documentation/get-prelu-2d-weights-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/index/get-prelu-2d-weights-by-index/README.md
https://graiphic.io/documentation/get-prelu-2d-weights-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/name/get-prelu-2d-weights-by-name/README.md
https://graiphic.io/documentation/get-prelu-3d-weights-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/index/get-prelu-3d-weights-by-index/README.md
https://graiphic.io/documentation/get-prelu-3d-weights-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/name/get-prelu-3d-weights-by-name/README.md
https://graiphic.io/documentation/get-prelu-4d-weights-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/index/get-prelu-4d-weights-by-index/README.md
https://graiphic.io/documentation/get-prelu-4d-weights-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/name/get-prelu-4d-weights-by-name/README.md
https://graiphic.io/documentation/get-prelu-5d-weights-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/index/get-prelu-5d-weights-by-index/README.md
https://graiphic.io/documentation/get-prelu-5d-weights-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/name/get-prelu-5d-weights-by-name/README.md
https://graiphic.io/documentation/get-rnn-gru-weights-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/index/get-rnn-gru-weights-by-index/README.md
https://graiphic.io/documentation/get-rnn-gru-weights-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/name/get-rnn-gru-weights-by-name/README.md
https://graiphic.io/documentation/get-rnn-lstm-weights-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/index/get-rnn-lstm-weights-by-index/README.md
https://graiphic.io/documentation/get-rnn-lstm-weights-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/name/get-rnn-lstm-weights-by-name/README.md
https://graiphic.io/documentation/get-rnn-simple-rnn-weights-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/index/get-rnn-simple-rnn-weights-by-index/README.md
https://graiphic.io/documentation/get-rnn-simple-rnn-weights-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/name/get-rnn-simple-rnn-weights-by-name/README.md
https://graiphic.io/documentation/get-separable-conv-1d-weights-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/index/get-separable-conv-1d-weights-by-index/README.md
https://graiphic.io/documentation/get-separable-conv-1d-weights-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/name/get-separable-conv-1d-weights-by-name/README.md
https://graiphic.io/documentation/get-separable-conv-2d-weights-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/index/get-separable-conv-2d-weights-by-index/README.md
https://graiphic.io/documentation/get-separable-conv-2d-weights-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/name/get-separable-conv-2d-weights-by-name/README.md
https://graiphic.io/documentation/get-session-parameters/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/session/get-session-parameters/README.md
https://graiphic.io/documentation/get-simple-rnn-weights-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/index/get-simple-rnn-weights-by-index/README.md
https://graiphic.io/documentation/get-simple-rnn-weights-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/get-weight/name/get-simple-rnn-weights-by-name/README.md
https://graiphic.io/documentation/get-text-size/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/pixel-editing/draw/get-text-size/README.md
https://graiphic.io/documentation/get-train-status-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/layer-get-dl/training-status/get-train-status-by-index/README.md
https://graiphic.io/documentation/get-train-status-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/layer-get-dl/training-status/get-train-status-by-name/README.md
https://graiphic.io/documentation/get-update-weights-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/weight-architecture-get/update-weight-get/get-update-weights-by-index/README.md
https://graiphic.io/documentation/get-update-weights-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/weight-architecture-get/update-weight-get/get-update-weights-by-name/README.md
https://graiphic.io/documentation/get-video-info/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/session/get-video-info/README.md
https://graiphic.io/documentation/get-weights-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/weight-architecture-get/read-weight-get/get-weights-by-index/README.md
https://graiphic.io/documentation/get-weights-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/weight-architecture-get/read-weight-get/get-weights-by-name/README.md
https://graiphic.io/documentation/get-weights-shape-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/weight-architecture-get/weight-shape-get/get-weights-shape-by-index/README.md
https://graiphic.io/documentation/get-weights-shape-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/weight-architecture-get/weight-shape-get/get-weights-shape-by-name/README.md
https://graiphic.io/documentation/global-avg-pool-1d-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/global-avg-pool-1d-add-to-graph/README.md
https://graiphic.io/documentation/global-avg-pool-2d-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/global-avg-pool-2d-add-to-graph/README.md
https://graiphic.io/documentation/global-avg-pool-3d-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/global-avg-pool-3d-add-to-graph/README.md
https://graiphic.io/documentation/global-max-pool-1d-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/global-max-pool-1d-add-to-graph/README.md
https://graiphic.io/documentation/global-max-pool-2d-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/global-max-pool-2d-add-to-graph/README.md
https://graiphic.io/documentation/global-max-pool-3d-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/global-max-pool-3d-add-to-graph/README.md
https://graiphic.io/documentation/globalaveragepool/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/globalaveragepool/README.md
https://graiphic.io/documentation/globallppool/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/globallppool/README.md
https://graiphic.io/documentation/globalmaxpool/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/globalmaxpool/README.md
https://graiphic.io/documentation/glorotnormal/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/initializers/glorotnormal/README.md
https://graiphic.io/documentation/glorotuniform/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/initializers/glorotuniform/README.md
https://graiphic.io/documentation/gpu/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/model/gpu/README.md
https://graiphic.io/documentation/gridsample/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/mono-output/gridsample/README.md
https://graiphic.io/documentation/group-rois/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/region-of-interest/group-rois/README.md
https://graiphic.io/documentation/groupnorm/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/mono-output/groupnorm/README.md
https://graiphic.io/documentation/groupqueryattention/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/multi-output/groupqueryattention/README.md
https://graiphic.io/documentation/gru-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-name/gru-2/README.md
https://graiphic.io/documentation/gru-3/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/cells/gru-3/README.md
https://graiphic.io/documentation/gru-4/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/format-weight/gru-4/README.md
https://graiphic.io/documentation/gru-5/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/multi-output/gru-5/README.md
https://graiphic.io/documentation/gru-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/gru-add-to-graph/README.md
https://graiphic.io/documentation/gru/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-index/gru/README.md
https://graiphic.io/documentation/h5-to-onnx/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/graph-function/file-graph-function-dl/convert-graph-function/h5-to-onnx/README.md
https://graiphic.io/documentation/hammingwindow/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/hammingwindow/README.md
https://graiphic.io/documentation/hannwindow/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/hannwindow/README.md
https://graiphic.io/documentation/hard-sigmoid-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/hard-sigmoid-add-to-graph/README.md
https://graiphic.io/documentation/hardmax/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/hardmax/README.md
https://graiphic.io/documentation/hardsigmoid/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/activations/hardsigmoid/README.md
https://graiphic.io/documentation/hardswish/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/hardswish/README.md
https://graiphic.io/documentation/hardware-compatibility/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/general/hardware-compatibility/README.md
https://graiphic.io/documentation/henormal/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/initializers/henormal/README.md
https://graiphic.io/documentation/heuniform/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/initializers/heuniform/README.md
https://graiphic.io/documentation/hinge-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/metrics/hinge-2/README.md
https://graiphic.io/documentation/hinge/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/losses/hinge/README.md
https://graiphic.io/documentation/histogram/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/functions/inspection/histogram/README.md
https://graiphic.io/documentation/histograph/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/functions/inspection/histograph/README.md
https://graiphic.io/documentation/huber-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/metrics/huber-2/README.md
https://graiphic.io/documentation/huber/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/losses/huber/README.md
https://graiphic.io/documentation/hue/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/functions/treatment/hue/README.md
https://graiphic.io/documentation/i16-array-to-image/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/pixel-editing/grayscale/i16-array-to-image/README.md
https://graiphic.io/documentation/identity/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/initializers/identity/README.md
https://graiphic.io/documentation/if/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/structure/if/README.md
https://graiphic.io/documentation/image-roi-to-display-roi/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/region-of-interest/image-roi-to-display-roi/README.md
https://graiphic.io/documentation/image-to-array/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/pixel-editing/grayscale/image-to-array/README.md
https://graiphic.io/documentation/image-to-clipboard/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/image-modification/image-to-clipboard/README.md
https://graiphic.io/documentation/image-to-picture/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/image-manipulation/image-to-picture/README.md
https://graiphic.io/documentation/image-to-u8-array/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/pixel-editing/grayscale/image-to-u8-array/README.md
https://graiphic.io/documentation/imagedecoder/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/imagedecoder/README.md
https://graiphic.io/documentation/individual-by-index-8/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/set-deep-learning/weight-set-dl/write/individual-by-index-8/README.md
https://graiphic.io/documentation/individual-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/label/individual-by-index/README.md
https://graiphic.io/documentation/individual-by-name-8/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/set-deep-learning/weight-set-dl/write/individual-by-name-8/README.md
https://graiphic.io/documentation/individual-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/label/individual-by-name/README.md
https://graiphic.io/documentation/init/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/asynchronous_fit/streaming/init/README.md
https://graiphic.io/documentation/initializer/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/more-deep-learning/layers-parameters/initializer/README.md
https://graiphic.io/documentation/input-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/input-add-to-graph/README.md
https://graiphic.io/documentation/input-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/shape/layer-shape-get/input-by-index/README.md
https://graiphic.io/documentation/input-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/shape/layer-shape-get/input-by-name/README.md
https://graiphic.io/documentation/input-forward-1d-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/input-deep-leaning/forward-deep-learning/input-forward-1d-by-index/README.md
https://graiphic.io/documentation/input-forward-1d-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/input-deep-leaning/forward-deep-learning/input-forward-1d-by-name/README.md
https://graiphic.io/documentation/input-forward-2d-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/input-deep-leaning/forward-deep-learning/input-forward-2d-by-index/README.md
https://graiphic.io/documentation/input-forward-2d-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/input-deep-leaning/forward-deep-learning/input-forward-2d-by-name/README.md
https://graiphic.io/documentation/input-forward-3d-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/input-deep-leaning/forward-deep-learning/input-forward-3d-by-index/README.md
https://graiphic.io/documentation/input-forward-3d-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/input-deep-leaning/forward-deep-learning/input-forward-3d-by-name/README.md
https://graiphic.io/documentation/input-forward-4d-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/input-deep-leaning/forward-deep-learning/input-forward-4d-by-index/README.md
https://graiphic.io/documentation/input-forward-4d-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/input-deep-leaning/forward-deep-learning/input-forward-4d-by-name/README.md
https://graiphic.io/documentation/input-forward-5d-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/input-deep-leaning/forward-deep-learning/input-forward-5d-by-index/README.md
https://graiphic.io/documentation/input-forward-5d-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/input-deep-leaning/forward-deep-learning/input-forward-5d-by-name/README.md
https://graiphic.io/documentation/input-forward-6d-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/input-deep-leaning/forward-deep-learning/input-forward-6d-by-index/README.md
https://graiphic.io/documentation/input-forward-6d-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/input-deep-leaning/forward-deep-learning/input-forward-6d-by-name/README.md
https://graiphic.io/documentation/input-forward-scalar-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/input-deep-leaning/forward-deep-learning/input-forward-scalar-by-index/README.md
https://graiphic.io/documentation/input-forward-scalar-by-name/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/input-deep-leaning/forward-deep-learning/input-forward-scalar-by-name/README.md
https://graiphic.io/documentation/input-loss-1d-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/input-deep-leaning/loss-deep-learning/input-loss-1d-by-index/README.md
https://graiphic.io/documentation/input-loss-2d-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/input-deep-leaning/loss-deep-learning/input-loss-2d-by-index/README.md
https://graiphic.io/documentation/input-loss-3d-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/input-deep-leaning/loss-deep-learning/input-loss-3d-by-index/README.md
https://graiphic.io/documentation/input-loss-4d-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/input-deep-leaning/loss-deep-learning/input-loss-4d-by-index/README.md
https://graiphic.io/documentation/input-loss-5d-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/input-deep-leaning/loss-deep-learning/input-loss-5d-by-index/README.md
https://graiphic.io/documentation/input-loss-6d-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/input-deep-leaning/loss-deep-learning/input-loss-6d-by-index/README.md
https://graiphic.io/documentation/input-loss-scalar-by-index/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/input-deep-leaning/loss-deep-learning/input-loss-scalar-by-index/README.md
https://graiphic.io/documentation/input/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/input/README.md
https://graiphic.io/documentation/insert-image/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/image-modification/insert-image/README.md
https://graiphic.io/documentation/insert-roi-images/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/region-of-interest/insert-roi-images/README.md
https://graiphic.io/documentation/instancenormalization/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/mono-output/instancenormalization/README.md
https://graiphic.io/documentation/int64/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/parameters-nodes/initializer/int64/README.md
https://graiphic.io/documentation/int8/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/parameters-nodes/initializer/int8/README.md
https://graiphic.io/documentation/introduction-sota/;https://graiphic.github.io/Graiphic-documentation/#/sota/general-sota/introduction-sota/README.md
https://graiphic.io/documentation/introduction/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/general-computer-vision/introduction/README.md
https://graiphic.io/documentation/inverse-2/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/functions/treatment/inverse-2/README.md
https://graiphic.io/documentation/inverse/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/inverse/README.md
https://graiphic.io/documentation/iou/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/metrics/iou/README.md
https://graiphic.io/documentation/jpeg-file/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/set-deep-learning/weight-set-dl/write/jpeg-file/README.md
https://graiphic.io/documentation/jpeg2000-file/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/set-deep-learning/weight-set-dl/write/jpeg2000-file/README.md
https://graiphic.io/documentation/keep_aspect_ratio_policy/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/more-deep-learning/nodes-parameters/keep_aspect_ratio_policy/README.md
https://graiphic.io/documentation/keras-to-onnx/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/graph-function/file-graph-function-dl/convert-graph-function/keras-to-onnx/README.md
https://graiphic.io/documentation/kldivergence-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/metrics/kldivergence-2/README.md
https://graiphic.io/documentation/kldivergence/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/losses/kldivergence/README.md
https://graiphic.io/documentation/l1/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/regularizers/l1/README.md
https://graiphic.io/documentation/l1l2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/regularizers/l1l2/README.md
https://graiphic.io/documentation/l2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/regularizers/l2/README.md
https://graiphic.io/documentation/layer-norm-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/layer-norm-add-to-graph/README.md
https://graiphic.io/documentation/layernormalization-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-name/layernormalization-2/README.md
https://graiphic.io/documentation/layernormalization-3/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/format-weight/layernormalization-3/README.md
https://graiphic.io/documentation/layernormalization-4/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/multi-output/layernormalization-4/README.md
https://graiphic.io/documentation/layernormalization/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-index/layernormalization/README.md
https://graiphic.io/documentation/lazy-reset-grad-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/advanced-dl-runtime/exec-raw-data-advanced-runtime/training-advanced-runtime-dl/lazy-reset-grad-2/README.md
https://graiphic.io/documentation/lazy-reset-grad/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/advanced-dl-runtime/exec-raw-data-advanced-runtime/academic-train/lazy-reset-grad/README.md
https://graiphic.io/documentation/leaky-relu-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/leaky-relu-add-to-graph/README.md
https://graiphic.io/documentation/leakyrelu/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/activations/leakyrelu/README.md
https://graiphic.io/documentation/lecunnormal/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/initializers/lecunnormal/README.md
https://graiphic.io/documentation/lecununiform/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/initializers/lecununiform/README.md
https://graiphic.io/documentation/less/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/mono-output/less/README.md
https://graiphic.io/documentation/lessorequal/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/mono-output/lessorequal/README.md
https://graiphic.io/documentation/licensing/;https://graiphic.github.io/Graiphic-documentation/#/sota/general-sota/licensing/README.md
https://graiphic.io/documentation/line-profile/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/functions/inspection/line-profile/README.md
https://graiphic.io/documentation/linear-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/linear-add-to-graph/README.md
https://graiphic.io/documentation/linear/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/activations/linear/README.md
https://graiphic.io/documentation/load-onnx-file/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/graph-function/file-graph-function-dl/load-onnx-file/README.md
https://graiphic.io/documentation/local-threshold/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/functions/treatment/local-threshold/README.md
https://graiphic.io/documentation/log/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/log/README.md
https://graiphic.io/documentation/logcosh/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/losses/logcosh/README.md
https://graiphic.io/documentation/logcosherror/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/metrics/logcosherror/README.md
https://graiphic.io/documentation/logdiff/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/functions/operators/logdiff/README.md
https://graiphic.io/documentation/logsoftmax/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/logsoftmax/README.md
https://graiphic.io/documentation/longformerattention/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/mono-output/longformerattention/README.md
https://graiphic.io/documentation/loop/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/structure/loop/README.md
https://graiphic.io/documentation/lpnormalization/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/lpnormalization/README.md
https://graiphic.io/documentation/lppool/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/lppool/README.md
https://graiphic.io/documentation/lrfft/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/lrfft/README.md
https://graiphic.io/documentation/lrn/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/lrn/README.md
https://graiphic.io/documentation/lslnf/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/lslnf/README.md
https://graiphic.io/documentation/lsnan/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/lsnan/README.md
https://graiphic.io/documentation/lstm-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-name/lstm-2/README.md
https://graiphic.io/documentation/lstm-3/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/cells/lstm-3/README.md
https://graiphic.io/documentation/lstm-4/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/format-weight/lstm-4/README.md
https://graiphic.io/documentation/lstm-5/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/multi-output/lstm-5/README.md
https://graiphic.io/documentation/lstm-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/lstm-add-to-graph/README.md
https://graiphic.io/documentation/lstm/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-index/lstm/README.md
https://graiphic.io/documentation/magic-wand/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/functions/treatment/magic-wand/README.md
https://graiphic.io/documentation/mask-to-roi/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/region-of-interest/mask-to-roi/README.md
https://graiphic.io/documentation/mask/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/functions/operators/mask/README.md
https://graiphic.io/documentation/match-template/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/functions/pattern/match-template/README.md
https://graiphic.io/documentation/matmul/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/mono-output/matmul/README.md
https://graiphic.io/documentation/matmulbnb4/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/mono-output/matmulbnb4/README.md
https://graiphic.io/documentation/matmulfpq4/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/mono-output/matmulfpq4/README.md
https://graiphic.io/documentation/matmulinteger/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/mono-output/matmulinteger/README.md
https://graiphic.io/documentation/matmulinteger16/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/mono-output/matmulinteger16/README.md
https://graiphic.io/documentation/matmulintergertofloat/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/mono-output/matmulintergertofloat/README.md
https://graiphic.io/documentation/matmulnbits/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/mono-output/matmulnbits/README.md
https://graiphic.io/documentation/max-pool-1d-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/max-pool-1d-add-to-graph/README.md
https://graiphic.io/documentation/max-pool-2d-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/max-pool-2d-add-to-graph/README.md
https://graiphic.io/documentation/max-pool-3d-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/max-pool-3d-add-to-graph/README.md
https://graiphic.io/documentation/max/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/variadic-input/max/README.md
https://graiphic.io/documentation/maxpool/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/multi-output-nodes-dl/maxpool/README.md
https://graiphic.io/documentation/maxpoolwithmask/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/mono-output/maxpoolwithmask/README.md
https://graiphic.io/documentation/maxroipool/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/mono-output/maxroipool/README.md
https://graiphic.io/documentation/maxunpool/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/mono-output/maxunpool/README.md
https://graiphic.io/documentation/mean-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/variadic-input/mean-2/README.md
https://graiphic.io/documentation/mean/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/metrics/mean/README.md
https://graiphic.io/documentation/meanabsoluteerror-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/metrics/meanabsoluteerror-2/README.md
https://graiphic.io/documentation/meanabsoluteerror/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/losses/meanabsoluteerror/README.md
https://graiphic.io/documentation/meanabsolutepercentageerror-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/metrics/meanabsolutepercentageerror-2/README.md
https://graiphic.io/documentation/meanabsolutepercentageerror/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/losses/meanabsolutepercentageerror/README.md
https://graiphic.io/documentation/meaniou/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/metrics/meaniou/README.md
https://graiphic.io/documentation/meanrelativeerror/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/metrics/meanrelativeerror/README.md
https://graiphic.io/documentation/meansquarederror-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/metrics/meansquarederror-2/README.md
https://graiphic.io/documentation/meansquarederror/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/losses/meansquarederror/README.md
https://graiphic.io/documentation/meansquaredlogarithmicerror-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/metrics/meansquaredlogarithmicerror-2/README.md
https://graiphic.io/documentation/meansquaredlogarithmicerror/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/define-deep-learning-architecture/losses/meansquaredlogarithmicerror/README.md
https://graiphic.io/documentation/meantensor/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/metrics/meantensor/README.md
https://graiphic.io/documentation/meanvariancenormalization/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/meanvariancenormalization/README.md
https://graiphic.io/documentation/melweightmatrix/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/mono-output/melweightmatrix/README.md
https://graiphic.io/documentation/memory-control/copy-tensor-2/;https://graiphic.github.io/Graiphic-documentation/#/cuda/memory-control/copy-tensor-2/README.md
https://graiphic.io/documentation/memory-control/create-tensor-host-to-device/;https://graiphic.github.io/Graiphic-documentation/#/cuda/memory-control/create-tensor-host-to-device/README.md
https://graiphic.io/documentation/memory-control/create-tensor/;https://graiphic.github.io/Graiphic-documentation/#/cuda/memory-control/create-tensor/README.md
https://graiphic.io/documentation/memory-control/device-to-device/;https://graiphic.github.io/Graiphic-documentation/#/cuda/memory-control/device-to-device/README.md
https://graiphic.io/documentation/memory-control/device-to-host-free/;https://graiphic.github.io/Graiphic-documentation/#/cuda/memory-control/device-to-host-free/README.md
https://graiphic.io/documentation/memory-control/device-to-host/;https://graiphic.github.io/Graiphic-documentation/#/cuda/memory-control/device-to-host/README.md
https://graiphic.io/documentation/memory-control/free-memory/;https://graiphic.github.io/Graiphic-documentation/#/cuda/memory-control/free-memory/README.md
https://graiphic.io/documentation/memory-control/get-tensor-information/;https://graiphic.github.io/Graiphic-documentation/#/cuda/memory-control/get-tensor-information/README.md
https://graiphic.io/documentation/memory-control/host-to-device/;https://graiphic.github.io/Graiphic-documentation/#/cuda/memory-control/host-to-device/README.md
https://graiphic.io/documentation/memory-control/reset-device/;https://graiphic.github.io/Graiphic-documentation/#/cuda/memory-control/reset-device/README.md
https://graiphic.io/documentation/memory-control/resume/;https://graiphic.github.io/Graiphic-documentation/#/cuda/memory-control/resume/README.md
https://graiphic.io/documentation/memory-control/set-device/;https://graiphic.github.io/Graiphic-documentation/#/cuda/memory-control/set-device/README.md
https://graiphic.io/documentation/memory-control/set-tensor/;https://graiphic.github.io/Graiphic-documentation/#/cuda/memory-control/set-tensor/README.md
https://graiphic.io/documentation/merge/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/graph-function/graph-deep-learning/merge/README.md
https://graiphic.io/documentation/merge_mode/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/more-deep-learning/layers-parameters/merge_mode/README.md
https://graiphic.io/documentation/microsoftdequantizelinear/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/mono-output/microsoftdequantizelinear/README.md
https://graiphic.io/documentation/microsoftgathernd/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/mono-output/microsoftgathernd/README.md
https://graiphic.io/documentation/microsoftgelu/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/microsoftgelu/README.md
https://graiphic.io/documentation/microsoftgridsample/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/mono-output/microsoftgridsample/README.md
https://graiphic.io/documentation/microsoftmultiheadattention/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/multi-output/microsoftmultiheadattention/README.md
https://graiphic.io/documentation/microsoftpad/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/mono-output/microsoftpad/README.md
https://graiphic.io/documentation/microsoftqlinearconv/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/mono-output/microsoftqlinearconv/README.md
https://graiphic.io/documentation/microsoftquantizelinear/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/mono-output/microsoftquantizelinear/README.md
https://graiphic.io/documentation/microsoftrange/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/mono-output/microsoftrange/README.md
https://graiphic.io/documentation/microsofttrilu/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/mono-output/microsofttrilu/README.md
https://graiphic.io/documentation/microsoftunique/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/multi-output-nodes-dl/microsoftunique/README.md
https://graiphic.io/documentation/min/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/variadic-input/min/README.md
https://graiphic.io/documentation/mish/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/mish/README.md
https://graiphic.io/documentation/mod/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/mono-output/mod/README.md
https://graiphic.io/documentation/model-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/create/training/model-2/README.md
https://graiphic.io/documentation/model-3/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/create/academic-training/model-3/README.md
https://graiphic.io/documentation/model/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/runtime/create/inference/model/README.md
https://graiphic.io/documentation/moe/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/mono-output/moe/README.md
https://graiphic.io/documentation/morphology/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/functions/form/morphology/README.md
https://graiphic.io/documentation/move-window/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/tools/additional-windows/move-window/README.md
https://graiphic.io/documentation/mul/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/mono-output/mul/README.md
https://graiphic.io/documentation/mulinteger/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/mono-output/mulinteger/README.md
https://graiphic.io/documentation/multi-head-attention-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/multi-head-attention-add-to-graph/README.md
https://graiphic.io/documentation/multi-threshold/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/functions/treatment/multi-threshold/README.md
https://graiphic.io/documentation/multiheadattention-2/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-index/multiheadattention-2/README.md
https://graiphic.io/documentation/multiheadattention-3/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/format-weight/multiheadattention-3/README.md
https://graiphic.io/documentation/multiheadattention/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-name/multiheadattention/README.md
https://graiphic.io/documentation/multinomial/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/multinomial/README.md
https://graiphic.io/documentation/multiply-add-to-graph/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/layers/multiply-add-to-graph/README.md
https://graiphic.io/documentation/multiply/;https://graiphic.github.io/Graiphic-documentation/#/computer-vision/functions/operators/multiply/README.md
https://graiphic.io/documentation/murmurhash3/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/murmurhash3/README.md
https://graiphic.io/documentation/mutiheadattention/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/advanced/add-weight/deep-learning-input-index/mutiheadattention/README.md
https://graiphic.io/documentation/name-3/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/get-set/get-deep-learning/model/name-3/README.md
https://graiphic.io/documentation/neg/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/neg/README.md
https://graiphic.io/documentation/negativeloglikelihoodloss/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/mono-output/negativeloglikelihoodloss/README.md
https://graiphic.io/documentation/netron-summary/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/graph-function/netron-summary/README.md
https://graiphic.io/documentation/ngramrepeatblock/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/mono-output/ngramrepeatblock/README.md
https://graiphic.io/documentation/nhwcconv/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/mono-output/nhwcconv/README.md
https://graiphic.io/documentation/nhwcfusedconv/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/multi-input-dl/mono-output/nhwcfusedconv/README.md
https://graiphic.io/documentation/nhwcmaxpool/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/nhwcmaxpool/README.md
https://graiphic.io/documentation/node-elu/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/activation/node-elu/README.md
https://graiphic.io/documentation/node-exp/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/node-exp/README.md
https://graiphic.io/documentation/node-gelu/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/activation/node-gelu/README.md
https://graiphic.io/documentation/node-hard-sigmoid/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/activation/node-hard-sigmoid/README.md
https://graiphic.io/documentation/node-identity/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/mono_input/mono_output/node-identity/README.md
https://graiphic.io/documentation/node-leaky-relu/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/activation/node-leaky-relu/README.md
https://graiphic.io/documentation/node-relu/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/activation/node-relu/README.md
https://graiphic.io/documentation/node-selu/;https://graiphic.github.io/Graiphic-documentation/#/deep-learning/architecture/nodes/nodes/activation/node-selu/README.md