-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathproj_stats.csv
We can't make this file beautiful and searchable because it's too large.
3769 lines (3769 loc) · 616 KB
/
proj_stats.csv
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
proj,files,totalLines,commentLines,blankLines,lineOfCodes,class,property,method,functions,operator,size(bytes),size
G:\GCModeller\src\runtime\sciBASIC#\CLI_tools\rundll32\rundll32.vbproj,rundll32\Program.vb,106,3,17,86,1,0,0,3,0,4505,4.50 KB
G:\GCModeller\src\runtime\sciBASIC#\CLI_tools\rundll32\rundll32.vbproj,<project>,106,3,17,86,1,0,0,3,0,4505,4.50 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\BinaryData\binarydata-netcore5.vbproj,BinaryData\BufferRegion.vb,50,15,8,27,1,4,3,1,0,1208,1.21 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\BinaryData\binarydata-netcore5.vbproj,BinaryData\ByteBuffer.vb,358,35,40,283,1,0,7,44,0,11562,11.56 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\BinaryData\binarydata-netcore5.vbproj,BinaryData\ByteOrder\ByteOrder.vb,20,11,4,5,1,0,0,0,0,484,484 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\BinaryData\binarydata-netcore5.vbproj,BinaryData\ByteOrder\ByteOrderHelper.vb,61,9,8,44,1,1,1,4,0,2098,2.10 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\BinaryData\binarydata-netcore5.vbproj,BinaryData\ByteOrder\NetworkByteOrderBitConvertor.vb,282,80,28,174,1,0,1,21,0,10936,10.94 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\BinaryData\binarydata-netcore5.vbproj,BinaryData\Bzip2\BZip2InputStream.vb,236,43,44,149,1,5,6,4,0,9599,9.60 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\BinaryData\binarydata-netcore5.vbproj,BinaryData\Bzip2\BZip2OutputStream.vb,196,31,33,132,1,5,9,2,0,8161,8.16 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\BinaryData\binarydata-netcore5.vbproj,BinaryData\Bzip2\Algorithm\BZip2BitInputStream.vb,104,27,18,59,1,0,1,4,0,4001,4.00 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\BinaryData\binarydata-netcore5.vbproj,BinaryData\Bzip2\Algorithm\BZip2BitOutputStream.vb,108,42,19,47,1,0,6,0,0,3735,3.73 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\BinaryData\binarydata-netcore5.vbproj,BinaryData\Bzip2\Algorithm\BZip2BlockCompressor.vb,265,76,49,140,1,2,4,2,0,10234,10.23 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\BinaryData\binarydata-netcore5.vbproj,BinaryData\Bzip2\Algorithm\BZip2BlockDecompressor.vb,403,131,84,188,1,0,3,5,0,19830,19.83 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\BinaryData\binarydata-netcore5.vbproj,BinaryData\Bzip2\Algorithm\BZip2DivSufSort.vb,2558,27,512,2019,7,0,24,20,0,94863,94.86 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\BinaryData\binarydata-netcore5.vbproj,BinaryData\Bzip2\Algorithm\BZip2HuffmanStageDecoder.vb,163,49,35,79,1,0,2,1,0,7037,7.04 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\BinaryData\binarydata-netcore5.vbproj,BinaryData\Bzip2\Algorithm\BZip2HuffmanStageEncoder.vb,331,82,68,181,1,0,8,1,0,14725,14.72 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\BinaryData\binarydata-netcore5.vbproj,BinaryData\Bzip2\Algorithm\Bzip2MTFAndRLE2StageEncoder.vb,176,31,33,112,1,4,2,0,0,6873,6.87 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\BinaryData\binarydata-netcore5.vbproj,BinaryData\Bzip2\Math\CRC32.vb,48,15,7,26,1,1,2,0,0,4775,4.78 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\BinaryData\binarydata-netcore5.vbproj,BinaryData\Bzip2\Math\HuffmanAllocator.vb,198,43,32,123,1,0,4,3,0,8117,8.12 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\BinaryData\binarydata-netcore5.vbproj,BinaryData\Bzip2\Math\MoveToFront.vb,58,15,8,35,1,0,1,2,0,1949,1.95 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\BinaryData\binarydata-netcore5.vbproj,BinaryData\Extensions\Extensions.vb,161,42,24,95,2,1,1,8,0,4899,4.90 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\BinaryData\binarydata-netcore5.vbproj,BinaryData\Extensions\FixLengthString.vb,27,0,6,21,1,0,1,2,0,677,677 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\BinaryData\binarydata-netcore5.vbproj,BinaryData\Extensions\IByteReader.vb,7,0,2,5,1,1,0,2,0,170,170 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\BinaryData\binarydata-netcore5.vbproj,BinaryData\Extensions\IByteWriter.vb,4,0,0,4,1,0,2,0,0,102,102 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\BinaryData\binarydata-netcore5.vbproj,BinaryData\Extensions\MSWindows.vb,18,15,1,2,1,0,0,0,0,808,808 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\BinaryData\binarydata-netcore5.vbproj,BinaryData\Properties\AssemblyInfo.vb,19,0,3,16,0,0,0,0,0,655,655 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\BinaryData\binarydata-netcore5.vbproj,BinaryData\Stream\BinaryDataReader.vb,739,293,76,370,1,6,12,44,0,32505,32.51 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\BinaryData\binarydata-netcore5.vbproj,BinaryData\Stream\BinaryDataWriter.vb,611,266,59,286,1,4,32,14,0,25532,25.53 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\BinaryData\binarydata-netcore5.vbproj,BinaryData\Stream\BinaryDateTimeFormat.vb,14,9,1,4,1,0,0,0,0,423,423 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\BinaryData\binarydata-netcore5.vbproj,BinaryData\Stream\BinaryStringFormat.vb,37,25,4,8,1,0,0,0,0,1287,1.29 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\BinaryData\binarydata-netcore5.vbproj,BinaryData\Stream\Helpers.vb,49,0,13,36,2,2,0,2,0,1137,1.14 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\BinaryData\binarydata-netcore5.vbproj,BinaryData\Stream\Offset.vb,39,21,3,15,1,2,2,0,0,1581,1.58 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\BinaryData\binarydata-netcore5.vbproj,BinaryData\Stream\SeekTask.vb,42,21,5,16,1,2,2,1,0,1799,1.80 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\BinaryData\binarydata-netcore5.vbproj,BinaryData\Stream\StreamReader\BindAttribute.vb,18,3,3,12,1,2,1,1,0,529,529 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\BinaryData\binarydata-netcore5.vbproj,BinaryData\Stream\StreamReader\FieldAttribute.vb,74,17,11,46,1,3,1,2,0,2458,2.46 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\BinaryData\binarydata-netcore5.vbproj,BinaryData\Stream\StreamReader\ReaderProvider.vb,215,55,28,132,1,3,8,2,0,7681,7.68 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\BinaryData\binarydata-netcore5.vbproj,BinaryData\XDR\Unpacker.vb,51,0,10,41,1,2,1,4,0,1592,1.59 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\BinaryData\binarydata-netcore5.vbproj,BinaryData\XDR\XdrEncoding.vb,171,52,22,97,1,0,6,10,0,6151,6.15 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\BinaryData\binarydata-netcore5.vbproj,<project>,7911,1581,1301,5029,43,50,153,206,0,310173,310.17 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\DataStorage\datastorage-netcore5.vbproj,DataStorage\ASN.1\Extensions.vb,26,0,8,18,1,0,0,2,0,1064,1.06 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\DataStorage\datastorage-netcore5.vbproj,DataStorage\ASN.1\Index.vb,8,0,2,6,1,0,0,0,0,188,188 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\DataStorage\datastorage-netcore5.vbproj,DataStorage\ASN.1\StreamReader.vb,190,18,36,136,1,1,1,8,0,6076,6.08 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\DataStorage\datastorage-netcore5.vbproj,DataStorage\My Project\Resources.Designer.vb,63,23,8,32,1,2,0,0,0,2794,2.79 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\DataStorage\datastorage-netcore5.vbproj,DataStorage\Tabular\FrameReader.vb,47,5,7,35,1,0,0,1,0,1575,1.57 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\DataStorage\datastorage-netcore5.vbproj,DataStorage\Tabular\FrameWriter.vb,95,8,17,70,1,0,2,1,0,3416,3.42 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\DataStorage\datastorage-netcore5.vbproj,DataStorage\Tabular\Schema.vb,52,4,12,36,2,7,4,0,0,1357,1.36 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\DataStorage\datastorage-netcore5.vbproj,DataStorage\test\demoCDFWrite.vb,34,1,7,26,1,0,1,0,0,1667,1.67 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\DataStorage\datastorage-netcore5.vbproj,DataStorage\test\HDF5test.vb,144,14,39,91,1,0,2,0,0,5267,5.27 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\DataStorage\datastorage-netcore5.vbproj,DataStorage\test\Module1.vb,75,0,25,50,1,0,4,0,0,2398,2.40 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\DataStorage\datastorage-netcore5.vbproj,DataStorage\test\SQLParserTest.vb,99,0,14,85,1,0,5,0,0,3791,3.79 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\DataStorage\datastorage-netcore5.vbproj,DataStorage\test\My Project\Application.Designer.vb,12,9,1,2,0,0,0,0,0,434,434 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\DataStorage\datastorage-netcore5.vbproj,DataStorage\test\My Project\AssemblyInfo.vb,35,15,7,13,0,0,0,0,0,1043,1.04 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\DataStorage\datastorage-netcore5.vbproj,DataStorage\test\My Project\Resources.Designer.vb,63,23,8,32,1,2,0,0,0,2769,2.77 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\DataStorage\datastorage-netcore5.vbproj,DataStorage\test\My Project\Settings.Designer.vb,73,9,13,51,2,2,1,0,0,2954,2.95 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\DataStorage\datastorage-netcore5.vbproj,<project>,1016,129,204,683,15,14,20,12,0,36793,36.79 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\BasisType.vb,13,9,0,4,1,0,0,0,0,355,355 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\Column.vb,528,174,71,283,2,9,16,20,0,20739,20.74 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\ColumnEnumerable.vb,88,21,14,53,2,2,4,4,0,2600,2.60 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\ColumnMap.vb,71,16,9,46,1,1,1,0,0,2393,2.39 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\DataFrame.Mapping.vb,686,124,114,448,1,0,0,25,0,31210,31.21 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\DataFrame.vb,639,102,114,423,1,7,3,28,0,24682,24.68 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\FeatherReader.vb,752,69,88,595,1,0,0,15,0,32020,32.02 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\FeatherWriter.vb,3538,121,738,2679,2,3,129,14,0,119259,119.26 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\ProxyDataFrame.vb,264,95,31,138,2,9,2,9,0,9451,9.45 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\ProxyRowEnumerable.vb,91,21,15,55,2,2,4,4,0,2797,2.80 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\Row.vb,502,127,88,287,2,4,7,22,0,24851,24.85 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\RowEnumerable.vb,88,21,14,53,2,2,4,4,0,2502,2.50 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\RowMap.vb,51,11,7,33,1,1,1,0,0,1683,1.68 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\TypedColumn.vb,447,174,56,217,2,8,18,16,0,17013,17.01 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\TypedDataFrame.vb,977,237,123,617,10,45,10,14,0,31209,31.21 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\TypedRow.vb,1636,619,186,831,9,54,35,97,0,57019,57.02 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\TypedRowEnumerable.vb,91,21,15,55,2,2,4,4,0,2695,2.69 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\Value.vb,2109,64,453,1592,1,8,1,66,0,83269,83.27 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\Impl\CollectionLengthLookup.vb,40,1,10,29,1,0,0,2,0,1754,1.75 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\Impl\ColumnMetadata.vb,72,3,16,53,1,11,1,0,0,3852,3.85 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\Impl\ColumnSpec.vb,626,20,147,459,6,8,0,8,0,27610,27.61 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\Impl\DataWidener.vb,1191,5,229,957,1,0,0,36,0,43409,43.41 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\Impl\EnumDetails.vb,118,3,19,96,1,0,0,6,0,5334,5.33 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\Impl\EnumMapper.vb,58,1,7,50,1,0,1,1,0,2509,2.51 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\Impl\FeatherMagic.vb,13,0,2,11,1,0,0,0,0,733,733 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\Impl\IColumn.vb,33,0,7,26,1,4,9,5,0,1578,1.58 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\Impl\IDataFrame.vb,19,0,5,14,1,5,0,4,0,883,883 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\Impl\IRow.vb,21,0,5,16,1,2,3,6,0,949,949 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\Impl\Metadata.vb,6,0,0,6,1,2,0,0,0,161,161 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\Impl\MultiStreamProvider.vb,274,2,52,220,4,8,13,7,0,9553,9.55 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\Impl\SyntheticEnum.vb,81,1,18,62,3,0,2,6,0,3176,3.18 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\Impl\UnsafeArrayReader.vb,31,0,6,25,1,0,2,0,0,1743,1.74 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\Impl\ValueCaster.vb,63,0,14,49,1,0,1,1,0,2942,2.94 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\Impl\WriteColumnConfig.vb,21,0,2,19,1,6,1,0,0,727,727 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\Impl\WriterAdapterLookup.vb,329,9,59,261,8,2,1,12,0,21424,21.42 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\Impl\Flatbuffers\ByteBuffer.vb,263,37,43,183,1,3,17,15,0,10126,10.13 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\Impl\Flatbuffers\FlatBufferBuilder.vb,703,267,84,352,1,3,49,5,0,28519,28.52 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\Impl\Flatbuffers\FlatBufferConstants.vb,22,14,3,5,1,0,0,0,0,781,781 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\Impl\Flatbuffers\IFlatbufferObject.vb,26,17,3,6,1,1,1,0,0,927,927 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\Impl\Flatbuffers\Offset.vb,53,17,7,29,3,0,3,3,0,1766,1.77 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\Impl\Flatbuffers\Struct.vb,25,17,2,6,1,0,0,0,0,908,908 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\Impl\Flatbuffers\Table.vb,141,29,19,93,1,1,0,12,0,6054,6.05 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\Impl\Metadata\CategoryMetadata.vb,68,3,8,57,1,3,4,5,0,3034,3.03 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\Impl\Metadata\Column.vb,102,2,9,91,1,5,7,8,0,4662,4.66 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\Impl\Metadata\CTable.vb,125,4,11,110,1,6,9,9,0,5528,5.53 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\Impl\Metadata\DateMetadata.vb,41,1,7,33,1,1,2,4,0,1586,1.59 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\Impl\Metadata\Encoding.vb,11,1,4,6,1,0,0,0,0,211,211 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\Impl\Metadata\PrimitiveArray.vb,111,6,8,97,1,7,8,5,0,4838,4.84 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\Impl\Metadata\TimeMetadata.vb,56,1,8,47,1,2,3,5,0,2276,2.28 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\Impl\Metadata\TimestampMetadata.vb,72,3,9,60,1,3,4,6,0,3134,3.13 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\Impl\Metadata\TimeUnit.vb,13,1,4,8,1,0,0,0,0,262,262 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\Impl\Metadata\Type.vb,26,1,4,21,1,0,0,0,0,505,505 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,Feather\Impl\Metadata\TypeMetadata.vb,14,1,4,9,1,0,0,0,0,302,302 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\Feather\FeatherFormat.vbproj,<project>,17439,2493,2971,11975,98,240,380,513,0,669503,669.50 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\FileDump.vb,23,7,4,12,2,0,2,0,0,654,654 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\HDF5File.vb,184,52,31,101,1,3,6,4,0,7300,7.30 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\HDF5Ptr.vb,33,10,7,16,1,1,1,1,0,860,860 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\HDF5Reader.vb,205,38,29,138,1,14,5,3,0,7369,7.37 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\dataset\Abstract.vb,57,9,12,36,1,5,0,3,0,2093,2.09 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\dataset\ChunkedDatasetV3.vb,297,81,55,161,3,11,2,11,0,11824,11.82 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\dataset\CompactDataset.vb,42,20,6,16,1,3,0,1,0,1397,1.40 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\dataset\ContiguousDataset.vb,47,25,6,16,1,3,0,1,0,1867,1.87 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\dataset\filters\filters.vb,30,3,7,20,2,4,0,2,0,1120,1.12 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\dataset\filters\IFilter.vb,25,13,5,7,1,2,0,1,0,763,763 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\dataset\filters\ReservedFilters.vb,36,24,1,11,1,0,0,0,0,914,914 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\device\BinaryFileReader.vb,122,3,26,93,1,1,5,4,0,3952,3.95 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\device\BinaryReader.vb,282,38,52,192,1,6,7,10,0,9207,9.21 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\device\GlobalHeapId.vb,28,0,6,22,1,3,1,1,0,721,721 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\device\MemoryReader.vb,73,2,18,53,1,1,3,2,0,2024,2.02 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\device\ReadHelper.vb,211,33,41,137,1,0,1,13,0,7343,7.34 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\device\datasetReader\DatasetReader.vb,207,26,30,151,1,0,3,7,0,9232,9.23 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\device\datasetReader\EnumDatasetReader.vb,131,25,13,93,1,0,4,2,0,6036,6.04 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\device\datasetReader\VariableLengthDatasetReader.vb,126,27,20,79,1,0,1,3,0,5084,5.08 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\structure\DataBTree.vb,40,6,10,24,1,0,1,3,0,1134,1.13 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\structure\DataChunk.vb,101,47,17,37,1,4,2,0,0,4124,4.12 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\structure\DataChunkIterator.vb,43,7,12,24,1,1,2,2,0,1286,1.29 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\structure\DataObject.vb,64,14,15,35,1,2,2,0,0,2038,2.04 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\structure\DataObjectFacade.vb,257,42,49,166,1,7,3,4,0,10551,10.55 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\structure\Group.vb,91,20,19,52,1,2,3,1,0,3062,3.06 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\structure\GroupBTree.vb,89,9,23,57,1,2,3,0,0,2952,2.95 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\structure\GroupNode.vb,98,23,24,51,1,4,2,0,0,3818,3.82 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\structure\Layout.vb,106,24,14,68,1,9,2,1,0,3772,3.77 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\structure\LayoutField.vb,34,6,8,20,1,5,1,1,0,1031,1.03 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\structure\ObjectHeaderScratchpadFormat.vb,46,6,12,28,1,3,2,1,0,1714,1.71 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\structure\StructureMember.vb,67,7,17,43,1,4,2,1,0,2197,2.20 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\structure\Superblock.vb,209,27,38,144,1,18,5,3,0,9416,9.42 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\structure\SymbolicLinkScratchpadFormat.vb,39,6,12,21,1,2,2,0,0,1299,1.30 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\structure\SymbolTableEntry.vb,120,16,25,79,1,8,2,0,0,5196,5.20 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\structure\DataObjects\Headers\LayoutClass.vb,41,32,1,8,1,0,0,0,0,2105,2.10 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\structure\DataObjects\Headers\Message.vb,22,13,2,7,1,0,1,0,0,1129,1.13 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\structure\DataObjects\Headers\ObjectHeader.vb,96,9,25,62,1,5,3,1,0,3673,3.67 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\structure\DataObjects\Headers\ObjectHeaderMessage.vb,156,8,20,128,1,17,2,1,0,8368,8.37 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\structure\DataObjects\Headers\ObjectHeaderMessageType.vb,183,85,15,83,2,2,1,3,0,8633,8.63 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\structure\DataObjects\Headers\Messages\AttributeMessage.vb,156,17,35,104,1,6,2,2,0,5674,5.67 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\structure\DataObjects\Headers\Messages\BogusMessage.vb,25,6,6,13,1,1,2,0,0,791,791 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\structure\DataObjects\Headers\Messages\ContinueMessage.vb,42,6,11,25,1,3,2,0,0,1482,1.48 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\structure\DataObjects\Headers\Messages\DataLayoutMessage.vb,180,51,31,98,1,8,4,0,0,7288,7.29 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\structure\DataObjects\Headers\Messages\DataspaceMessage.vb,116,34,19,63,1,7,2,0,0,4725,4.72 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\structure\DataObjects\Headers\Messages\DataTypeMessage.vb,221,30,33,158,1,6,2,1,0,9380,9.38 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\structure\DataObjects\Headers\Messages\FillValueMessage.vb,75,11,16,48,1,7,2,0,0,2722,2.72 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\structure\DataObjects\Headers\Messages\FillValueOldMessage.vb,51,21,10,20,1,2,2,0,0,1951,1.95 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\structure\DataObjects\Headers\Messages\FilterPipelineMessage.vb,137,40,23,74,2,10,4,4,0,5718,5.72 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\structure\DataObjects\Headers\Messages\GroupMessage.vb,57,19,13,25,1,2,2,1,0,1882,1.88 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\structure\DataObjects\Headers\Messages\LastModifiedMessage.vb,44,6,13,25,1,2,2,1,0,1285,1.28 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\structure\DataObjects\Headers\Messages\LinkMessage.vb,99,26,19,54,1,8,2,0,0,3653,3.65 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\structure\Infrastructure\GlobalHeap.vb,182,78,28,76,2,8,3,1,0,7669,7.67 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\structure\Infrastructure\LocalHeap.vb,123,15,27,81,1,7,2,2,0,4675,4.67 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\structure\Infrastructure\BTree\BTreeEntry.vb,44,6,13,25,1,2,2,1,0,1321,1.32 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\structure\Infrastructure\BTree\BTreeNode.vb,266,111,40,115,1,7,3,2,0,11075,11.07 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\structure\Infrastructure\BTree\BTreeNodeTypes.vb,19,10,3,6,1,0,0,0,0,541,541 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\types\DataType.vb,19,4,6,9,1,3,0,0,0,492,492 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\types\DataTypes.vb,58,39,2,17,2,0,0,0,0,1525,1.52 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\types\EnumDataType.vb,31,14,6,11,1,3,0,0,0,708,708 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\types\FixedPoint.vb,44,0,5,39,1,7,0,1,0,1610,1.61 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\types\FloatingPoint.vb,36,0,4,32,1,14,0,1,0,1392,1.39 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\types\StringData.vb,11,0,2,9,1,1,0,0,0,265,265 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,HDF5\types\VariableLength.vb,21,0,5,16,1,4,0,1,0,592,592 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDF5\HDF5.vbproj,<project>,6118,1387,1097,3634,71,270,120,109,0,235674,235.67 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDSPack\HDSPack.vbproj,HDSPack\Debugger.vb,122,23,16,83,1,0,2,3,0,4920,4.92 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDSPack\HDSPack.vbproj,HDSPack\Extensions.vb,111,20,17,74,1,0,0,5,0,4006,4.01 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDSPack\HDSPack.vbproj,HDSPack\BinaryStream\PackAttributeData.vb,133,3,24,106,1,0,0,6,0,4839,4.84 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDSPack\HDSPack.vbproj,HDSPack\BinaryStream\TreeParser.vb,85,14,11,60,1,0,0,3,0,3202,3.20 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDSPack\HDSPack.vbproj,HDSPack\BinaryStream\TreeWriter.vb,60,6,10,44,1,0,0,2,0,2255,2.25 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDSPack\HDSPack.vbproj,HDSPack\FileSystem\StreamBlock.vb,89,31,12,46,1,5,2,3,0,2956,2.96 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDSPack\HDSPack.vbproj,HDSPack\FileSystem\StreamBuffer.vb,197,66,23,108,1,6,7,2,0,7167,7.17 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDSPack\HDSPack.vbproj,HDSPack\FileSystem\StreamGroup.vb,258,70,36,152,1,3,4,10,0,9700,9.70 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDSPack\HDSPack.vbproj,HDSPack\FileSystem\StreamObject.vb,83,16,13,54,1,4,3,4,0,2789,2.79 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDSPack\HDSPack.vbproj,HDSPack\FileSystem\StreamPack.vb,706,231,87,388,1,7,11,22,0,29386,29.39 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDSPack\HDSPack.vbproj,HDSPack\Metadata\AttributeMetadata.vb,25,0,5,20,1,4,0,1,0,705,705 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDSPack\HDSPack.vbproj,HDSPack\Metadata\LazyAttribute.vb,98,5,14,79,1,1,1,6,0,4115,4.12 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDSPack\HDSPack.vbproj,HDSPack\test\feather_df.vb,25,0,5,20,1,0,3,0,0,841,841 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDSPack\HDSPack.vbproj,HDSPack\test\Program.vb,153,3,44,106,1,0,4,0,0,5704,5.70 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDSPack\HDSPack.vbproj,<project>,2145,488,317,1340,14,30,37,67,0,82585,82.58 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDSPack\test\test.vbproj,test\feather_df.vb,25,0,5,20,1,0,3,0,0,841,841 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDSPack\test\test.vbproj,test\Program.vb,153,3,44,106,1,0,4,0,0,5704,5.70 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\HDSPack\test\test.vbproj,<project>,178,3,49,126,2,0,7,0,0,6545,6.54 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\msgpack\msgpack-netcore5.vbproj,msgpack\MagicBytes.vb,21,0,3,18,1,0,0,2,0,689,689 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\msgpack\msgpack-netcore5.vbproj,msgpack\MsgPackIO.vb,815,2,113,700,1,0,18,17,0,35727,35.73 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\msgpack\msgpack-netcore5.vbproj,msgpack\MsgPackSerializer.vb,397,7,73,317,1,0,8,20,0,16361,16.36 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\msgpack\msgpack-netcore5.vbproj,msgpack\ObjectExtensions.vb,14,0,2,12,1,0,0,1,0,409,409 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\msgpack\msgpack-netcore5.vbproj,msgpack\SerializationContext.vb,70,5,12,53,1,1,4,0,0,2644,2.64 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\msgpack\msgpack-netcore5.vbproj,msgpack\Constants\Bool.vb,7,0,1,6,1,0,0,0,0,178,178 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\msgpack\msgpack-netcore5.vbproj,msgpack\Constants\FixedArray.vb,7,0,1,6,1,0,0,0,0,177,177 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\msgpack\msgpack-netcore5.vbproj,msgpack\Constants\FixedInteger.vb,9,0,1,8,1,0,0,0,0,296,296 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\msgpack\msgpack-netcore5.vbproj,msgpack\Constants\FixedMap.vb,7,0,1,6,1,0,0,0,0,175,175 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\msgpack\msgpack-netcore5.vbproj,msgpack\Constants\FixedString.vb,8,0,1,7,1,0,0,0,0,227,227 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\msgpack\msgpack-netcore5.vbproj,msgpack\Constants\MsgPackConstants.vb,8,0,3,5,1,0,0,0,0,149,149 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\msgpack\msgpack-netcore5.vbproj,msgpack\Constants\MsgPackFormats.vb,60,9,4,47,1,0,0,1,0,2376,2.38 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\msgpack\msgpack-netcore5.vbproj,msgpack\Properties\AssemblyInfo.vb,21,8,1,12,0,0,0,0,0,1141,1.14 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\msgpack\msgpack-netcore5.vbproj,msgpack\Serialization\MessagePackMemberAttribute.vb,28,3,6,19,1,2,1,1,0,859,859 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\msgpack\msgpack-netcore5.vbproj,msgpack\Serialization\MessagePackMemberDefinition.vb,16,0,5,11,1,2,1,1,0,405,405 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\msgpack\msgpack-netcore5.vbproj,msgpack\Serialization\NilImplication.vb,8,0,1,7,1,0,0,0,0,141,141 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\msgpack\msgpack-netcore5.vbproj,msgpack\Serialization\SchemaProvider.vb,63,23,9,31,1,0,1,2,0,2307,2.31 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\msgpack\msgpack-netcore5.vbproj,msgpack\Serialization\SerializationMethod.vb,7,0,1,6,1,0,0,0,0,119,119 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\msgpack\msgpack-netcore5.vbproj,msgpack\Serialization\Default\FrameworkInternal.vb,19,0,5,14,1,0,0,2,0,763,763 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\msgpack\msgpack-netcore5.vbproj,msgpack\Serialization\Reflection\SerializableProperty.vb,52,0,13,39,1,0,3,1,0,2013,2.01 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\msgpack\msgpack-netcore5.vbproj,msgpack\Serialization\Reflection\TypeInfo.vb,29,0,7,22,1,4,1,1,0,900,900 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\msgpack\msgpack-netcore5.vbproj,<project>,1666,57,263,1346,20,9,37,49,0,68056,68.06 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\netCDF\netCDF.vbproj,netCDF\CDFWriter.vb,587,280,64,243,1,0,15,9,0,25678,25.68 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\netCDF\netCDF.vbproj,netCDF\netCDFReader.vb,404,185,40,179,1,5,7,9,0,16226,16.23 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\netCDF\netCDF.vbproj,netCDF\ToString.vb,54,8,12,34,1,0,1,0,0,1692,1.69 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\netCDF\netCDF.vbproj,netCDF\Utils.vb,213,58,26,129,1,0,3,7,0,8546,8.55 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\netCDF\netCDF.vbproj,netCDF\Components\attribute.vb,93,18,13,62,1,3,3,3,0,3647,3.65 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\netCDF\netCDF.vbproj,netCDF\Components\Dimension.vb,54,10,11,33,1,1,2,2,0,1640,1.64 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\netCDF\netCDF.vbproj,netCDF\Components\DimensionList.vb,23,0,7,16,1,4,0,1,0,631,631 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\netCDF\netCDF.vbproj,netCDF\Components\Header.vb,107,52,14,41,1,5,2,1,0,3633,3.63 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\netCDF\netCDF.vbproj,netCDF\Components\ICDFDataVector.vb,15,0,5,10,1,3,0,1,0,386,386 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\netCDF\netCDF.vbproj,netCDF\Components\recordDimension.vb,35,19,4,12,1,4,0,1,0,1140,1.14 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\netCDF\netCDF.vbproj,netCDF\Components\variable.vb,105,50,10,45,2,9,0,3,0,3675,3.67 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\netCDF\netCDF.vbproj,netCDF\Components\VectorHelper.vb,59,0,6,53,1,0,0,2,0,2463,2.46 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\netCDF\netCDF.vbproj,netCDF\Data\CDFDataTypes.vb,104,69,12,23,1,0,0,0,0,3380,3.38 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\netCDF\netCDF.vbproj,netCDF\Data\DataReader.vb,108,36,12,60,1,0,0,3,0,4639,4.64 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\netCDF\netCDF.vbproj,netCDF\Data\StructureParser.vb,230,80,33,117,1,0,0,4,0,8992,8.99 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\netCDF\netCDF.vbproj,netCDF\Data\TypeExtensions.vb,100,21,9,70,1,0,1,5,0,4257,4.26 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\netCDF\netCDF.vbproj,netCDF\Data\VLen.vb,19,6,5,8,1,0,0,0,0,366,366 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\netCDF\netCDF.vbproj,netCDF\Data\Xml.vb,71,24,9,38,1,5,0,2,0,2502,2.50 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\netCDF\netCDF.vbproj,netCDF\DataVector\bytes.vb,39,0,9,30,1,1,0,5,0,1318,1.32 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\netCDF\netCDF.vbproj,netCDF\DataVector\CDFData.vb,164,10,20,134,1,2,0,2,0,7557,7.56 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\netCDF\netCDF.vbproj,netCDF\DataVector\chars.vb,85,14,16,55,1,1,3,6,0,3097,3.10 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\netCDF\netCDF.vbproj,netCDF\DataVector\doubles.vb,46,0,11,35,1,1,2,5,0,1469,1.47 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\netCDF\netCDF.vbproj,netCDF\DataVector\flags.vb,39,0,9,30,1,1,0,5,0,1352,1.35 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\netCDF\netCDF.vbproj,netCDF\DataVector\floats.vb,41,0,9,32,1,1,0,5,0,1408,1.41 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\netCDF\netCDF.vbproj,netCDF\DataVector\integers.vb,46,0,11,35,1,1,2,5,0,1474,1.47 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\netCDF\netCDF.vbproj,netCDF\DataVector\longs.vb,54,0,13,41,1,1,4,5,0,1728,1.73 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\netCDF\netCDF.vbproj,netCDF\DataVector\shorts.vb,44,0,10,34,1,1,0,5,0,1563,1.56 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\netCDF\netCDF.vbproj,<project>,2939,940,400,1599,28,49,45,96,0,114459,114.46 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\SQLite3\SQLite3.vbproj,SQLite3\Extensions.vb,69,10,9,50,1,0,0,4,0,3024,3.02 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\SQLite3\SQLite3.vbproj,SQLite3\Sqlite3Database.vb,105,18,19,68,1,2,4,2,0,4187,4.19 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\SQLite3\SQLite3.vbproj,SQLite3\Sqlite3Settings.vb,17,4,4,9,1,1,0,1,0,553,553 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\SQLite3\SQLite3.vbproj,SQLite3\Helpers\BTreeTools.vb,54,3,12,39,1,0,0,3,0,2165,2.17 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\SQLite3\SQLite3.vbproj,SQLite3\Helpers\ReadonlyStream.vb,24,0,4,20,1,1,3,0,0,701,701 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\SQLite3\SQLite3.vbproj,SQLite3\Helpers\SqliteDataStream.vb,113,15,22,76,1,4,2,2,0,4064,4.06 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\SQLite3\SQLite3.vbproj,SQLite3\Helpers\StreamHelper.vb,33,0,8,25,1,0,0,2,0,1021,1021 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\SQLite3\SQLite3.vbproj,SQLite3\Internal\ReaderBase.vb,292,30,70,192,1,6,10,12,0,9635,9.63 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\SQLite3\SQLite3.vbproj,SQLite3\Objects\BTreeCellData.vb,13,0,4,9,1,3,0,0,0,363,363 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\SQLite3\SQLite3.vbproj,SQLite3\Objects\BTreeInteriorTablePage.vb,38,3,8,27,3,1,2,0,0,1327,1.33 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\SQLite3\SQLite3.vbproj,SQLite3\Objects\BTreeLeafTablePage.vb,101,24,22,55,3,1,2,0,0,4155,4.16 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\SQLite3\SQLite3.vbproj,SQLite3\Objects\BTreePage.vb,68,3,18,47,1,4,1,1,0,2425,2.42 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\SQLite3\SQLite3.vbproj,SQLite3\Objects\ColumnDataMeta.vb,28,7,6,15,1,2,1,1,0,822,822 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\SQLite3\SQLite3.vbproj,SQLite3\Objects\Enums\BTreeType.vb,8,0,0,8,1,0,0,0,0,250,250 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\SQLite3\SQLite3.vbproj,SQLite3\Objects\Enums\FileReadVersion.vb,7,1,0,6,1,0,0,0,0,202,202 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\SQLite3\SQLite3.vbproj,SQLite3\Objects\Enums\FileWriteVersion.vb,7,1,0,6,1,0,0,0,0,203,203 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\SQLite3\SQLite3.vbproj,SQLite3\Objects\Enums\SqliteDataType.vb,72,32,3,37,2,0,0,1,0,3948,3.95 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\SQLite3\SQLite3.vbproj,SQLite3\Objects\Enums\SqliteEncoding.vb,11,3,1,7,1,0,0,0,0,336,336 B
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\SQLite3\SQLite3.vbproj,SQLite3\Objects\Headers\BTreeHeader.vb,38,0,9,29,1,0,0,2,0,1351,1.35 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\SQLite3\SQLite3.vbproj,SQLite3\Objects\Headers\DatabaseHeader.vb,97,6,34,57,1,21,0,1,0,3389,3.39 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\SQLite3\SQLite3.vbproj,SQLite3\Schema\Extensions.vb,70,2,11,57,1,0,0,2,0,2498,2.50 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\SQLite3\SQLite3.vbproj,SQLite3\Schema\Schema.vb,97,0,19,78,1,3,1,3,0,3826,3.83 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\SQLite3\SQLite3.vbproj,SQLite3\Schema\SQLParser.vb,189,3,26,160,3,0,1,3,0,6328,6.33 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\SQLite3\SQLite3.vbproj,SQLite3\Tables\Sqlite3MasterTable.vb,47,3,12,32,1,2,1,2,0,1523,1.52 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\SQLite3\SQLite3.vbproj,SQLite3\Tables\Sqlite3Row.vb,59,1,14,44,1,4,1,3,0,1884,1.88 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\SQLite3\SQLite3.vbproj,SQLite3\Tables\Sqlite3SchemaRow.vb,30,3,6,21,1,5,0,2,0,1081,1.08 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\SQLite3\SQLite3.vbproj,SQLite3\Tables\Sqlite3Table.vb,162,25,27,110,1,2,1,3,0,6918,6.92 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\BinaryData\SQLite3\SQLite3.vbproj,<project>,1849,197,368,1284,34,62,30,50,0,68179,68.18 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\Mappings.vb,115,42,13,60,1,0,0,6,0,5017,5.02 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\DATA\DataFrame.vb,191,44,22,125,1,0,3,8,1,7682,7.68 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\DATA\Extensions.vb,27,0,6,21,1,0,1,0,0,952,952 B
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\DATA\HTMLWriter.vb,174,17,24,133,1,0,3,4,0,6653,6.65 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\DATA\MatrixProvider.vb,17,7,4,6,1,0,0,1,0,404,404 B
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\DATA\MySQL.vb,202,55,25,122,1,0,0,7,0,8024,8.02 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\DATA\RDataFrameHelpers.vb,71,11,12,48,1,0,0,3,0,2732,2.73 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\DATA\Union.vb,51,4,11,36,1,0,1,2,0,1735,1.74 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\DATA\Excel\Coordinates.vb,130,14,21,95,1,0,0,7,0,4266,4.27 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\DATA\Excel\Excel.vb,104,82,20,2,0,0,0,0,0,5038,5.04 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\DATA\Excel\ExcelReader.vb,113,19,24,70,1,0,1,5,0,4057,4.06 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\DATA\Excel\Extensions.vb,93,34,11,48,1,0,1,4,0,3581,3.58 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\DATA\Excel\Functions\Numerics.vb,17,0,4,13,1,0,0,2,0,495,495 B
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\Extensions\DataImports.vb,212,81,21,110,1,0,0,11,0,8665,8.66 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\Extensions\DocumentExtensions.vb,495,129,69,297,1,0,0,24,0,18322,18.32 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\Extensions\Extensions.vb,666,212,74,380,1,0,3,30,0,28697,28.70 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\Extensions\Math.vb,34,3,4,27,1,0,0,3,0,1198,1.20 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\Extensions\PipeStream.vb,87,17,10,60,1,0,0,6,0,3324,3.32 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\Extensions\ProfileStreams.vb,54,18,6,30,1,0,0,3,0,2110,2.11 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\Extensions\StreamIOHandler.vb,53,3,11,39,1,0,1,4,0,2662,2.66 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\Extensions\Write_csv.vb,143,31,15,97,3,10,0,3,0,6164,6.16 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\IO\csv\File.vb,976,259,125,592,3,8,19,43,6,39597,39.60 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\IO\csv\FileLoader.vb,154,23,20,111,1,0,0,4,0,7249,7.25 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\IO\csv\RowHelpers.vb,123,33,15,75,1,0,0,6,0,4514,4.51 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\IO\csv\RowIterator.vb,90,12,16,62,1,0,3,2,0,3262,3.26 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\IO\csv\RowObject.vb,502,141,61,300,1,5,10,20,5,18969,18.97 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\IO\csv\RowTokenizer.vb,142,20,29,93,1,0,4,5,0,4577,4.58 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\IO\csv\StreamIO.vb,139,35,18,86,1,0,0,5,0,5878,5.88 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\IO\csv\Tokenizer.vb,88,23,16,49,1,0,1,3,0,2788,2.79 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\IO\DataFrame\DataFrame.vb,780,162,114,504,1,11,10,51,0,31631,31.63 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\IO\DataFrame\HeaderSchema.vb,152,25,23,104,1,3,2,4,0,6067,6.07 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\IO\Generic\DataSet.vb,231,71,26,134,1,3,2,8,0,9803,9.80 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\IO\Generic\EntityObject.vb,215,61,22,132,1,1,4,8,0,8897,8.90 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\IO\Generic\Extensions.vb,312,85,27,200,1,0,0,17,0,13430,13.43 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\IO\Generic\Table.vb,128,31,16,81,2,0,0,5,0,5110,5.11 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\IO\MetaData\GenericMeta.vb,46,7,7,32,1,0,0,2,0,1749,1.75 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\IO\MetaData\Meta.vb,97,6,17,74,1,0,0,8,0,3570,3.57 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\Linq\BatchQueue.vb,150,46,21,83,1,0,0,4,0,6406,6.41 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\Linq\DataStream.vb,370,92,60,218,9,2,10,9,0,14986,14.99 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\Linq\LinqWhere.vb,365,83,50,232,7,5,1,17,0,14100,14.10 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\Linq\WriteStream.vb,265,71,38,156,3,2,7,8,0,9928,9.93 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\My Project\Resources.Designer.vb,63,23,8,32,1,2,0,0,0,2795,2.79 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\StorageProvider\ComponntModels\DynamicObjectLoader.vb,449,133,64,252,1,10,3,39,0,18673,18.67 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\StorageProvider\ComponntModels\ProviderBase.vb,140,62,18,60,1,6,4,2,0,5437,5.44 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\StorageProvider\ComponntModels\RowBuilder.vb,264,51,46,167,2,9,3,5,0,10599,10.60 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\StorageProvider\ComponntModels\RowWriter.vb,323,50,45,228,3,5,1,12,0,13041,13.04 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\StorageProvider\ComponntModels\SchemaProvider.vb,505,81,64,360,1,8,2,23,0,21223,21.22 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\StorageProvider\ComponntModels\ReflectionBridges\Array.vb,71,0,15,56,3,3,2,4,0,2615,2.62 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\StorageProvider\ComponntModels\ReflectionBridges\Dictionary.vb,44,4,10,30,1,4,1,2,0,1427,1.43 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\StorageProvider\ComponntModels\ReflectionBridges\Enum.vb,66,4,13,49,3,2,2,4,0,2513,2.51 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\StorageProvider\ComponntModels\ReflectionBridges\Field.vb,63,10,13,40,1,3,2,2,0,2086,2.09 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\StorageProvider\ComponntModels\ReflectionBridges\KeyValuePair.vb,72,5,13,54,3,5,1,4,0,2992,2.99 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\StorageProvider\Reflection\Attributes\Collection.vb,71,17,12,42,1,3,1,4,0,2752,2.75 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\StorageProvider\Reflection\Attributes\Column.vb,89,24,13,52,1,3,1,3,0,3662,3.66 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\StorageProvider\Reflection\Attributes\ColumnAttributes.vb,33,7,6,20,3,2,0,1,0,1044,1.04 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\StorageProvider\Reflection\Attributes\DataAttribute.vb,10,0,3,7,1,1,1,0,0,201,201 B
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\StorageProvider\Reflection\Attributes\MetaAttributeProvider.vb,44,14,7,23,1,2,1,1,0,1918,1.92 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\StorageProvider\Reflection\StorageProviders\DataFlowDirections.vb,15,8,1,6,1,0,0,0,0,496,496 B
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\StorageProvider\Reflection\StorageProviders\MetaAttributes.vb,81,16,12,53,1,0,0,3,0,3658,3.66 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\StorageProvider\Reflection\StorageProviders\Reflection.vb,343,81,38,224,1,0,0,9,0,16510,16.51 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\StorageProvider\Reflection\StorageProviders\TypeSchemaProvider.vb,319,62,56,201,1,0,0,8,0,14745,14.74 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\test\fileParser2.vb,30,1,11,18,1,0,3,0,0,777,777 B
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\test\Module1.vb,31,0,7,24,1,0,1,0,0,1010,1010 B
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\test\Module2.vb,3,0,1,2,1,0,0,0,0,28,28 B
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\test\MySQLImportsTest.vb,11,0,3,8,1,0,1,0,0,300,300 B
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\test\parserTest.vb,49,3,20,26,1,0,2,0,0,3920,3.92 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\test\Reflection.vb,49,0,11,38,2,9,1,1,0,1378,1.38 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\test\My Project\Application.Designer.vb,12,9,1,2,0,0,0,0,0,451,451 B
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\test\My Project\AssemblyInfo.vb,35,15,7,13,0,0,0,0,0,1161,1.16 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\test\My Project\Resources.Designer.vb,63,23,8,32,1,2,0,0,0,2775,2.77 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\test\My Project\Settings.Designer.vb,73,9,13,51,2,2,1,0,0,2966,2.97 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\test\Outlining\Class1.vb,47,0,7,40,2,28,0,0,0,2008,2.01 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,DataFrame\test\Outlining\OutliningTest.vb,11,0,4,7,1,0,1,0,0,253,253 B
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame\dataframework-netcore5.vbproj,<project>,11853,2821,1678,7354,105,159,122,489,12,479703,479.70 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame.Extensions\DataFramework.Extensions-netcore5.vbproj,DataFrame.Extensions\DataTableStream.vb,150,15,18,117,1,0,1,1,0,6924,6.92 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame.Extensions\DataFramework.Extensions-netcore5.vbproj,DataFrame.Extensions\My Project\Resources.Designer.vb,63,23,8,32,1,2,0,0,0,2795,2.79 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame.Extensions\DataFramework.Extensions-netcore5.vbproj,DataFrame.Extensions\Outlining\NamespaceDoc.vb,8,3,1,4,1,0,0,0,0,195,195 B
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame.Extensions\DataFramework.Extensions-netcore5.vbproj,DataFrame.Extensions\Outlining\OutliningDataLoader.vb,94,12,14,68,1,0,0,3,0,3905,3.90 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame.Extensions\DataFramework.Extensions-netcore5.vbproj,DataFrame.Extensions\Outlining\Schema.vb,159,30,27,102,1,3,3,5,0,5949,5.95 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame.Extensions\DataFramework.Extensions-netcore5.vbproj,DataFrame.Extensions\Property\attrs.vb,52,9,10,33,2,4,2,1,0,1933,1.93 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame.Extensions\DataFramework.Extensions-netcore5.vbproj,DataFrame.Extensions\Property\Properties.vb,413,192,43,178,1,0,14,8,0,26228,26.23 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame.Extensions\DataFramework.Extensions-netcore5.vbproj,DataFrame.Extensions\Property\Reflector.vb,115,14,16,85,1,0,1,6,0,5133,5.13 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame.Extensions\DataFramework.Extensions-netcore5.vbproj,DataFrame.Extensions\Serialize\Extensions.vb,141,26,19,96,1,0,0,5,0,5335,5.33 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame.Extensions\DataFramework.Extensions-netcore5.vbproj,DataFrame.Extensions\Serialize\NamespaceDoc.vb,6,4,0,2,1,0,0,0,0,244,244 B
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame.Extensions\DataFramework.Extensions-netcore5.vbproj,DataFrame.Extensions\Serialize\Writer.vb,113,33,20,60,1,0,4,0,0,3961,3.96 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame.Extensions\DataFramework.Extensions-netcore5.vbproj,DataFrame.Extensions\Serialize\ObjectSchema\Class.vb,100,22,16,62,1,3,1,6,0,3422,3.42 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame.Extensions\DataFramework.Extensions-netcore5.vbproj,DataFrame.Extensions\Serialize\ObjectSchema\Field.vb,57,16,8,33,1,5,0,2,0,1914,1.91 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame.Extensions\DataFramework.Extensions-netcore5.vbproj,DataFrame.Extensions\Serialize\ObjectSchema\Schema.vb,109,19,17,73,1,3,1,3,0,4315,4.32 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame.Extensions\DataFramework.Extensions-netcore5.vbproj,DataFrame.Extensions\Templates\TemplateAttribute.vb,24,7,3,14,1,2,1,1,0,857,857 B
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame.Extensions\DataFramework.Extensions-netcore5.vbproj,DataFrame.Extensions\Templates\TemplateHelper.vb,63,7,10,46,1,0,0,2,0,2361,2.36 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\DataFrame.Extensions\DataFramework.Extensions-netcore5.vbproj,<project>,1667,432,230,1005,17,22,28,43,0,75471,75.47 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\GraphQuery\GraphQuery.NET5.vbproj,GraphQuery\Engine.vb,133,5,25,103,1,0,2,7,0,4522,4.52 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\GraphQuery\GraphQuery.NET5.vbproj,GraphQuery\QueryParser.vb,138,1,16,121,1,0,0,3,0,5194,5.19 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\GraphQuery\GraphQuery.NET5.vbproj,GraphQuery\Language\Escaping.vb,10,0,3,7,1,0,0,0,0,181,181 B
G:\GCModeller\src\runtime\sciBASIC#\Data\GraphQuery\GraphQuery.NET5.vbproj,GraphQuery\Language\QueryToken.vb,37,0,6,31,1,4,0,1,0,937,937 B
G:\GCModeller\src\runtime\sciBASIC#\Data\GraphQuery\GraphQuery.NET5.vbproj,GraphQuery\Language\Token.vb,15,0,4,11,1,0,2,0,0,404,404 B
G:\GCModeller\src\runtime\sciBASIC#\Data\GraphQuery\GraphQuery.NET5.vbproj,GraphQuery\Language\TokenIcer.vb,90,1,11,78,1,0,1,2,0,3320,3.32 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\GraphQuery\GraphQuery.NET5.vbproj,GraphQuery\Language\Tokens.vb,23,9,1,13,1,0,0,0,0,400,400 B
G:\GCModeller\src\runtime\sciBASIC#\Data\GraphQuery\GraphQuery.NET5.vbproj,GraphQuery\My Project\Resources.Designer.vb,63,23,8,32,1,2,0,0,0,2802,2.80 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\GraphQuery\GraphQuery.NET5.vbproj,GraphQuery\Query\AutoContext.vb,22,0,5,17,1,0,0,2,0,691,691 B
G:\GCModeller\src\runtime\sciBASIC#\Data\GraphQuery\GraphQuery.NET5.vbproj,GraphQuery\Query\Query.vb,65,11,13,41,1,5,1,1,0,1564,1.56 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\GraphQuery\GraphQuery.NET5.vbproj,GraphQuery\Query\Parser\AttributeSelector.vb,37,0,4,33,1,0,1,1,0,1516,1.52 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\GraphQuery\GraphQuery.NET5.vbproj,GraphQuery\Query\Parser\CSSSelector.vb,195,37,25,133,2,1,3,7,0,7520,7.52 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\GraphQuery\GraphQuery.NET5.vbproj,GraphQuery\Query\Parser\FunctionParser.vb,12,0,3,9,1,0,1,1,0,429,429 B
G:\GCModeller\src\runtime\sciBASIC#\Data\GraphQuery\GraphQuery.NET5.vbproj,GraphQuery\Query\Parser\Parser.vb,67,2,14,51,1,3,2,3,0,2223,2.22 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\GraphQuery\GraphQuery.NET5.vbproj,GraphQuery\Query\Parser\XPathSelector.vb,32,0,5,27,1,0,1,1,0,1153,1.15 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\GraphQuery\GraphQuery.NET5.vbproj,GraphQuery\TextParser\BaseInvoke.vb,218,54,29,135,1,0,0,13,0,9102,9.10 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\GraphQuery\GraphQuery.NET5.vbproj,GraphQuery\TextParser\Html.vb,51,0,8,43,1,0,0,3,0,2016,2.02 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\GraphQuery\GraphQuery.NET5.vbproj,GraphQuery\TextParser\LINQ.vb,56,10,8,38,1,0,0,2,0,2069,2.07 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\GraphQuery\GraphQuery.NET5.vbproj,GraphQuery\TextParser\FunctionModel\CustomFunction.vb,17,0,5,12,1,0,1,1,0,555,555 B
G:\GCModeller\src\runtime\sciBASIC#\Data\GraphQuery\GraphQuery.NET5.vbproj,GraphQuery\TextParser\FunctionModel\InternalInvoke.vb,19,0,5,14,1,2,0,2,0,617,617 B
G:\GCModeller\src\runtime\sciBASIC#\Data\GraphQuery\GraphQuery.NET5.vbproj,GraphQuery\TextParser\FunctionModel\ParserFunction.vb,38,0,9,29,3,0,0,1,0,1400,1.40 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\GraphQuery\GraphQuery.NET5.vbproj,<project>,1338,153,207,978,24,17,15,51,0,48615,48.62 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\Trinity\Trinity.NET5.vbproj,Trinity\Bigram.vb,82,14,13,55,1,3,2,4,0,2580,2.58 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\Trinity\Trinity.NET5.vbproj,Trinity\NLP.vb,98,22,12,64,1,0,0,4,0,3777,3.78 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\Trinity\Trinity.NET5.vbproj,Trinity\StopWords.vb,411,12,9,390,1,2,1,3,0,11243,11.24 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\Trinity\Trinity.NET5.vbproj,Trinity\TextRank.vb,248,50,35,163,1,0,1,8,0,9740,9.74 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\Trinity\Trinity.NET5.vbproj,Trinity\Html\Article.vb,41,15,7,19,1,4,0,2,0,1107,1.11 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\Trinity\Trinity.NET5.vbproj,Trinity\Html\Html2Article.vb,292,83,34,175,1,3,1,5,0,11360,11.36 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\Trinity\Trinity.NET5.vbproj,Trinity\Html\UrlUtility.vb,39,8,8,23,1,0,0,2,0,1175,1.18 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\Trinity\Trinity.NET5.vbproj,Trinity\Model\Counter.vb,65,3,12,50,1,5,0,2,0,2197,2.20 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\Trinity\Trinity.NET5.vbproj,Trinity\Model\Paragraph.vb,94,16,17,61,1,1,0,5,0,3221,3.22 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\Trinity\Trinity.NET5.vbproj,Trinity\Model\Sentence.vb,134,26,22,86,1,3,2,8,0,4143,4.14 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\Trinity\Trinity.NET5.vbproj,Trinity\Model\SentenceCharWalker.vb,60,3,11,46,1,0,1,3,0,1860,1.86 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\Trinity\Trinity.NET5.vbproj,Trinity\Model\TokenCounter.vb,84,27,14,43,1,0,5,4,0,2635,2.63 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\Trinity\Trinity.NET5.vbproj,Trinity\POSTagger\BrillTransformationRules.vb,112,16,18,78,1,0,11,2,0,4899,4.90 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\Trinity\Trinity.NET5.vbproj,Trinity\POSTagger\PartOfSpeech.vb,21,0,4,17,1,2,0,3,0,866,866 B
G:\GCModeller\src\runtime\sciBASIC#\Data\Trinity\Trinity.NET5.vbproj,Trinity\Test\graphQueryTest.vb,116,3,39,74,2,0,6,0,0,3394,3.39 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\Trinity\Trinity.NET5.vbproj,Trinity\Test\Module1.vb,38,6,10,22,1,0,1,0,0,1316,1.32 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\Trinity\Trinity.NET5.vbproj,Trinity\Test\Module2.vb,18,0,5,13,1,0,1,0,0,896,896 B
G:\GCModeller\src\runtime\sciBASIC#\Data\Trinity\Trinity.NET5.vbproj,Trinity\Test\My Project\Application.Designer.vb,12,9,1,2,0,0,0,0,0,434,434 B
G:\GCModeller\src\runtime\sciBASIC#\Data\Trinity\Trinity.NET5.vbproj,Trinity\Test\My Project\AssemblyInfo.vb,35,15,7,13,0,0,0,0,0,1143,1.14 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\Trinity\Trinity.NET5.vbproj,Trinity\Test\My Project\Resources.Designer.vb,63,23,8,32,1,2,0,0,0,2769,2.77 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\Trinity\Trinity.NET5.vbproj,Trinity\Test\My Project\Settings.Designer.vb,73,9,13,51,2,2,1,0,0,2954,2.95 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\Trinity\Trinity.NET5.vbproj,<project>,2136,360,299,1477,21,27,33,55,0,73709,73.71 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\word2vec\word2vec.vbproj,word2vec\Trainer.vb,103,7,18,78,1,0,4,1,0,4458,4.46 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\word2vec\word2vec.vbproj,word2vec\TrainMethod.vb,33,29,0,4,1,0,0,0,0,2160,2.16 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\word2vec\word2vec.vbproj,word2vec\VectorModel.vb,198,45,39,114,1,3,2,6,0,6611,6.61 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\word2vec\word2vec.vbproj,word2vec\Word2Vec.vb,377,84,67,226,1,0,8,1,0,12811,12.81 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\word2vec\word2vec.vbproj,word2vec\Word2VecFactory.vb,67,5,18,44,1,0,0,9,0,1796,1.80 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\word2vec\word2vec.vbproj,word2vec\WordNeuron.vb,39,4,9,26,1,2,1,1,0,1105,1.10 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\word2vec\word2vec.vbproj,word2vec\WordScore.vb,27,3,4,20,1,0,1,2,0,719,719 B
G:\GCModeller\src\runtime\sciBASIC#\Data\word2vec\word2vec.vbproj,word2vec\test\counterTest.vb,37,1,10,26,1,0,3,0,0,1067,1.07 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\word2vec\word2vec.vbproj,word2vec\test\TestWord2Vec.vb,41,3,9,29,1,0,2,1,0,1461,1.46 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\word2vec\word2vec.vbproj,word2vec\test\My Project\Application.Designer.vb,12,9,1,2,0,0,0,0,0,434,434 B
G:\GCModeller\src\runtime\sciBASIC#\Data\word2vec\word2vec.vbproj,word2vec\test\My Project\AssemblyInfo.vb,35,15,7,13,0,0,0,0,0,1143,1.14 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\word2vec\word2vec.vbproj,word2vec\test\My Project\Resources.Designer.vb,62,23,8,31,1,2,0,0,0,2766,2.77 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\word2vec\word2vec.vbproj,word2vec\test\My Project\Settings.Designer.vb,73,9,13,51,2,2,1,0,0,2966,2.97 KB
G:\GCModeller\src\runtime\sciBASIC#\Data\word2vec\word2vec.vbproj,<project>,1104,237,203,664,12,9,22,21,0,39497,39.50 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\BinaryTree\btree-netcore5.vbproj,BinaryTree\BuildTree.vb,79,0,14,65,1,0,0,4,0,3754,3.75 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\BinaryTree\btree-netcore5.vbproj,BinaryTree\DiffusionMap.vb,137,68,17,52,1,0,0,2,0,5658,5.66 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\BinaryTree\btree-netcore5.vbproj,BinaryTree\KNNGraph.vb,217,25,41,151,5,0,4,11,0,7801,7.80 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\BinaryTree\btree-netcore5.vbproj,BinaryTree\newickParser.vb,193,81,23,89,1,0,2,3,0,8480,8.48 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\BinaryTree\btree-netcore5.vbproj,BinaryTree\Partitioning.vb,113,11,18,84,1,0,0,4,0,3574,3.57 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\BinaryTree\btree-netcore5.vbproj,BinaryTree\AffinityPropagation\AffinityPropagation.vb,277,47,48,182,1,1,6,3,0,10275,10.28 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\BinaryTree\btree-netcore5.vbproj,BinaryTree\AffinityPropagation\Edge.vb,35,0,6,29,1,5,1,2,0,1318,1.32 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\BinaryTree\btree-netcore5.vbproj,BinaryTree\AffinityPropagation\Graph.vb,31,0,9,22,1,1,1,0,0,930,930 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\BinaryTree\btree-netcore5.vbproj,BinaryTree\AffinityPropagation\QuickSelect.vb,69,15,15,39,1,0,0,2,0,2168,2.17 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\BinaryTree\btree-netcore5.vbproj,BinaryTree\AffinityPropagation\SimilarityMatrix.vb,40,7,6,27,1,0,0,2,0,1500,1.50 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\BinaryTree\btree-netcore5.vbproj,BinaryTree\ClusterTree\BTreeCluster.vb,86,19,11,56,1,5,1,3,0,3116,3.12 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\BinaryTree\btree-netcore5.vbproj,BinaryTree\ClusterTree\ClusterTree.vb,134,49,17,68,3,1,2,4,0,4692,4.69 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\BinaryTree\btree-netcore5.vbproj,BinaryTree\ComparisonProvider\AlignmentComparison.vb,95,0,18,77,2,0,3,3,0,3575,3.58 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\BinaryTree\btree-netcore5.vbproj,BinaryTree\ComparisonProvider\Comparison.vb,25,3,5,17,1,0,1,2,0,805,805 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\BinaryTree\btree-netcore5.vbproj,BinaryTree\ComparisonProvider\ComparisonProvider.vb,48,11,8,29,1,0,1,2,0,1545,1.54 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\BinaryTree\btree-netcore5.vbproj,BinaryTree\test\AffinityPropagationDemo.vb,26,1,6,19,1,0,1,1,0,670,670 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\BinaryTree\btree-netcore5.vbproj,BinaryTree\test\Program.vb,17,9,3,5,1,0,1,0,0,693,693 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\BinaryTree\btree-netcore5.vbproj,<project>,1622,346,265,1011,24,13,24,48,0,60554,60.55 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\BinaryTree\test\test.vbproj,test\AffinityPropagationDemo.vb,26,1,6,19,1,0,1,1,0,670,670 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\BinaryTree\test\test.vbproj,test\Program.vb,17,9,3,5,1,0,1,0,0,693,693 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\BinaryTree\test\test.vbproj,<project>,43,10,9,24,2,0,2,1,0,1363,1.36 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\MarginalLikelihoodAnalysis.vb,281,68,53,160,2,3,2,6,0,10462,10.46 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\SelfOrganizingMap.vb,151,36,29,86,1,3,3,4,0,5297,5.30 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Statistics.vb,288,178,20,90,1,0,0,6,0,9499,9.50 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\ValueMapping.vb,76,20,9,47,1,0,0,3,0,2741,2.74 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\AprioriRules\ExportAPI.vb,85,23,12,50,3,0,0,2,0,3572,3.57 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\AprioriRules\Algorithm\ItemSet.vb,144,5,34,105,1,2,2,12,2,4477,4.48 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\AprioriRules\Algorithm\Output.vb,51,4,6,41,1,5,0,1,0,2035,2.04 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\AprioriRules\Algorithm\Rule.vb,76,18,15,43,1,6,1,4,0,2436,2.44 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\AprioriRules\Algorithm\Transaction.vb,69,15,10,44,2,2,3,3,0,2308,2.31 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\AprioriRules\Algorithm\TransactionTokensItem.vb,19,0,6,13,1,2,0,2,0,667,667 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\AprioriRules\Algorithm\Implementation\Apriori.vb,230,7,46,177,1,0,0,11,0,10821,10.82 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\AprioriRules\Algorithm\Implementation\StrongRules.vb,140,0,32,108,1,0,1,7,0,5826,5.83 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\AprioriRules\Helper\Encoding.vb,70,19,10,41,1,2,1,4,0,2883,2.88 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\AprioriRules\Helper\Item.vb,61,21,10,30,1,1,1,3,2,1937,1.94 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\Canopy.vb,254,43,45,166,5,2,5,7,0,9030,9.03 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\Density.vb,117,29,18,70,4,0,2,8,0,4970,4.97 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\KNN.vb,120,20,16,84,1,0,2,1,0,4992,4.99 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\Spectral.vb,191,23,36,132,1,0,11,3,0,6342,6.34 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\BisectingKMeans\BisectingKMeans.vb,137,22,24,91,1,0,3,4,0,4980,4.98 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\BisectingKMeans\Cluster.vb,96,17,17,62,1,5,6,3,0,2781,2.78 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\DBSCAN\DbscanAlgorithm.vb,139,29,19,91,1,0,1,2,0,5821,5.82 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\DBSCAN\DbscanPoint.vb,29,0,7,22,2,1,1,1,0,841,841 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\DBSCAN\DbscanSession.vb,252,40,41,171,3,0,5,4,0,9851,9.85 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\DBSCAN\Extensions.vb,27,0,4,23,1,0,0,1,0,1138,1.14 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\DBSCAN\Optics\Point.vb,13,0,2,11,1,0,0,0,0,341,341 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\FuzzyCMeans\Algorithm.vb,7,0,3,4,1,0,0,0,0,85,85 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\FuzzyCMeans\Classify.vb,64,0,13,51,1,3,0,2,0,2567,2.57 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\FuzzyCMeans\CMeans.vb,278,53,35,190,1,0,2,8,0,13204,13.20 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\FuzzyCMeans\Entity.vb,36,11,5,20,1,3,0,1,0,1227,1.23 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\HDBSCAN\Distance\CosineSimilarity.vb,108,4,18,86,1,0,1,5,0,5304,5.30 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\HDBSCAN\Distance\DistanceCalculator.vb,18,13,0,5,1,0,0,1,0,1005,1005 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\HDBSCAN\Distance\EuclideanDistance.vb,20,3,2,15,1,0,0,1,0,895,895 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\HDBSCAN\Distance\ISparseMatrixSupport.vb,8,3,0,5,1,0,0,1,0,294,294 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\HDBSCAN\Distance\ManhattanDistance.vb,20,3,2,15,1,0,0,1,0,840,840 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\HDBSCAN\Distance\PearsonCorrelation.vb,36,3,4,29,1,0,0,1,0,1674,1.67 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\HDBSCAN\Distance\SupremumDistance.vb,21,3,2,16,1,0,0,1,0,914,914 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\HDBSCAN\Hdbscanstar\Cluster.vb,162,32,16,114,1,7,7,1,0,7866,7.87 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\HDBSCAN\Hdbscanstar\HdbscanAlgorithm.vb,550,115,86,349,1,0,1,7,0,30386,30.39 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\HDBSCAN\Hdbscanstar\HdbscanConstraint.vb,34,9,4,21,1,0,1,3,0,1246,1.25 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\HDBSCAN\Hdbscanstar\HdbscanConstraintType.vb,6,0,0,6,1,0,0,0,0,135,135 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\HDBSCAN\Hdbscanstar\OutlierScore.vb,41,11,9,21,1,2,1,1,0,1548,1.55 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\HDBSCAN\Hdbscanstar\UndirectedGraph.vb,175,36,31,108,1,0,3,8,0,7438,7.44 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\HDBSCAN\Runner\HdbscanParameters.vb,17,0,3,14,1,8,0,0,0,667,667 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\HDBSCAN\Runner\HdbscanResult.vb,9,0,1,8,1,3,0,0,0,316,316 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\HDBSCAN\Runner\HdbscanRunner.vb,160,13,33,114,1,0,1,3,0,10076,10.08 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\KMeans\Evaluation.vb,496,76,79,341,5,0,4,17,0,19281,19.28 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\KMeans\EvaluationScore.vb,91,8,13,70,1,7,0,6,0,4257,4.26 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\KMeans\Extensions.vb,117,22,11,84,1,0,0,5,0,5329,5.33 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\KMeans\KMeans.vb,325,53,51,221,1,0,1,10,0,13870,13.87 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\KMeans\Kmedoids.vb,159,42,28,89,1,0,0,3,0,6162,6.16 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\KMeans\EntityModels\ClusterEntity.vb,152,57,16,79,1,3,4,4,2,5465,5.46 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\KMeans\EntityModels\DataSetConvertor.vb,52,0,11,41,1,0,1,5,0,1831,1.83 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\KMeans\EntityModels\EntityClusterModel.vb,82,16,9,57,1,2,0,5,0,3389,3.39 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\KMeans\EntityModels\Metric.vb,20,0,6,14,1,0,1,1,0,597,597 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\KMeans\Models\Cluster.vb,93,16,17,60,1,1,5,1,1,3176,3.18 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\KMeans\Models\ClusterCollection.vb,59,15,9,35,1,1,1,3,0,2168,2.17 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\KMeans\Models\KMeansCluster.vb,103,21,15,67,1,4,2,4,0,3814,3.81 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\Lloyds\Clustering.vb,38,6,7,25,1,1,2,0,0,1184,1.18 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\Lloyds\LloydsMethodClustering.vb,108,11,23,74,1,1,1,2,0,4196,4.20 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Clustering\Lloyds\Point.vb,33,0,8,25,1,1,4,0,0,964,964 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\ComponentModel\EntityBase.vb,50,17,6,27,1,2,0,1,0,1596,1.60 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\ComponentModel\IClusterPoint.vb,8,0,3,5,1,1,0,0,0,137,137 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\ComponentModel\IDataEmbedding.vb,14,4,4,6,1,0,0,0,0,357,357 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\ComponentModel\IntegerEntity.vb,41,4,7,30,1,1,0,1,0,1447,1.45 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\ComponentModel\TraceBackAlgorithm.vb,54,14,9,31,1,0,1,3,0,2103,2.10 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\ComponentModel\TraceBackIterator.vb,106,17,20,69,1,1,6,2,0,3591,3.59 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\ComponentModel\Discretizer\Discretizer.vb,84,17,15,52,1,5,2,2,0,2457,2.46 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\ComponentModel\Discretizer\NormalRangeDiscretizer.vb,73,11,12,50,1,4,2,2,0,2604,2.60 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\ComponentModel\Encoder\Class.vb,170,74,22,74,1,3,0,2,13,5797,5.80 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\ComponentModel\Encoder\ClassEncoder.vb,137,27,23,87,1,1,3,5,0,4191,4.19 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\ComponentModel\Encoder\Extensions.vb,42,0,7,35,1,0,0,3,0,1651,1.65 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\ComponentModel\Encoder\Variable\Binary.vb,47,18,6,23,1,1,0,1,0,1467,1.47 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\ComponentModel\Encoder\Variable\Categorical.vb,12,0,4,8,1,1,0,0,0,389,389 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\ComponentModel\Encoder\Variable\CategoricalEncoder.vb,82,0,14,68,1,1,0,3,0,3180,3.18 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\ComponentModel\Normalizer\Methods.vb,17,9,1,7,1,0,0,0,0,572,572 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\ComponentModel\Normalizer\Normalizations.vb,96,17,13,66,1,0,1,5,0,3448,3.45 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\ComponentModel\Serialization\EntityVectorFile.vb,73,3,15,55,1,0,2,3,0,2457,2.46 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\DecisionTree\Algorithm.vb,213,25,40,148,1,0,0,8,0,8994,8.99 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\DecisionTree\Attributes.vb,36,3,7,26,1,3,2,2,0,1197,1.20 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\DecisionTree\Tree.vb,91,27,15,49,1,1,3,4,0,3334,3.33 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\DecisionTree\TreeNode.vb,37,0,6,31,1,6,3,1,0,1094,1.09 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\DecisionTree\VisualDebugger.vb,51,4,6,41,1,0,2,0,0,2231,2.23 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\DecisionTree\DataModels\DataImports.vb,83,5,13,65,1,0,0,4,0,3086,3.09 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\DecisionTree\DataModels\DataModels.vb,54,10,9,35,2,3,0,3,0,1802,1.80 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\DecisionTree\DataModels\DataTable.vb,60,19,9,32,1,4,1,1,0,1763,1.76 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Evaluation\Metric.vb,155,15,33,107,6,0,2,9,0,5168,5.17 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Evaluation\NamespaceDoc.vb,8,3,1,4,1,0,0,0,0,157,157 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Evaluation\RegressionClassify.vb,29,7,6,16,1,4,0,1,0,780,780 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Evaluation\RegressionROC.vb,94,7,14,73,3,0,0,4,0,3477,3.48 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Evaluation\ROC.vb,151,53,20,78,1,0,0,5,0,5603,5.60 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Evaluation\Validate.vb,89,16,12,61,1,4,0,3,0,3410,3.41 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Evaluation\Validation.vb,218,64,22,132,1,4,0,5,0,8460,8.46 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Evaluation\LabelEvaluate\ChangePoint.vb,18,0,4,14,1,0,1,1,0,474,474 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Evaluation\LabelEvaluate\FakeAUCGenerator.vb,83,9,14,60,1,0,0,2,0,3292,3.29 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Evaluation\LabelEvaluate\PerformanceEvaluator.vb,187,35,36,116,1,4,5,4,0,5902,5.90 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Evaluation\LabelEvaluate\RankPair.vb,50,23,9,18,1,2,1,2,0,1690,1.69 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Interface\DFL\I_FactorElement.vb,120,42,16,62,1,3,0,5,0,4564,4.56 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Interface\DFL\Node.vb,56,9,10,37,1,1,1,3,0,2194,2.19 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Kernel\Bayesian.vb,84,22,10,52,1,0,0,7,0,3415,3.42 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Kernel\BayesianBeliefNetwork\BeliefNetwork.vb,298,32,48,218,14,14,5,11,0,12479,12.48 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Kernel\BayesianBeliefNetwork\BNInfer.vb,143,10,30,103,4,0,4,5,0,5218,5.22 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Kernel\Neuron\Neuron.vb,67,12,14,41,3,3,1,3,0,2360,2.36 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\Kernel\Neuron\NeuronEntity.vb,33,0,7,26,1,1,0,1,0,1163,1.16 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\test\AprioriTest.vb,73,21,18,34,1,0,3,0,0,2664,2.66 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\test\DecisionTreeProgram.vb,472,337,95,40,2,0,3,1,0,21968,21.97 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\test\KmedoidsTest.vb,75,58,17,0,0,0,0,0,0,2815,2.81 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\test\Module1.vb,13,6,3,4,1,0,1,0,0,448,448 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\test\roc_test2.vb,15,0,4,11,1,0,1,0,0,573,573 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\test\SCStest.vb,47,2,15,30,1,0,2,0,0,1711,1.71 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\test\TestingMain.vb,256,180,76,0,0,0,0,0,0,10290,10.29 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\test\DBSCAN\MyCustomDatasetItem.vb,14,0,4,10,1,1,1,0,0,371,371 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\test\DBSCAN\Program.vb,32,2,7,23,1,0,1,0,0,1470,1.47 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\test\My Project\Application.Designer.vb,12,9,1,2,0,0,0,0,0,434,434 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\test\My Project\AssemblyInfo.vb,35,15,7,13,0,0,0,0,0,1162,1.16 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\test\My Project\Resources.Designer.vb,63,23,8,32,1,2,0,0,0,2772,2.77 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,DataMining\test\My Project\Settings.Designer.vb,73,9,13,51,2,2,1,0,0,2960,2.96 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DataMining\DataMining.NET5.vbproj,<project>,11608,2638,1951,7019,158,164,154,341,20,459807,459.81 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DensityQuery\DensityQuery.NET5.vbproj,DensityQuery\Density2D.vb,73,13,11,49,1,0,0,3,0,2897,2.90 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DensityQuery\DensityQuery.NET5.vbproj,DensityQuery\GridBox.vb,32,1,7,24,1,0,1,1,0,1010,1010 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DensityQuery\DensityQuery.NET5.vbproj,DensityQuery\KDQuery.vb,43,0,7,36,1,0,1,2,0,1551,1.55 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DensityQuery\DensityQuery.NET5.vbproj,DensityQuery\Metric.vb,47,0,11,36,1,0,2,5,0,1523,1.52 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DensityQuery\DensityQuery.NET5.vbproj,<project>,195,14,36,145,4,0,4,11,0,6981,6.98 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DynamicProgramming\DynamicProgramming.NET5.vbproj,DynamicProgramming\Extensions.vb,33,6,3,24,1,0,0,2,0,1195,1.20 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DynamicProgramming\DynamicProgramming.NET5.vbproj,DynamicProgramming\CenterStar\CenterStar.vb,210,33,30,147,1,1,4,3,0,7080,7.08 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DynamicProgramming\DynamicProgramming.NET5.vbproj,DynamicProgramming\Generic\GenericSequence.vb,75,0,13,62,1,1,2,3,2,2367,2.37 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DynamicProgramming\DynamicProgramming.NET5.vbproj,DynamicProgramming\Generic\GenericSymbol.vb,37,0,8,29,1,0,1,3,0,1184,1.18 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DynamicProgramming\DynamicProgramming.NET5.vbproj,DynamicProgramming\KBand\KBandSearch.vb,134,20,24,90,1,0,1,2,0,3690,3.69 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DynamicProgramming\DynamicProgramming.NET5.vbproj,DynamicProgramming\Knapsack\Item.vb,22,0,5,17,1,3,1,1,0,668,668 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DynamicProgramming\DynamicProgramming.NET5.vbproj,DynamicProgramming\Knapsack\KnapsackSolution.vb,24,0,5,19,1,3,0,2,0,879,879 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DynamicProgramming\DynamicProgramming.NET5.vbproj,DynamicProgramming\Knapsack\KnapsackSolver.vb,73,0,16,57,1,0,1,5,0,2415,2.42 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DynamicProgramming\DynamicProgramming.NET5.vbproj,DynamicProgramming\NeedlemanWunsch\GlobalAlign.vb,75,0,15,60,1,4,1,3,0,2336,2.34 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DynamicProgramming\DynamicProgramming.NET5.vbproj,DynamicProgramming\NeedlemanWunsch\GNW.vb,199,66,28,105,1,0,3,2,0,8427,8.43 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DynamicProgramming\DynamicProgramming.NET5.vbproj,DynamicProgramming\NeedlemanWunsch\ScoreMatrix.vb,51,14,11,26,1,3,2,2,0,1571,1.57 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DynamicProgramming\DynamicProgramming.NET5.vbproj,DynamicProgramming\NeedlemanWunsch\Workspace.vb,95,32,16,47,1,4,3,2,0,3120,3.12 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DynamicProgramming\DynamicProgramming.NET5.vbproj,DynamicProgramming\SmithWaterman\Directions.vb,28,17,3,8,1,0,0,0,0,723,723 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DynamicProgramming\DynamicProgramming.NET5.vbproj,DynamicProgramming\SmithWaterman\GSW.vb,373,115,48,210,1,8,3,6,0,14805,14.80 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DynamicProgramming\DynamicProgramming.NET5.vbproj,DynamicProgramming\SmithWaterman\LocalHSPMatch.vb,85,24,15,46,1,6,1,3,0,2786,2.79 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DynamicProgramming\DynamicProgramming.NET5.vbproj,DynamicProgramming\SmithWaterman\Match.vb,92,30,14,48,1,5,3,3,1,2868,2.87 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DynamicProgramming\DynamicProgramming.NET5.vbproj,DynamicProgramming\SmithWaterman\SimpleChaining.vb,197,35,27,135,3,1,1,5,0,7689,7.69 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DynamicProgramming\DynamicProgramming.NET5.vbproj,DynamicProgramming\SmithWaterman\Workspace.vb,34,0,5,29,1,0,0,2,0,1274,1.27 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DynamicProgramming\DynamicProgramming.NET5.vbproj,DynamicProgramming\test\Module1.vb,44,18,10,16,1,0,2,0,0,1668,1.67 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DynamicProgramming\DynamicProgramming.NET5.vbproj,DynamicProgramming\test\My Project\Application.Designer.vb,12,9,1,2,0,0,0,0,0,451,451 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DynamicProgramming\DynamicProgramming.NET5.vbproj,DynamicProgramming\test\My Project\AssemblyInfo.vb,35,15,7,13,0,0,0,0,0,1161,1.16 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DynamicProgramming\DynamicProgramming.NET5.vbproj,DynamicProgramming\test\My Project\Resources.Designer.vb,63,23,8,32,1,2,0,0,0,2796,2.80 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DynamicProgramming\DynamicProgramming.NET5.vbproj,DynamicProgramming\test\My Project\Settings.Designer.vb,73,9,13,51,2,2,1,0,0,2966,2.97 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\DynamicProgramming\DynamicProgramming.NET5.vbproj,<project>,2064,466,325,1273,24,43,30,49,3,74119,74.12 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\FeatureFrame\FeatureFrame.vbproj,FeatureFrame\Encoder.vb,80,24,12,44,1,0,1,3,0,2659,2.66 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\FeatureFrame\FeatureFrame.vbproj,FeatureFrame\FeatureEncoder.vb,18,3,3,12,1,0,0,1,0,590,590 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\FeatureFrame\FeatureFrame.vbproj,FeatureFrame\Encoder\EnumEncoder.vb,33,3,5,25,1,0,0,1,0,1140,1.14 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\FeatureFrame\FeatureFrame.vbproj,FeatureFrame\Encoder\FlagEncoder.vb,24,3,5,16,1,0,0,1,0,785,785 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\FeatureFrame\FeatureFrame.vbproj,FeatureFrame\Encoder\NumericBinsEncoder.vb,49,0,9,40,1,0,1,2,0,1865,1.86 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\FeatureFrame\FeatureFrame.vbproj,FeatureFrame\Encoder\NumericEncoder.vb,16,0,4,12,1,0,0,1,0,551,551 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\FeatureFrame\FeatureFrame.vbproj,<project>,220,33,38,149,6,0,2,9,0,7590,7.59 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\hierarchical-clustering\HCTreePlot\HCTreePlot.vbproj,HCTreePlot\Circular.vb,145,5,24,116,1,0,3,0,0,6383,6.38 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\hierarchical-clustering\HCTreePlot\HCTreePlot.vbproj,HCTreePlot\Dendrogram.vb,61,0,6,55,1,0,0,1,0,2623,2.62 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\hierarchical-clustering\HCTreePlot\HCTreePlot.vbproj,HCTreePlot\DendrogramPanel.vb,57,3,9,45,1,1,1,1,0,2174,2.17 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\hierarchical-clustering\HCTreePlot\HCTreePlot.vbproj,HCTreePlot\DendrogramPanelV2.vb,163,8,27,128,1,0,3,1,0,7232,7.23 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\hierarchical-clustering\HCTreePlot\HCTreePlot.vbproj,HCTreePlot\Horizon.vb,148,5,24,119,1,0,3,0,0,6634,6.63 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\hierarchical-clustering\HCTreePlot\HCTreePlot.vbproj,HCTreePlot\HorizonRightToLeft.vb,103,13,18,72,1,8,2,0,0,4215,4.21 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\hierarchical-clustering\HCTreePlot\HCTreePlot.vbproj,HCTreePlot\Layouts.vb,18,12,0,6,1,0,0,0,0,396,396 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\hierarchical-clustering\HCTreePlot\HCTreePlot.vbproj,<project>,695,46,108,541,7,9,12,3,0,29657,29.66 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\hierarchical-clustering\hierarchical-clustering\hctree.NET5.vbproj,hierarchical-clustering\PrintHelper.vb,49,9,8,32,1,0,2,1,0,1630,1.63 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\hierarchical-clustering\hierarchical-clustering\hctree.NET5.vbproj,hierarchical-clustering\ClusteringAlgorithm\Cluster.vb,179,47,25,107,1,10,4,6,0,5405,5.41 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\hierarchical-clustering\hierarchical-clustering\hctree.NET5.vbproj,hierarchical-clustering\ClusteringAlgorithm\ClusteringAlgorithm.vb,27,17,4,6,1,0,0,3,0,1315,1.31 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\hierarchical-clustering\hierarchical-clustering\hctree.NET5.vbproj,hierarchical-clustering\ClusteringAlgorithm\DefaultClusteringAlgorithm.vb,171,28,35,108,1,1,1,6,0,7283,7.28 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\hierarchical-clustering\hierarchical-clustering\hctree.NET5.vbproj,hierarchical-clustering\ClusteringAlgorithm\DoCluster.vb,101,11,19,71,3,2,2,3,0,4490,4.49 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\hierarchical-clustering\hierarchical-clustering\hctree.NET5.vbproj,hierarchical-clustering\ClusteringAlgorithm\LinkageStrategy.vb,85,17,20,48,5,0,0,5,0,2994,2.99 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\hierarchical-clustering\hierarchical-clustering\hctree.NET5.vbproj,hierarchical-clustering\ClusteringAlgorithm\PDistClusteringAlgorithm.vb,106,31,20,55,1,0,0,6,0,4821,4.82 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\hierarchical-clustering\hierarchical-clustering\hctree.NET5.vbproj,hierarchical-clustering\HierarchyBuilder\Distance.vb,57,17,10,30,1,3,3,3,0,1992,1.99 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\hierarchical-clustering\hierarchical-clustering\hctree.NET5.vbproj,hierarchical-clustering\HierarchyBuilder\DistanceMap.vb,142,14,27,101,1,1,4,7,0,4545,4.54 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\hierarchical-clustering\hierarchical-clustering\hctree.NET5.vbproj,hierarchical-clustering\HierarchyBuilder\HierarchyBuilder.vb,145,43,22,80,1,5,2,2,0,5775,5.78 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\hierarchical-clustering\hierarchical-clustering\hctree.NET5.vbproj,hierarchical-clustering\HierarchyBuilder\HierarchyLink.vb,64,4,13,47,2,1,1,6,0,2201,2.20 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\hierarchical-clustering\hierarchical-clustering\hctree.NET5.vbproj,hierarchical-clustering\HierarchyBuilder\HierarchyTreeNode.vb,111,22,23,66,1,3,2,5,0,3667,3.67 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\hierarchical-clustering\hierarchical-clustering\hctree.NET5.vbproj,<project>,1237,260,226,751,19,26,21,53,0,46118,46.12 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\HMM\HMM.NET5.vbproj,HMM\Chain.vb,58,14,10,34,1,2,1,2,0,1630,1.63 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\HMM\HMM.NET5.vbproj,HMM\HMM.vb,62,5,11,46,1,0,1,6,0,2456,2.46 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\HMM\HMM.NET5.vbproj,HMM\MarkovChain.vb,27,0,5,22,1,0,1,2,0,988,988 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\HMM\HMM.NET5.vbproj,HMM\Utils.vb,25,0,4,21,1,0,0,3,0,978,978 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\HMM\HMM.NET5.vbproj,HMM\Algorithm\CalculateProb.vb,31,0,6,25,1,0,1,1,0,1087,1.09 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\HMM\HMM.NET5.vbproj,HMM\Algorithm\HMMAlgorithm\Backward.vb,24,0,5,19,1,0,1,1,0,896,896 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\HMM\HMM.NET5.vbproj,HMM\Algorithm\HMMAlgorithm\BaumWelch.vb,66,0,12,54,1,0,1,1,0,2743,2.74 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\HMM\HMM.NET5.vbproj,HMM\Algorithm\HMMAlgorithm\Bayes.vb,26,0,5,21,1,0,1,1,0,965,965 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\HMM\HMM.NET5.vbproj,HMM\Algorithm\HMMAlgorithm\Forward.vb,23,0,5,18,1,0,1,1,0,838,838 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\HMM\HMM.NET5.vbproj,HMM\Algorithm\HMMAlgorithm\HMMAlgorithm.vb,12,0,4,8,1,0,1,0,0,206,206 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\HMM\HMM.NET5.vbproj,HMM\Algorithm\HMMAlgorithm\Viterbi.vb,30,1,5,24,1,0,1,1,0,1380,1.38 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\HMM\HMM.NET5.vbproj,HMM\Algorithm\HMMChainAlgorithm\backwardFactory.vb,50,0,12,38,1,0,1,2,0,2010,2.01 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\HMM\HMM.NET5.vbproj,HMM\Algorithm\HMMChainAlgorithm\EM.vb,78,0,21,57,1,0,1,5,0,3060,3.06 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\HMM\HMM.NET5.vbproj,HMM\Algorithm\HMMChainAlgorithm\forwardFactory.vb,46,0,8,38,1,0,1,3,0,1974,1.97 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\HMM\HMM.NET5.vbproj,HMM\Algorithm\HMMChainAlgorithm\HMMChainAlgorithm.vb,13,0,4,9,1,0,1,0,0,331,331 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\HMM\HMM.NET5.vbproj,HMM\Algorithm\HMMChainAlgorithm\viterbiFactory.vb,87,0,15,72,1,0,1,4,0,3938,3.94 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\HMM\HMM.NET5.vbproj,HMM\Models\Alpha.vb,12,3,3,6,1,2,0,0,0,249,249 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\HMM\HMM.NET5.vbproj,HMM\Models\Beta.vb,12,3,3,6,1,2,0,0,0,230,230 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\HMM\HMM.NET5.vbproj,HMM\Models\Objects.vb,35,8,9,18,2,4,0,2,0,941,941 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\HMM\HMM.NET5.vbproj,HMM\Models\Psi.vb,21,0,7,14,3,6,0,0,0,458,458 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\HMM\HMM.NET5.vbproj,HMM\Models\PsiArray.vb,42,0,11,31,2,3,4,0,0,1147,1.15 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\HMM\HMM.NET5.vbproj,HMM\test\Program.vb,74,9,18,47,1,0,3,0,0,3116,3.12 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\HMM\HMM.NET5.vbproj,HMM\test\My Project\Application.Designer.vb,12,9,1,2,0,0,0,0,0,434,434 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\HMM\HMM.NET5.vbproj,HMM\test\My Project\AssemblyInfo.vb,35,15,7,13,0,0,0,0,0,1019,1019 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\HMM\HMM.NET5.vbproj,HMM\test\My Project\Resources.Designer.vb,62,23,8,31,1,2,0,0,0,2766,2.77 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\HMM\HMM.NET5.vbproj,HMM\test\My Project\Settings.Designer.vb,73,9,13,51,2,2,1,0,0,2966,2.97 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\HMM\HMM.NET5.vbproj,<project>,1036,99,212,725,29,23,23,35,0,38806,38.81 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\UMAP\UMAP.NET5.vbproj,UMAP\DistanceFunctions.vb,46,20,5,21,1,0,0,4,0,1848,1.85 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\UMAP\UMAP.NET5.vbproj,UMAP\OptimizationState.vb,39,12,4,23,1,0,0,1,0,1364,1.36 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\UMAP\UMAP.NET5.vbproj,UMAP\Umap.vb,473,105,74,294,1,1,6,11,0,20072,20.07 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\UMAP\UMAP.NET5.vbproj,UMAP\UmapProject.vb,151,25,31,95,1,6,1,3,0,4511,4.51 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\UMAP\UMAP.NET5.vbproj,UMAP\Components\DefaultRandomGenerator.vb,38,7,8,23,1,3,2,2,0,1788,1.79 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\UMAP\UMAP.NET5.vbproj,UMAP\Components\DistanceCalculation.vb,1,0,0,1,1,0,0,0,0,88,88 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\UMAP\UMAP.NET5.vbproj,UMAP\Components\Utils.vb,97,19,15,63,1,1,1,4,0,3131,3.13 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\UMAP\UMAP.NET5.vbproj,UMAP\Components\Heaps\Heap.vb,18,0,4,14,1,0,1,0,0,502,502 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\UMAP\UMAP.NET5.vbproj,UMAP\Components\Heaps\Heaps.vb,251,33,46,172,1,0,1,7,0,9546,9.55 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\UMAP\UMAP.NET5.vbproj,UMAP\Components\SIMD\SIMD.vb,238,0,49,189,1,0,2,3,0,8160,8.16 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\UMAP\UMAP.NET5.vbproj,UMAP\Components\SIMD\SIMDInt.vb,62,0,10,52,1,0,2,0,0,2058,2.06 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\UMAP\UMAP.NET5.vbproj,UMAP\Components\SparseMatrix\RowCol.vb,45,10,8,27,1,2,1,4,0,1445,1.45 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\UMAP\UMAP.NET5.vbproj,UMAP\Components\SparseMatrix\SparseMatrix.vb,275,21,52,202,1,1,6,17,0,10348,10.35 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\UMAP\UMAP.NET5.vbproj,UMAP\Components\Tree\FlatTree.vb,9,0,1,8,1,4,0,0,0,281,281 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\UMAP\UMAP.NET5.vbproj,UMAP\Components\Tree\RandomProjectionTreeNode.vb,11,0,1,10,1,6,0,0,0,410,410 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\UMAP\UMAP.NET5.vbproj,UMAP\Components\Tree\Tree.vb,256,40,38,178,1,0,0,10,0,11226,11.23 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\UMAP\UMAP.NET5.vbproj,UMAP\KNN\KNearestNeighbour.vb,100,29,17,54,1,0,1,3,0,4214,4.21 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\UMAP\UMAP.NET5.vbproj,UMAP\KNN\KNNArguments.vb,32,4,7,21,1,4,1,1,0,888,888 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\UMAP\UMAP.NET5.vbproj,UMAP\KNN\KNNState.vb,17,7,4,6,1,2,0,0,0,416,416 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\UMAP\UMAP.NET5.vbproj,UMAP\KNN\SmoothKNN.vb,160,4,31,125,1,0,1,3,0,6131,6.13 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\UMAP\UMAP.NET5.vbproj,UMAP\KNN\KDTree\KDAccessor.vb,51,0,10,41,1,0,2,5,0,1914,1.91 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\UMAP\UMAP.NET5.vbproj,UMAP\KNN\KDTree\KDPoint.vb,15,0,4,11,1,3,0,0,0,321,321 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\UMAP\UMAP.NET5.vbproj,UMAP\KNN\KDTree\KDTreeMetric.vb,45,0,5,40,1,0,0,1,0,1692,1.69 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\UMAP\UMAP.NET5.vbproj,UMAP\NNDescent\Abstract.vb,12,0,3,9,1,0,0,1,0,503,503 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\UMAP\UMAP.NET5.vbproj,UMAP\NNDescent\NNDescent.vb,133,43,19,71,1,0,1,1,0,6224,6.22 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\UMAP\UMAP.NET5.vbproj,UMAP\NNDescent\NNDescentLoop.vb,67,3,15,49,1,0,3,1,0,1889,1.89 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\UMAP\UMAP.NET5.vbproj,UMAP\NNDescent\RPTree.vb,90,48,9,33,1,0,3,0,0,4541,4.54 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\UMAP\UMAP.NET5.vbproj,UMAP\test\Program.vb,126,3,27,96,2,2,3,1,0,5740,5.74 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\UMAP\UMAP.NET5.vbproj,UMAP\test\test2.vb,17,0,5,12,1,0,1,0,0,525,525 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\UMAP\UMAP.NET5.vbproj,UMAP\test\My Project\Application.Designer.vb,12,9,1,2,0,0,0,0,0,434,434 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\UMAP\UMAP.NET5.vbproj,UMAP\test\My Project\AssemblyInfo.vb,35,15,7,13,0,0,0,0,0,1143,1.14 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\UMAP\UMAP.NET5.vbproj,UMAP\test\My Project\Resources.Designer.vb,62,23,8,31,1,2,0,0,0,2760,2.76 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\UMAP\UMAP.NET5.vbproj,UMAP\test\My Project\Settings.Designer.vb,73,9,13,51,2,2,1,0,0,2954,2.95 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\DataMining\UMAP\UMAP.NET5.vbproj,<project>,3057,489,531,2037,33,39,40,83,0,119067,119.07 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Extensions.vb,132,41,15,76,1,0,0,7,0,4521,4.52 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\NamespaceDoc.vb,6,3,1,2,1,0,0,0,0,195,195 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\PQTree.vb,966,90,67,809,1,0,5,17,0,43829,43.83 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\SparseGraph.vb,156,13,32,111,7,6,5,9,0,4766,4.77 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Utils.vb,85,20,10,55,1,0,0,3,0,2885,2.88 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Analysis\GraphAnalysis.vb,58,15,9,34,1,0,0,2,0,2176,2.18 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Analysis\Dijkstra\Dijkstra.vb,168,39,27,102,1,3,2,6,0,6876,6.88 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Analysis\Dijkstra\LinkCalculator.vb,230,36,47,147,4,0,4,5,0,7958,7.96 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Analysis\Dijkstra\Route.vb,67,3,14,50,1,4,4,2,0,1986,1.99 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Analysis\FastUnfolding\FastUnfolding.vb,116,15,23,78,1,0,1,4,0,3820,3.82 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Analysis\FastUnfolding\KeyMaps.vb,30,0,7,23,1,1,1,0,0,762,762 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Analysis\FastUnfolding\Matrix.vb,19,0,5,14,2,5,0,1,0,532,532 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Analysis\FastUnfolding\Utils.vb,48,8,9,31,1,0,0,1,0,1463,1.46 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Analysis\Louvain\Builder.vb,111,3,22,86,1,0,3,1,0,4475,4.47 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Analysis\Louvain\Edge.vb,22,6,4,12,1,0,1,1,0,576,576 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Analysis\Louvain\Louvain.vb,383,89,69,225,1,0,4,4,0,12413,12.41 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Analysis\PageRank\GraphMatrix.vb,103,11,16,76,1,0,1,3,0,3504,3.50 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Analysis\PageRank\PageRank.vb,204,50,37,117,1,0,1,4,0,8221,8.22 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Analysis\PageRank\WeightedPRGraph.vb,172,33,35,104,3,3,1,3,0,6219,6.22 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Analysis\PQDijkstra\BasicHeap.vb,68,2,12,54,1,1,2,1,0,2066,2.07 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Analysis\PQDijkstra\DijkstraFast.vb,269,103,34,132,9,0,4,7,0,11552,11.55 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Analysis\PQDijkstra\Example.vb,73,8,13,52,1,0,1,3,0,2536,2.54 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Analysis\PQDijkstra\HeapNode.vb,15,0,3,12,1,0,1,0,0,338,338 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Analysis\PQDijkstra\PQDijkstraProvider.vb,37,18,5,14,1,0,1,1,0,1556,1.56 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\KNN\Cosine.vb,17,0,5,12,1,0,0,2,0,463,463 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\KNN\KNN.vb,69,14,12,43,1,0,1,3,0,2706,2.71 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\KNN\ScoreMetric.vb,21,7,5,9,1,1,0,1,0,620,620 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Model\SGT.vb,358,110,52,196,3,2,1,12,0,13011,13.01 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Model\Abstract\Edge.vb,68,31,7,30,1,4,0,2,0,2268,2.27 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Model\Abstract\General.vb,31,5,7,19,2,0,2,1,0,905,905 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Model\Abstract\Graph.vb,350,120,43,187,1,3,2,19,0,12126,12.13 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Model\Abstract\Vertex.vb,60,17,9,34,1,2,4,2,0,1745,1.75 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Model\GridGraph\Extensions.vb,16,0,3,13,1,0,0,1,0,534,534 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Model\GridGraph\Grid.vb,83,22,16,45,1,2,3,3,0,2506,2.51 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Model\GridGraph\Grid2D.vb,341,97,41,203,1,4,2,15,0,13250,13.25 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Model\GridGraph\GridCell.vb,75,4,14,57,1,6,3,1,0,1936,1.94 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Model\GridGraph\IPoint2D.vb,18,6,5,7,1,2,0,0,0,405,405 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Model\GridGraph\Spatial3D.vb,134,27,18,89,1,1,1,6,0,5289,5.29 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Model\Tree\AbstractTree.vb,166,42,22,102,1,6,2,4,0,4726,4.73 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Model\Tree\TermTree.vb,80,11,13,56,1,0,1,5,0,2430,2.43 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Model\Tree\Tree.vb,89,28,16,45,2,2,3,4,0,2521,2.52 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Model\Tree\Trie.vb,181,34,32,115,2,4,3,7,0,5449,5.45 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Model\Tree\HuffmanTree\HuffmanNeuron.vb,41,3,6,32,1,4,1,3,0,1486,1.49 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Model\Tree\HuffmanTree\HuffmanNode.vb,16,4,4,8,1,3,0,1,0,424,424 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Model\Tree\HuffmanTree\HuffmanTree.vb,36,4,8,24,1,0,1,1,0,1046,1.05 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Model\Tree\KdTree\KdNodeAccessor.vb,40,16,6,18,1,0,0,0,0,1379,1.38 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Model\Tree\KdTree\KdNodeHeapItem.vb,31,12,6,13,1,2,1,1,0,856,856 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Model\Tree\KdTree\KdTree.vb,403,66,67,270,1,4,3,12,0,15026,15.03 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Model\Tree\KdTree\KdTreeNode.vb,53,13,10,30,1,6,1,2,0,1574,1.57 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Model\Tree\KdTree\Utils.vb,20,6,3,11,1,0,1,0,0,587,587 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Model\Tree\KdTree\ApproximateNearNeighbor\ApproximateNearNeighbor.vb,98,25,16,57,3,0,2,4,0,4132,4.13 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Model\Tree\KdTree\ApproximateNearNeighbor\KNeighbors.vb,22,6,4,12,1,0,1,0,0,618,618 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Model\Tree\KdTree\ApproximateNearNeighbor\TagVector.vb,47,15,8,24,1,4,2,1,0,1382,1.38 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Model\Tree\KdTree\ApproximateNearNeighbor\VectorAccessor.vb,55,4,10,41,1,0,2,5,0,2094,2.09 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\MST\DisjointSet.vb,76,0,13,63,1,0,6,1,0,2364,2.36 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\MST\DJSet.vb,43,0,9,34,1,1,3,0,0,1025,1.02 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\MST\DJSets.vb,47,0,8,39,1,0,4,1,0,1239,1.24 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\MST\Kruskal.vb,59,3,13,43,1,0,1,3,0,1869,1.87 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Network\DegreeData.vb,9,0,3,6,1,2,0,0,0,209,209 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Network\Edge.vb,8,0,2,6,1,0,1,0,0,158,158 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Network\Extensions.vb,95,23,15,57,1,0,0,4,0,4468,4.47 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Network\NamespaceDoc.vb,9,3,2,4,1,0,0,0,0,251,251 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Network\NetworkGraph.vb,42,14,8,20,1,2,2,0,0,1336,1.34 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Network\Node.vb,15,7,3,5,1,1,0,0,0,370,370 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Network\NodeMetaDataAccessor.vb,9,0,3,6,1,0,0,2,0,265,265 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Network\SubNetworkComponents.vb,156,13,29,114,1,0,1,6,0,5940,5.94 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\Network\Bipartite\BipartiteMatching.vb,262,66,43,153,3,4,7,6,0,10441,10.44 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\test\DijkstraTest.vb,32,0,7,25,1,0,1,0,0,928,928 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\test\Module1.vb,17,0,5,12,1,0,1,0,0,340,340 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\test\TreeTest.vb,17,0,5,12,1,0,1,0,0,368,368 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\test\My Project\Application.Designer.vb,12,9,1,2,0,0,0,0,0,451,451 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\test\My Project\AssemblyInfo.vb,35,15,7,13,0,0,0,0,0,1049,1.05 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\test\My Project\Resources.Designer.vb,63,23,8,32,1,2,0,0,0,2784,2.78 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,Graph\test\My Project\Settings.Designer.vb,73,9,13,51,2,2,1,0,0,2972,2.97 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\Graph\graph-netcore5.vbproj,<project>,7636,1540,1181,4915,102,99,114,226,0,277546,277.55 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\Bootstrapping\Bootstrapping.vbproj,Bootstrapping\Graph2Vec.vb,65,0,13,52,1,0,1,2,0,2395,2.40 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\Bootstrapping\Bootstrapping.vbproj,Bootstrapping\GraphEmbedding\Algorithm.vb,86,34,8,44,1,0,0,5,0,3888,3.89 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\Bootstrapping\Bootstrapping.vbproj,Bootstrapping\GraphEmbedding\Arguments.vb,29,0,6,23,1,6,0,0,0,1352,1.35 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\Bootstrapping\Bootstrapping.vbproj,Bootstrapping\GraphEmbedding\complex\AdaGrad.vb,111,0,11,100,1,0,2,0,0,5845,5.84 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\Bootstrapping\Bootstrapping.vbproj,Bootstrapping\GraphEmbedding\complex\ComplEx.vb,191,7,19,165,1,0,3,0,0,10783,10.78 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\Bootstrapping\Bootstrapping.vbproj,Bootstrapping\GraphEmbedding\complex\Evaluation.vb,144,0,9,135,1,0,2,0,0,7077,7.08 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\Bootstrapping\Bootstrapping.vbproj,Bootstrapping\GraphEmbedding\complex\Gradients.vb,94,0,9,85,1,0,2,1,0,5107,5.11 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\Bootstrapping\Bootstrapping.vbproj,Bootstrapping\GraphEmbedding\complex_NNE\AdaGrad.vb,126,2,11,113,1,0,2,0,0,6649,6.65 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\Bootstrapping\Bootstrapping.vbproj,Bootstrapping\GraphEmbedding\complex_NNE\ComplEx.vb,177,3,19,155,1,0,3,0,0,10541,10.54 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\Bootstrapping\Bootstrapping.vbproj,Bootstrapping\GraphEmbedding\complex_NNE\Evaluation.vb,144,0,9,135,1,0,2,0,0,7081,7.08 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\Bootstrapping\Bootstrapping.vbproj,Bootstrapping\GraphEmbedding\complex_NNE\Gradients.vb,83,0,9,74,1,0,2,1,0,4880,4.88 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\Bootstrapping\Bootstrapping.vbproj,Bootstrapping\GraphEmbedding\complex_NNE_AER\AdaGrad.vb,135,2,11,122,1,0,2,0,0,7142,7.14 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\Bootstrapping\Bootstrapping.vbproj,Bootstrapping\GraphEmbedding\complex_NNE_AER\AERGradients.vb,49,4,6,39,1,0,2,0,0,2356,2.36 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\Bootstrapping\Bootstrapping.vbproj,Bootstrapping\GraphEmbedding\complex_NNE_AER\ComplEx.vb,188,3,22,163,1,0,3,0,0,11128,11.13 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\Bootstrapping\Bootstrapping.vbproj,Bootstrapping\GraphEmbedding\complex_NNE_AER\Evaluation.vb,145,0,10,135,1,0,2,0,0,7087,7.09 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\Bootstrapping\Bootstrapping.vbproj,Bootstrapping\GraphEmbedding\complex_NNE_AER\Gradients.vb,83,0,9,74,1,0,2,1,0,4884,4.88 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\Bootstrapping\Bootstrapping.vbproj,Bootstrapping\GraphEmbedding\complex_R\AdaGrad.vb,120,0,11,109,1,0,2,0,0,6404,6.40 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\Bootstrapping\Bootstrapping.vbproj,Bootstrapping\GraphEmbedding\complex_R\ComplEx.vb,190,3,24,163,1,0,3,0,0,11114,11.11 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\Bootstrapping\Bootstrapping.vbproj,Bootstrapping\GraphEmbedding\complex_R\Evaluation.vb,145,0,10,135,1,0,2,0,0,7081,7.08 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\Bootstrapping\Bootstrapping.vbproj,Bootstrapping\GraphEmbedding\complex_R\Gradients.vb,83,0,9,74,1,0,2,1,0,4878,4.88 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\Bootstrapping\Bootstrapping.vbproj,Bootstrapping\GraphEmbedding\complex_R\RGradients.vb,54,11,6,37,1,0,2,0,0,2711,2.71 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\Bootstrapping\Bootstrapping.vbproj,Bootstrapping\GraphEmbedding\struct\Matrix.vb,218,0,27,191,3,1,11,7,0,8469,8.47 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\Bootstrapping\Bootstrapping.vbproj,Bootstrapping\GraphEmbedding\struct\Relation.vb,15,0,5,10,1,2,1,0,0,341,341 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\Bootstrapping\Bootstrapping.vbproj,Bootstrapping\GraphEmbedding\struct\Rule.vb,22,0,7,15,1,1,2,1,0,515,515 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\Bootstrapping\Bootstrapping.vbproj,Bootstrapping\GraphEmbedding\struct\RuleSet.vb,60,0,11,49,3,1,1,2,0,2098,2.10 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\Bootstrapping\Bootstrapping.vbproj,Bootstrapping\GraphEmbedding\struct\Triple.vb,26,6,5,15,1,3,1,1,0,800,800 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\Bootstrapping\Bootstrapping.vbproj,Bootstrapping\GraphEmbedding\struct\TripleDict.vb,30,0,9,21,1,0,2,1,0,847,847 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\Bootstrapping\Bootstrapping.vbproj,Bootstrapping\GraphEmbedding\struct\TripleSet.vb,104,0,15,89,3,0,4,5,0,4321,4.32 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\Bootstrapping\Bootstrapping.vbproj,Bootstrapping\GraphEmbedding\util\NegativeTripleGenerator.vb,77,0,18,59,1,0,1,3,0,3183,3.18 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\Bootstrapping\Bootstrapping.vbproj,Bootstrapping\GraphEmbedding\util\StringSplitter.vb,36,0,6,30,1,0,0,2,0,1378,1.38 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\Bootstrapping\Bootstrapping.vbproj,Bootstrapping\Node2Vec\AliasMethod.vb,141,67,21,53,1,0,1,1,0,6403,6.40 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\Bootstrapping\Bootstrapping.vbproj,Bootstrapping\Node2Vec\Graph.vb,244,58,22,164,1,0,4,7,0,10242,10.24 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\Bootstrapping\Bootstrapping.vbproj,Bootstrapping\Node2Vec\Solver.vb,85,23,15,47,1,0,0,2,0,3143,3.14 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\Bootstrapping\Bootstrapping.vbproj,<project>,3500,223,402,2875,39,14,69,43,0,172123,172.12 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CeNiN\CeNiN.vb,208,11,49,148,1,1,2,6,0,6833,6.83 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CeNiN\ImageProcessor.vb,62,0,13,49,2,0,0,3,0,2355,2.35 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CeNiN\NamespaceDoc.vb,10,5,1,4,1,0,0,0,0,247,247 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CeNiN\SaveModel.vb,111,4,17,90,1,0,6,1,0,3801,3.80 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CeNiN\Solver.vb,88,0,16,72,1,0,0,1,0,3506,3.51 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CeNiN\Layers\Convolution.vb,150,1,33,116,1,1,2,1,0,5364,5.36 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CeNiN\Layers\Input.vb,128,11,18,99,1,2,2,3,0,4669,4.67 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CeNiN\Layers\Layer.vb,125,20,24,81,1,1,10,2,0,4451,4.45 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CeNiN\Layers\Output.vb,54,4,12,38,1,3,1,4,0,1952,1.95 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CeNiN\Layers\Pool.vb,88,0,22,66,1,1,2,1,0,2759,2.76 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CeNiN\Layers\ReLU.vb,51,0,14,37,1,1,1,1,0,1419,1.42 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CeNiN\Layers\SoftMax.vb,45,0,11,34,1,1,1,1,0,1330,1.33 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\ConvolutionalNN.vb,221,58,39,124,1,5,3,8,0,7609,7.61 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\DataLink.vb,19,7,4,8,1,0,0,0,0,559,559 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\Dimension.vb,50,12,10,28,1,0,2,3,0,1430,1.43 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\LayerBuilder.vb,109,9,25,75,1,1,2,17,0,4048,4.05 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\LayerTypes.vb,36,9,4,23,1,0,0,0,0,1089,1.09 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\ReadModelCNN.vb,49,1,11,37,1,0,0,3,0,1684,1.68 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\SaveModelCNN.vb,39,3,7,29,1,0,3,0,0,1293,1.29 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\Trainer.vb,158,8,27,123,1,0,2,1,0,6488,6.49 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\Util.vb,27,6,3,18,1,0,0,1,0,883,883 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\data\BackPropResult.vb,55,7,11,37,1,4,1,1,0,1701,1.70 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\data\DataBlock.vb,283,85,42,156,1,6,19,8,0,9950,9.95 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\data\OutputDefinition.vb,53,21,9,23,1,4,2,1,0,1469,1.47 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\data\TrainResult.vb,47,3,10,34,1,1,1,1,0,1336,1.34 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\Layers\Conv2DTransposeLayer.vb,235,15,38,182,1,1,3,2,0,10118,10.12 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\Layers\ConvolutionLayer.vb,217,20,41,156,5,1,7,2,0,8762,8.76 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\Layers\DropoutLayer.vb,95,13,19,63,1,1,3,2,0,2989,2.99 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\Layers\FourierFeatureLayer.vb,98,26,14,58,1,1,2,1,0,4062,4.06 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\Layers\FullyConnectedLayer.vb,145,11,35,99,5,1,7,2,0,5084,5.08 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\Layers\GaussianLayer.vb,76,0,13,63,1,1,2,2,0,2734,2.73 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\Layers\InputLayer.vb,82,30,14,38,1,3,3,2,0,2973,2.97 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\Layers\Layer.vb,29,13,6,10,1,2,1,1,0,975,975 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\Layers\LeakyReluLayer.vb,60,1,14,45,1,1,3,2,0,1758,1.76 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\Layers\LocalResponseNormalizationLayer.vb,132,28,23,81,1,1,3,2,0,5064,5.06 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\Layers\MaxoutLayer.vb,130,14,15,101,1,1,3,2,0,4903,4.90 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\Layers\PoolingLayer.vb,238,31,49,158,7,1,10,3,0,8674,8.67 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\Layers\RectifiedLinearUnitsLayer.vb,74,13,15,46,1,1,2,2,0,2365,2.37 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\Layers\SigmoidLayer.vb,78,19,14,45,1,1,2,2,0,2655,2.65 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\Layers\TanhLayer.vb,60,7,11,42,1,1,2,2,0,1921,1.92 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\Layers\losslayers\LossLayer.vb,60,13,13,34,1,1,3,0,0,1974,1.97 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\Layers\losslayers\RegressionLayer.vb,66,10,15,41,1,1,2,4,0,2177,2.18 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\Layers\losslayers\SoftMaxLayer.vb,108,17,22,69,1,1,2,4,0,3390,3.39 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\Layers\losslayers\SVMLayer.vb,69,11,14,44,1,1,2,4,0,2212,2.21 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\trainers\AdaDeltaTrainer.vb,46,6,10,30,1,0,3,1,0,1566,1.57 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\trainers\AdaGradTrainer.vb,31,7,5,19,1,0,2,1,0,1061,1.06 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\trainers\AdamTrainer.vb,47,6,9,32,1,0,3,1,0,1984,1.98 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\trainers\NesterovTrainer.vb,24,5,5,14,1,0,2,0,0,812,812 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\trainers\SGDTrainer.vb,33,11,5,17,1,0,2,0,0,1287,1.29 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\trainers\TrainerAlgorithm.vb,147,22,30,95,1,6,3,2,0,5621,5.62 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\CNN\trainers\WindowGradTrainer.vb,36,10,8,18,1,0,2,0,0,1371,1.37 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\Layers\Linear.vb,39,3,8,28,1,0,2,2,0,1149,1.15 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\NeuralNetwork\Importance.vb,70,20,10,40,1,0,0,2,0,2941,2.94 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\NeuralNetwork\Netz.vb,280,6,48,226,1,10,6,1,0,10982,10.98 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\NeuralNetwork\Models\HiddenLayers.vb,119,39,16,64,1,3,4,4,0,4914,4.91 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\NeuralNetwork\Models\Layer.vb,187,53,21,113,1,4,7,4,0,7604,7.60 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\NeuralNetwork\Models\LayerActives.vb,58,19,7,32,1,2,1,3,0,2061,2.06 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\NeuralNetwork\Models\Network.vb,187,71,26,90,1,8,4,3,0,7495,7.50 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\NeuralNetwork\Models\Neuron.vb,308,89,48,171,1,8,3,7,0,11161,11.16 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\NeuralNetwork\Models\SoftmaxLayer.vb,68,11,13,44,1,0,2,1,0,2517,2.52 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\NeuralNetwork\Models\Synapse.vb,76,25,9,42,1,6,3,1,0,2433,2.43 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\NeuralNetwork\Models\Protocols\Dropout.vb,30,10,3,17,1,0,1,0,0,1176,1.18 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\NeuralNetwork\StoreProcedure\CreateSnapshot.vb,106,10,13,83,1,0,0,4,0,4027,4.03 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\NeuralNetwork\StoreProcedure\NamespaceDoc.vb,15,7,2,6,1,0,0,0,0,592,592 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\NeuralNetwork\StoreProcedure\Snapshot.vb,155,19,25,111,1,0,1,6,0,6207,6.21 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\NeuralNetwork\StoreProcedure\Formats\IntegralLoader.vb,179,22,25,132,3,0,0,4,0,7808,7.81 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\NeuralNetwork\StoreProcedure\Formats\Scattered.vb,166,28,28,110,1,0,1,4,0,6828,6.83 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\NeuralNetwork\StoreProcedure\Models\Layers.vb,44,3,9,32,2,5,0,4,0,1542,1.54 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\NeuralNetwork\StoreProcedure\Models\NeuralNetwork.vb,81,26,8,47,1,8,0,4,0,3625,3.62 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\NeuralNetwork\StoreProcedure\Models\Neuron.vb,47,15,8,24,2,8,0,2,0,1588,1.59 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\NeuralNetwork\Trainings\ANNTrainer.vb,449,95,66,288,1,9,11,8,0,17692,17.69 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\NeuralNetwork\Trainings\Helpers.vb,65,13,10,42,2,2,0,5,0,2419,2.42 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\NeuralNetwork\Trainings\IndividualParallelTraining.vb,153,4,28,121,2,0,5,4,0,6251,6.25 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\NeuralNetwork\Trainings\Reporter.vb,31,4,8,19,1,0,4,0,0,722,722 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\NeuralNetwork\Trainings\TrainingSample.vb,33,3,8,22,1,1,1,1,0,929,929 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\NeuralNetwork\Trainings\TrainingUtils.vb,55,11,9,35,1,0,3,2,0,2370,2.37 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\NeuralNetwork\Trainings\DarwinismHybrid\Accelerator.vb,57,4,9,44,1,0,1,2,0,2497,2.50 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\NeuralNetwork\Trainings\DarwinismHybrid\Fitness.vb,33,0,7,26,1,1,1,1,0,1185,1.19 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\NeuralNetwork\Trainings\DarwinismHybrid\NetworkIndividual.vb,204,10,40,154,1,2,3,6,0,7902,7.90 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\RNN\CharRNN.vb,187,42,35,110,1,0,3,2,0,7642,7.64 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\RNN\Options.vb,49,10,22,17,1,12,0,0,0,1424,1.42 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\RNN\math\Math.vb,56,15,10,31,1,1,0,4,0,1595,1.59 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\RNN\math\Matrix.vb,443,72,67,304,1,3,6,31,0,15597,15.60 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\RNN\math\Random.vb,54,17,10,27,1,0,0,4,0,1832,1.83 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\RNN\math\Utils.vb,49,8,9,32,1,0,0,3,0,1250,1.25 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\RNN\net\Alphabet.vb,117,43,18,56,1,0,1,6,0,3216,3.22 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\RNN\net\BasicRNN.vb,13,5,2,6,1,0,0,0,0,387,387 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\RNN\net\CharLevelRNN.vb,38,14,7,17,1,0,0,2,0,1436,1.44 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\RNN\net\MultiLayerCharLevelRNN.vb,119,55,16,48,1,3,5,3,0,3326,3.33 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\RNN\net\MultiLayerRNN.vb,203,50,40,113,1,4,3,3,0,5224,5.22 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\RNN\net\RNN.vb,27,12,5,10,1,0,0,0,0,1133,1.13 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\RNN\net\RNNLayer.vb,441,148,91,202,1,4,7,9,0,14959,14.96 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\RNN\net\RNNTrainer.vb,172,49,39,84,1,3,7,0,0,4547,4.55 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\RNN\net\SingleLayerCharLevelRNN.vb,101,35,17,49,1,3,5,3,0,2948,2.95 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\RNN\net\SingleLayerRNN.vb,120,27,26,67,1,4,3,3,0,3266,3.27 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\RNN\net\StringTrainingSet.vb,84,17,16,51,1,2,2,4,0,2350,2.35 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\RNN\net\interfaces\CharacterSampleable.vb,18,10,2,6,1,0,0,2,0,802,802 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\RNN\net\interfaces\IntegerSampleable.vb,17,9,2,6,1,0,0,2,0,706,706 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\RNN\net\interfaces\Trainable.vb,17,9,3,5,1,0,0,1,0,487,487 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\RNN\net\interfaces\TrainingSet.vb,17,6,4,7,1,0,1,2,0,444,444 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\test\Class1.vb,20,15,5,0,0,0,0,0,0,760,760 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\test\Dataset.vb,99,0,18,81,1,1,5,6,0,3206,3.21 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\test\MnistTest.vb,203,169,34,0,0,0,0,0,0,8412,8.41 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\test\Program.vb,69,59,10,0,0,0,0,0,0,2647,2.65 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,DeepLearning\test\RNNTest.vb,14,0,5,9,1,0,1,0,0,376,376 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\DeepLearning.NET6.vbproj,<project>,10724,2160,1914,6650,123,177,254,289,0,385306,385.31 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\test\test.vbproj,test\Class1.vb,20,15,5,0,0,0,0,0,0,760,760 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\test\test.vbproj,test\Dataset.vb,99,0,18,81,1,1,5,6,0,3206,3.21 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\test\test.vbproj,test\MnistTest.vb,203,169,34,0,0,0,0,0,0,8412,8.41 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\test\test.vbproj,test\Program.vb,69,59,10,0,0,0,0,0,0,2647,2.65 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\test\test.vbproj,test\RNNTest.vb,14,0,5,9,1,0,1,0,0,376,376 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\DeepLearning\test\test.vbproj,<project>,405,243,72,90,2,1,6,6,0,15401,15.40 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\Extensions.vb,83,32,9,42,1,0,0,3,0,3176,3.18 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\IterationReporter.vb,33,14,7,12,5,0,0,1,0,987,987 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\ComponentModel\Status0.vb,67,0,17,50,3,3,2,6,0,2046,2.05 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\ComponentModel\ActiveFunctions\ActiveFunctionXml.vb,145,28,12,105,1,7,0,4,0,5906,5.91 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\ComponentModel\ActiveFunctions\IActivationFunction.vb,93,39,14,40,1,1,0,1,0,3265,3.27 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\ComponentModel\ActiveFunctions\Functions\BipolarSigmoid.vb,114,69,10,35,1,2,2,3,0,3976,3.98 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\ComponentModel\ActiveFunctions\Functions\HyperbolicTangent.vb,56,22,7,27,1,1,0,3,0,1644,1.64 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\ComponentModel\ActiveFunctions\Functions\ReLU.vb,91,5,14,72,1,1,2,7,0,2666,2.67 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\ComponentModel\ActiveFunctions\Functions\Sigmoid.vb,125,74,12,39,1,2,2,4,0,4312,4.31 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\ComponentModel\ActiveFunctions\Functions\SigmoidFunction.vb,39,3,7,29,1,1,0,4,0,1401,1.40 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\ComponentModel\ActiveFunctions\Functions\Sinc.vb,36,0,6,30,1,1,0,3,0,1031,1.03 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\ComponentModel\ActiveFunctions\Functions\Softplus.vb,28,0,6,22,1,1,0,3,0,840,840 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\ComponentModel\ActiveFunctions\Functions\Threshold.vb,85,46,9,30,1,1,1,4,0,2728,2.73 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\ComponentModel\ActiveFunctions\Regression\Identical.vb,26,0,5,21,1,1,0,3,0,759,759 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\ComponentModel\ActiveFunctions\Regression\QLinear.vb,36,0,6,30,1,1,0,3,0,1003,1003 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\ComponentModel\DataSet\DataSet.vb,151,33,19,99,1,6,0,4,0,5804,5.80 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\ComponentModel\DataSet\Diagnostics.vb,65,2,8,55,1,0,0,2,0,2677,2.68 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\ComponentModel\DataSet\NamespaceDoc.vb,8,3,1,4,1,0,0,0,0,184,184 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\ComponentModel\DataSet\NormalizeMatrix.vb,112,29,13,70,1,2,0,6,0,5305,5.30 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\ComponentModel\DataSet\Sample.vb,278,60,41,177,2,7,10,7,0,10337,10.34 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\ComponentModel\DataSet\SampleHelper.vb,20,6,4,10,1,0,0,1,0,603,603 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\ComponentModel\DataSet\SampleList.vb,90,7,16,67,1,1,2,4,0,3153,3.15 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\Darwinism\DifferentialEvolution.vb,296,79,37,180,4,0,1,4,0,14103,14.10 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\Darwinism\GeneticAlgorithm\EnvironmentDriver.vb,182,39,27,116,2,7,5,2,0,7136,7.14 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\Darwinism\GeneticAlgorithm\Fitness.vb,70,58,5,7,1,1,0,1,0,2859,2.86 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\Darwinism\GeneticAlgorithm\GeneticAlgorithm.vb,216,87,28,101,1,5,4,3,0,9206,9.21 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\Darwinism\GeneticAlgorithm\Helper\GeneticHelper.vb,190,77,25,88,1,0,7,0,0,7263,7.26 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\Darwinism\GeneticAlgorithm\Helper\InitializationHelper.vb,94,33,10,51,1,0,0,3,0,4878,4.88 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\Darwinism\GeneticAlgorithm\Helper\MemoryDump.vb,65,14,13,38,1,0,5,0,0,2438,2.44 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\Darwinism\GeneticAlgorithm\Population\Collection.vb,24,4,7,13,1,0,1,0,0,859,859 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\Darwinism\GeneticAlgorithm\Population\Delegates.vb,25,8,8,9,3,1,0,0,0,779,779 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\Darwinism\GeneticAlgorithm\Population\ParallelCompute.vb,97,16,18,63,5,1,2,3,0,4190,4.19 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\Darwinism\GeneticAlgorithm\Population\Population.vb,171,61,24,86,1,3,5,4,0,7000,7.00 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\Darwinism\GeneticAlgorithm\Population\PopulationList.vb,54,4,10,40,1,1,3,1,0,1927,1.93 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\Darwinism\GeneticAlgorithm\Population\Substitution\EliteReplacement.vb,52,17,9,26,1,1,0,1,0,1999,2.00 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\Darwinism\GeneticAlgorithm\Population\Substitution\ReplacementStrategy.vb,31,3,5,23,3,1,0,2,0,1106,1.11 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\Darwinism\GeneticAlgorithm\Population\Substitution\SimpleReplacement.vb,37,15,6,16,1,1,0,1,0,1575,1.57 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\Darwinism\Models\Chromosome.vb,109,95,6,8,1,1,0,2,0,6679,6.68 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\Darwinism\Models\FitnessPool.vb,18,7,3,8,1,0,1,0,0,672,672 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\Darwinism\Models\GeneralFitnessPool.vb,113,25,19,69,1,2,3,2,0,4231,4.23 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\QLearning\Action.vb,31,16,5,10,1,2,0,1,0,1104,1.10 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\QLearning\Model.vb,54,6,10,38,3,11,4,0,0,1730,1.73 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\QLearning\QLearning.vb,84,34,15,35,1,3,3,0,0,2858,2.86 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\QLearning\QState.vb,71,23,13,35,2,6,1,1,0,2864,2.86 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\QLearning\QTable.vb,236,117,34,85,1,5,4,5,0,10825,10.82 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\QLearning\Maze-Q-Learning\Map.vb,42,2,4,36,1,0,0,2,0,1493,1.49 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\QLearning\Maze-Q-Learning\Maze.vb,130,3,24,103,1,3,8,3,0,3760,3.76 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\QLearning\Maze-Q-Learning\Program.vb,7,0,1,6,1,0,1,0,0,143,143 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\QLearning\Maze-Q-Learning\QTable.vb,38,5,5,28,1,0,2,1,0,1481,1.48 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\QLearning\Maze-Q-Learning\My Project\Application.Designer.vb,12,9,1,2,0,0,0,0,0,451,451 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\QLearning\Maze-Q-Learning\My Project\AssemblyInfo.vb,35,15,7,13,0,0,0,0,0,1169,1.17 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\QLearning\Maze-Q-Learning\My Project\Resources.Designer.vb,63,23,8,32,1,2,0,0,0,2792,2.79 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\QLearning\Maze-Q-Learning\My Project\Settings.Designer.vb,73,9,13,51,2,2,1,0,0,2988,2.99 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\RandomForests\Branch.vb,85,25,8,52,1,0,0,4,0,2911,2.91 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\RandomForests\File.vb,219,53,22,144,3,6,0,1,0,10394,10.39 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\RandomForests\LossFunction.vb,385,50,14,321,1,0,0,3,0,19899,19.90 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\RandomForests\NamespaceDoc.vb,60,55,1,4,1,0,0,0,0,3953,3.95 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\RandomForests\RanFog.vb,405,151,32,222,2,12,0,2,0,20971,20.97 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\LibSVM.vb,24,0,6,18,1,0,1,1,0,733,733 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\Logging.vb,28,3,6,19,1,1,2,0,0,764,764 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\Node.vb,95,43,15,37,1,2,2,5,0,3404,3.40 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\Prediction.vb,171,51,27,93,1,0,0,5,0,7330,7.33 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\Procedures.vb,1451,100,284,1067,3,2,15,16,0,52878,52.88 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\Scaling.vb,60,27,8,25,1,0,0,1,0,2346,2.35 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\SVMExtensions.vb,72,0,18,54,1,0,0,7,0,2191,2.19 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\SVMModel.vb,64,12,14,38,2,7,0,2,0,2072,2.07 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\SVMPrediction.vb,17,0,5,12,1,4,0,1,0,425,425 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\SVMUtilities.vb,112,10,19,83,1,0,0,3,0,4495,4.50 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\Training.vb,100,32,15,53,1,0,1,3,0,4064,4.06 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\Cache\Cache.vb,141,37,22,82,1,0,4,1,0,4511,4.51 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\Cache\head_t.vb,27,6,5,16,1,1,1,0,0,696,696 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\Kernel\IQMatrix.vb,8,0,1,7,1,0,1,2,0,239,239 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\Kernel\Kernel.vb,209,0,31,178,1,0,2,5,0,7063,7.06 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\Kernel\PrecomputedKernel.vb,119,62,20,37,1,0,3,0,0,4645,4.64 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\Models\Model.vb,128,53,23,52,1,13,1,2,0,4516,4.52 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\Models\Problem.vb,95,49,13,33,1,5,2,3,0,3342,3.34 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\Parameter\GridSquare.vb,25,12,3,10,1,0,0,1,0,638,638 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\Parameter\KernelType.vb,28,18,1,9,1,0,0,0,0,706,706 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\Parameter\Parameter.vb,198,74,26,98,1,13,1,4,0,6866,6.87 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\Parameter\ParameterSelection.vb,215,113,16,86,1,0,0,6,0,12170,12.17 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\Parameter\SvmType.vb,27,18,0,9,1,0,0,0,0,607,607 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\RangeTransform\GaussianTransform.vb,116,41,19,56,1,0,1,3,0,4358,4.36 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\RangeTransform\IRangeTransform.vb,38,30,2,6,1,0,0,2,0,1572,1.57 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\RangeTransform\RangeTransform.vb,150,55,21,74,1,0,2,4,0,6346,6.35 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\Solver\ONE_CLASS_Q.vb,51,0,13,38,1,0,2,2,0,1420,1.42 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\Solver\SolutionInfo.vb,24,6,5,13,1,5,0,1,0,678,678 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\Solver\Solver.vb,656,70,125,461,1,0,5,7,0,21518,21.52 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\Solver\Solver_NU.vb,247,15,44,188,1,0,2,3,0,8783,8.78 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\Solver\SVC_Q.vb,59,3,12,44,1,0,2,2,0,1741,1.74 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\Solver\SVR_Q.vb,81,1,15,65,1,0,2,2,0,2439,2.44 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\StorageProcedure\Models\Model.vb,56,0,15,41,2,7,4,4,0,1583,1.58 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\StorageProcedure\Models\ProblemTable.vb,126,26,17,83,2,4,0,5,0,4666,4.67 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\StorageProcedure\Models\SvmModelJSON.vb,196,34,34,128,4,21,0,10,0,7293,7.29 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\StorageProcedure\TextWriter\GaussianTransformText.vb,34,6,8,20,1,0,1,1,0,1053,1.05 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\StorageProcedure\TextWriter\ModelText.vb,120,6,32,82,1,0,1,1,0,4189,4.19 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\StorageProcedure\TextWriter\ProblemText.vb,38,5,9,24,1,0,1,1,0,1118,1.12 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\SVM\StorageProcedure\TextWriter\TransformText.vb,43,5,10,28,1,0,1,1,0,1262,1.26 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\test\activeTest.vb,40,0,4,36,1,0,1,1,0,1715,1.72 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\test\FileTest.vb,122,96,26,0,0,0,0,0,0,7003,7.00 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\test\Module1.vb,20,0,6,14,1,0,2,0,0,458,458 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\test\simpleANNtest.vb,85,1,16,68,1,0,1,0,0,5602,5.60 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\test\My Project\Application.Designer.vb,12,9,1,2,0,0,0,0,0,451,451 B
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\test\My Project\AssemblyInfo.vb,35,15,7,13,0,0,0,0,0,1143,1.14 KB
G:\GCModeller\src\runtime\sciBASIC#\Data_science\MachineLearning\MachineLearning\machine_learning-netcore5.vbproj,MachineLearning\test\My Project\Resources.Designer.vb,63,23,8,32,1,2,0,0,0,2775,2.77 KB