-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlog.txt
3905 lines (3905 loc) · 166 KB
/
log.txt
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
['0.csv', '1.csv', '10.csv', '11.csv', '12.csv', '13.csv', '14.csv', '15.csv', '16.csv', '17.csv', '18.csv', '19.csv', '2.csv', '20.csv', '21.csv', '22.csv', '23.csv', '24.csv', '25.csv', '26.csv', '27.csv', '28.csv', '29.csv', '3.csv', '30.csv', '31.csv', '32.csv', '33.csv', '34.csv', '35.csv', '36.csv', '37.csv', '38.csv', '39.csv', '4.csv', '40.csv', '41.csv', '42.csv', '43.csv', '44.csv', '45.csv', '46.csv', '47.csv', '48.csv', '49.csv', '5.csv', '6.csv', '7.csv', '8.csv', '9.csv']
----------profiling ----------
Got stdout: b'/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/0.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/1.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/10.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/11.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/12.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/13.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/14.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/15.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/16.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/17.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/18.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/19.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/2.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/20.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/21.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/22.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/23.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/24.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/25.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/26.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/27.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/28.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/29.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/3.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/30.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/31.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/32.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/33.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/34.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/35.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/36.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/37.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/38.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/39.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/4.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/40.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/41.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/42.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/43.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/44.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/45.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/46.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/47.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/48.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/49.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/5.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/6.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/7.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/8.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/9.csv,
--------- total number of files: 50 ---------
-----------initialize synonyms------------
--------schema matching load_header_and_sample_value-----------
----------------finish schema matching by name and type -------------------
----------------load files---------------
In total 50 files
--------------finish identifying pks--------------
0 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/0.csv 10000
1 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/1.csv 9990
2 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/10.csv 81
3 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/11.csv 81
4 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/12.csv 134
5 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/13.csv 76
6 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/14.csv 76
7 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/15.csv 71
8 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/16.csv 134
9 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/17.csv 97
10 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/18.csv 44
11 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/19.csv 34
12 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/2.csv 7355
13 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/20.csv 38
14 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/21.csv 30
15 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/22.csv 66
16 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/23.csv 17
17 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/24.csv 13
18 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/25.csv 51
19 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/26.csv 9
20 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/27.csv 8
21 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/28.csv 8
22 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/29.csv 16
23 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/3.csv 674
24 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/30.csv 28
25 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/31.csv 1
26 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/32.csv 8
27 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/33.csv 8
28 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/34.csv 3
29 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/35.csv 2
30 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/36.csv 2
31 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/37.csv 1
32 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/38.csv 1
33 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/39.csv 1
34 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/4.csv 667
35 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/40.csv 2
36 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/41.csv 2
37 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/42.csv 1
38 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/43.csv 2
39 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/44.csv 3
40 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/45.csv 2
41 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/46.csv 2
42 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/47.csv 1
43 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/48.csv 1
44 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/49.csv 2
45 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/5.csv 280
46 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/6.csv 200
47 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/7.csv 506
48 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/8.csv 502
49 /home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/9.csv 76
---------------finish row matching-----------------
'
---------pre_clustering----------
Got stdout: b'---------load global_cids from file -----------
50 files in total.
0 1 2 3 4 5 6 7 8 9 10 0
0 1 2 3 4 5 6 7 8 9 10 1
0 1 2 3 4 5 6 7 8 9 10 2
0 1 2 3 4 5 6 7 8 9 10 3
0 1 2 3 4 5 6 7 8 9 10 4
0 1 2 3 4 5 6 7 8 9 10 5
0 1 2 3 4 6 7 8 9 10 11 6
0 1 2 3 4 6 7 8 10 11 7
0 1 2 3 4 5 6 7 8 9 10 12 8
0 1 2 3 4 5 6 7 8 9 10 9
0 1 2 3 5 6 7 8 9 10 10
0 1 2 3 5 6 7 8 9 10 11
0 1 2 3 4 5 6 7 8 9 10 12
0 1 2 3 5 6 7 8 9 10 13
0 1 2 3 5 6 7 8 9 10 14
0 1 2 3 5 6 7 8 9 10 15
0 1 2 3 5 6 7 8 9 10 16
0 1 2 5 6 7 8 9 10 17
0 1 2 3 5 6 7 8 10 18
0 1 2 3 5 6 7 8 10 19
0 1 2 3 5 7 8 10 20
0 1 3 5 7 8 10 21
0 1 2 3 5 6 7 8 10 22
0 1 2 3 4 5 6 7 8 9 10 23
0 1 2 3 5 6 7 8 10 24
0 1 2 3 5 6 7 8 10 25
0 1 2 3 5 6 7 8 10 13 26
0 1 2 3 5 6 8 10 13 27
0 1 2 3 6 8 10 13 28
0 1 2 3 6 8 10 13 29
0 1 2 3 5 6 8 10 13 30
0 1 3 6 8 10 13 31
0 1 3 6 8 10 13 32
0 1 3 6 8 10 13 33
0 1 2 3 4 5 6 7 8 9 10 34
0 1 3 6 8 10 13 35
0 1 3 6 8 10 13 36
0 1 3 6 8 10 13 14 37
0 1 3 6 10 13 38
0 1 3 6 8 10 13 39
0 1 3 6 8 10 13 40
0 1 3 6 8 10 41
0 1 3 6 10 13 42
0 1 3 6 8 10 43
0 1 6 10 13 44
0 1 2 3 4 5 6 7 8 9 10 45
0 1 2 3 4 5 6 7 8 9 10 46
0 1 2 3 4 5 6 7 8 9 10 47
0 1 2 3 4 5 6 7 8 9 10 48
0 1 2 3 4 5 6 7 8 9 10 49
--------- cluster with the exact schema ---------
17 clusters
'
['0.csv', '1.csv', '10.csv', '11.csv', '12.csv', '13.csv', '14.csv', '15.csv', '16.csv', '17.csv', '18.csv', '19.csv', '2.csv', '20.csv', '21.csv', '22.csv', '23.csv', '24.csv', '25.csv', '26.csv', '27.csv', '28.csv', '29.csv', '3.csv', '30.csv', '31.csv', '32.csv', '33.csv', '34.csv', '35.csv', '36.csv', '37.csv', '38.csv', '39.csv', '4.csv', '40.csv', '41.csv', '42.csv', '43.csv', '44.csv', '45.csv', '46.csv', '47.csv', '48.csv', '49.csv', '5.csv', '6.csv', '7.csv', '8.csv', '9.csv']
----------preserving-ops----------
Got stdout: b'/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/0.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/1.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/10.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/11.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/12.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/13.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/14.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/15.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/16.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/17.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/18.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/19.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/2.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/20.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/21.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/22.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/23.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/24.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/25.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/26.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/27.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/28.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/29.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/3.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/30.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/31.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/32.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/33.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/34.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/35.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/36.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/37.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/38.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/39.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/4.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/40.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/41.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/42.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/43.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/44.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/45.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/46.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/47.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/48.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/49.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/5.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/6.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/7.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/8.csv,/home/slhuang/Public/2019_spring/lineage_inference/code/RELIC/RELIC_Silu/dataset/9.csv,--------- total number of files: 50 ---------
---------load row_l2g row_l2g from file -----------
50 files in total.
---------load col_g2l col_l2g from file -----------
50 files in total.
----------------load files---------------
In total 50 files
---------------load cluster from file---------------
In total 17 clusters
=======1.csv vs.(cell-jaccard) 0.csv=======
9990 rows; 11 columns.
Finish naiveCompareCell 49950 common cells. 219890 total cells.
=======10.csv vs.(cell-jaccard) 0.csv=======
81 rows; 11 columns.
Finish naiveCompareCell 68 common cells. 110891 total cells.
=======10.csv vs.(cell-jaccard) 1.csv=======
81 rows; 11 columns.
Finish naiveCompareCell 69 common cells. 110781 total cells.
=======11.csv vs.(cell-jaccard) 0.csv=======
81 rows; 11 columns.
Finish naiveCompareCell 68 common cells. 110891 total cells.
=======11.csv vs.(cell-jaccard) 1.csv=======
81 rows; 11 columns.
Finish naiveCompareCell 69 common cells. 110781 total cells.
=======11.csv vs.(cell-jaccard) 10.csv=======
81 rows; 11 columns.
Finish naiveCompareCell 891 common cells. 1782 total cells.
=======12.csv vs.(cell-jaccard) 0.csv=======
134 rows; 11 columns.
Finish naiveCompareCell 60 common cells. 111474 total cells.
=======12.csv vs.(cell-jaccard) 1.csv=======
134 rows; 11 columns.
Finish naiveCompareCell 61 common cells. 111364 total cells.
=======12.csv vs.(cell-jaccard) 10.csv=======
134 rows; 11 columns.
Finish naiveCompareCell 803 common cells. 2365 total cells.
=======12.csv vs.(cell-jaccard) 11.csv=======
134 rows; 11 columns.
Finish naiveCompareCell 803 common cells. 2365 total cells.
=======13.csv vs.(cell-jaccard) 0.csv=======
76 rows; 11 columns.
Finish naiveCompareCell 68 common cells. 110836 total cells.
=======13.csv vs.(cell-jaccard) 1.csv=======
76 rows; 11 columns.
Finish naiveCompareCell 69 common cells. 110726 total cells.
=======13.csv vs.(cell-jaccard) 10.csv=======
76 rows; 11 columns.
Finish naiveCompareCell 768 common cells. 1727 total cells.
=======13.csv vs.(cell-jaccard) 11.csv=======
76 rows; 11 columns.
Finish naiveCompareCell 768 common cells. 1727 total cells.
=======13.csv vs.(cell-jaccard) 12.csv=======
76 rows; 11 columns.
Finish naiveCompareCell 688 common cells. 2310 total cells.
=======14.csv vs.(cell-jaccard) 0.csv=======
76 rows; 11 columns.
Finish naiveCompareCell 68 common cells. 110836 total cells.
=======14.csv vs.(cell-jaccard) 1.csv=======
76 rows; 11 columns.
Finish naiveCompareCell 69 common cells. 110726 total cells.
=======14.csv vs.(cell-jaccard) 10.csv=======
76 rows; 11 columns.
Finish naiveCompareCell 692 common cells. 1727 total cells.
=======14.csv vs.(cell-jaccard) 11.csv=======
76 rows; 11 columns.
Finish naiveCompareCell 692 common cells. 1727 total cells.
=======14.csv vs.(cell-jaccard) 12.csv=======
76 rows; 11 columns.
Finish naiveCompareCell 620 common cells. 2310 total cells.
=======14.csv vs.(cell-jaccard) 13.csv=======
76 rows; 11 columns.
Finish naiveCompareCell 760 common cells. 1672 total cells.
=======15.csv vs.(cell-jaccard) 0.csv=======
71 rows; 10 columns.
Finish naiveCompareCell 63 common cells. 110710 total cells.
=======15.csv vs.(cell-jaccard) 1.csv=======
71 rows; 10 columns.
Finish naiveCompareCell 64 common cells. 110600 total cells.
=======15.csv vs.(cell-jaccard) 10.csv=======
71 rows; 10 columns.
Finish naiveCompareCell 493 common cells. 1601 total cells.
=======15.csv vs.(cell-jaccard) 11.csv=======
71 rows; 10 columns.
Finish naiveCompareCell 493 common cells. 1601 total cells.
=======15.csv vs.(cell-jaccard) 12.csv=======
71 rows; 10 columns.
Finish naiveCompareCell 451 common cells. 2184 total cells.
=======15.csv vs.(cell-jaccard) 13.csv=======
71 rows; 10 columns.
Finish naiveCompareCell 493 common cells. 1546 total cells.
=======15.csv vs.(cell-jaccard) 14.csv=======
71 rows; 10 columns.
Finish naiveCompareCell 563 common cells. 1546 total cells.
=======16.csv vs.(cell-jaccard) 0.csv=======
134 rows; 12 columns.
Finish naiveCompareCell 60 common cells. 111608 total cells.
=======16.csv vs.(cell-jaccard) 1.csv=======
134 rows; 12 columns.
Finish naiveCompareCell 61 common cells. 111498 total cells.
=======16.csv vs.(cell-jaccard) 10.csv=======
134 rows; 12 columns.
Finish naiveCompareCell 803 common cells. 2499 total cells.
=======16.csv vs.(cell-jaccard) 11.csv=======
134 rows; 12 columns.
Finish naiveCompareCell 803 common cells. 2499 total cells.
=======16.csv vs.(cell-jaccard) 12.csv=======
134 rows; 12 columns.
Finish naiveCompareCell 1474 common cells. 3082 total cells.
=======16.csv vs.(cell-jaccard) 13.csv=======
134 rows; 12 columns.
Finish naiveCompareCell 688 common cells. 2444 total cells.
=======16.csv vs.(cell-jaccard) 14.csv=======
134 rows; 12 columns.
Finish naiveCompareCell 620 common cells. 2444 total cells.
=======16.csv vs.(cell-jaccard) 15.csv=======
134 rows; 12 columns.
Finish naiveCompareCell 451 common cells. 2318 total cells.
=======17.csv vs.(cell-jaccard) 0.csv=======
97 rows; 11 columns.
Finish naiveCompareCell 68 common cells. 111067 total cells.
=======17.csv vs.(cell-jaccard) 1.csv=======
97 rows; 11 columns.
Finish naiveCompareCell 69 common cells. 110957 total cells.
=======17.csv vs.(cell-jaccard) 10.csv=======
97 rows; 11 columns.
Finish naiveCompareCell 768 common cells. 1958 total cells.
=======17.csv vs.(cell-jaccard) 11.csv=======
97 rows; 11 columns.
Finish naiveCompareCell 768 common cells. 1958 total cells.
=======17.csv vs.(cell-jaccard) 12.csv=======
97 rows; 11 columns.
Finish naiveCompareCell 688 common cells. 2541 total cells.
=======17.csv vs.(cell-jaccard) 13.csv=======
97 rows; 11 columns.
Finish naiveCompareCell 836 common cells. 1903 total cells.
=======17.csv vs.(cell-jaccard) 14.csv=======
97 rows; 11 columns.
Finish naiveCompareCell 760 common cells. 1903 total cells.
=======17.csv vs.(cell-jaccard) 15.csv=======
97 rows; 11 columns.
Finish naiveCompareCell 493 common cells. 1777 total cells.
=======17.csv vs.(cell-jaccard) 16.csv=======
97 rows; 11 columns.
Finish naiveCompareCell 688 common cells. 2675 total cells.
=======18.csv vs.(cell-jaccard) 0.csv=======
44 rows; 10 columns.
Finish naiveCompareCell 30 common cells. 110440 total cells.
=======18.csv vs.(cell-jaccard) 1.csv=======
44 rows; 10 columns.
Finish naiveCompareCell 30 common cells. 110330 total cells.
=======18.csv vs.(cell-jaccard) 10.csv=======
44 rows; 10 columns.
Finish naiveCompareCell 350 common cells. 1331 total cells.
=======18.csv vs.(cell-jaccard) 11.csv=======
44 rows; 10 columns.
Finish naiveCompareCell 350 common cells. 1331 total cells.
=======18.csv vs.(cell-jaccard) 12.csv=======
44 rows; 10 columns.
Finish naiveCompareCell 310 common cells. 1914 total cells.
=======18.csv vs.(cell-jaccard) 13.csv=======
44 rows; 10 columns.
Finish naiveCompareCell 350 common cells. 1276 total cells.
=======18.csv vs.(cell-jaccard) 14.csv=======
44 rows; 10 columns.
Finish naiveCompareCell 315 common cells. 1276 total cells.
=======18.csv vs.(cell-jaccard) 15.csv=======
44 rows; 10 columns.
Finish naiveCompareCell 230 common cells. 1150 total cells.
=======18.csv vs.(cell-jaccard) 16.csv=======
44 rows; 10 columns.
Finish naiveCompareCell 310 common cells. 2048 total cells.
=======18.csv vs.(cell-jaccard) 17.csv=======
44 rows; 10 columns.
Finish naiveCompareCell 440 common cells. 1507 total cells.
=======19.csv vs.(cell-jaccard) 0.csv=======
34 rows; 10 columns.
Finish naiveCompareCell 21 common cells. 110340 total cells.
=======19.csv vs.(cell-jaccard) 1.csv=======
34 rows; 10 columns.
Finish naiveCompareCell 21 common cells. 110230 total cells.
=======19.csv vs.(cell-jaccard) 10.csv=======
34 rows; 10 columns.
Finish naiveCompareCell 130 common cells. 1231 total cells.
=======19.csv vs.(cell-jaccard) 11.csv=======
34 rows; 10 columns.
Finish naiveCompareCell 130 common cells. 1231 total cells.
=======19.csv vs.(cell-jaccard) 12.csv=======
34 rows; 10 columns.
Finish naiveCompareCell 115 common cells. 1814 total cells.
=======19.csv vs.(cell-jaccard) 13.csv=======
34 rows; 10 columns.
Finish naiveCompareCell 130 common cells. 1176 total cells.
=======19.csv vs.(cell-jaccard) 14.csv=======
34 rows; 10 columns.
Finish naiveCompareCell 104 common cells. 1176 total cells.
=======19.csv vs.(cell-jaccard) 15.csv=======
34 rows; 10 columns.
Finish naiveCompareCell 95 common cells. 1050 total cells.
=======19.csv vs.(cell-jaccard) 16.csv=======
34 rows; 10 columns.
Finish naiveCompareCell 115 common cells. 1948 total cells.
=======19.csv vs.(cell-jaccard) 17.csv=======
34 rows; 10 columns.
Finish naiveCompareCell 170 common cells. 1407 total cells.
=======19.csv vs.(cell-jaccard) 18.csv=======
34 rows; 10 columns.
Finish naiveCompareCell 170 common cells. 780 total cells.
=======2.csv vs.(cell-jaccard) 0.csv=======
7355 rows; 11 columns.
Finish naiveCompareCell 36775 common cells. 190905 total cells.
=======2.csv vs.(cell-jaccard) 1.csv=======
7355 rows; 11 columns.
Finish naiveCompareCell 80905 common cells. 190795 total cells.
=======2.csv vs.(cell-jaccard) 10.csv=======
7355 rows; 11 columns.
Finish naiveCompareCell 49 common cells. 81796 total cells.
=======2.csv vs.(cell-jaccard) 11.csv=======
7355 rows; 11 columns.
Finish naiveCompareCell 49 common cells. 81796 total cells.
=======2.csv vs.(cell-jaccard) 12.csv=======
7355 rows; 11 columns.
Finish naiveCompareCell 43 common cells. 82379 total cells.
=======2.csv vs.(cell-jaccard) 13.csv=======
7355 rows; 11 columns.
Finish naiveCompareCell 49 common cells. 81741 total cells.
=======2.csv vs.(cell-jaccard) 14.csv=======
7355 rows; 11 columns.
Finish naiveCompareCell 49 common cells. 81741 total cells.
=======2.csv vs.(cell-jaccard) 15.csv=======
7355 rows; 11 columns.
Finish naiveCompareCell 47 common cells. 81615 total cells.
=======2.csv vs.(cell-jaccard) 16.csv=======
7355 rows; 11 columns.
Finish naiveCompareCell 43 common cells. 82513 total cells.
=======2.csv vs.(cell-jaccard) 17.csv=======
7355 rows; 11 columns.
Finish naiveCompareCell 49 common cells. 81972 total cells.
=======2.csv vs.(cell-jaccard) 18.csv=======
7355 rows; 11 columns.
Finish naiveCompareCell 21 common cells. 81345 total cells.
=======2.csv vs.(cell-jaccard) 19.csv=======
7355 rows; 11 columns.
Finish naiveCompareCell 12 common cells. 81245 total cells.
=======20.csv vs.(cell-jaccard) 0.csv=======
38 rows; 10 columns.
Finish naiveCompareCell 25 common cells. 110380 total cells.
=======20.csv vs.(cell-jaccard) 1.csv=======
38 rows; 10 columns.
Finish naiveCompareCell 25 common cells. 110270 total cells.
=======20.csv vs.(cell-jaccard) 10.csv=======
38 rows; 10 columns.
Finish naiveCompareCell 150 common cells. 1271 total cells.
=======20.csv vs.(cell-jaccard) 11.csv=======
38 rows; 10 columns.
Finish naiveCompareCell 150 common cells. 1271 total cells.
=======20.csv vs.(cell-jaccard) 12.csv=======
38 rows; 10 columns.
Finish naiveCompareCell 135 common cells. 1854 total cells.
=======20.csv vs.(cell-jaccard) 13.csv=======
38 rows; 10 columns.
Finish naiveCompareCell 150 common cells. 1216 total cells.
=======20.csv vs.(cell-jaccard) 14.csv=======
38 rows; 10 columns.
Finish naiveCompareCell 120 common cells. 1216 total cells.
=======20.csv vs.(cell-jaccard) 15.csv=======
38 rows; 10 columns.
Finish naiveCompareCell 115 common cells. 1090 total cells.
=======20.csv vs.(cell-jaccard) 16.csv=======
38 rows; 10 columns.
Finish naiveCompareCell 135 common cells. 1988 total cells.
=======20.csv vs.(cell-jaccard) 17.csv=======
38 rows; 10 columns.
Finish naiveCompareCell 190 common cells. 1447 total cells.
=======20.csv vs.(cell-jaccard) 18.csv=======
38 rows; 10 columns.
Finish naiveCompareCell 190 common cells. 820 total cells.
=======20.csv vs.(cell-jaccard) 19.csv=======
38 rows; 10 columns.
Finish naiveCompareCell 311 common cells. 720 total cells.
=======20.csv vs.(cell-jaccard) 2.csv=======
38 rows; 10 columns.
Finish naiveCompareCell 16 common cells. 81285 total cells.
=======21.csv vs.(cell-jaccard) 0.csv=======
30 rows; 10 columns.
Finish naiveCompareCell 19 common cells. 110300 total cells.
=======21.csv vs.(cell-jaccard) 1.csv=======
30 rows; 10 columns.
Finish naiveCompareCell 19 common cells. 110190 total cells.
=======21.csv vs.(cell-jaccard) 10.csv=======
30 rows; 10 columns.
Finish naiveCompareCell 115 common cells. 1191 total cells.
=======21.csv vs.(cell-jaccard) 11.csv=======
30 rows; 10 columns.
Finish naiveCompareCell 115 common cells. 1191 total cells.
=======21.csv vs.(cell-jaccard) 12.csv=======
30 rows; 10 columns.
Finish naiveCompareCell 100 common cells. 1774 total cells.
=======21.csv vs.(cell-jaccard) 13.csv=======
30 rows; 10 columns.
Finish naiveCompareCell 115 common cells. 1136 total cells.
=======21.csv vs.(cell-jaccard) 14.csv=======
30 rows; 10 columns.
Finish naiveCompareCell 92 common cells. 1136 total cells.
=======21.csv vs.(cell-jaccard) 15.csv=======
30 rows; 10 columns.
Finish naiveCompareCell 83 common cells. 1010 total cells.
=======21.csv vs.(cell-jaccard) 16.csv=======
30 rows; 10 columns.
Finish naiveCompareCell 100 common cells. 1908 total cells.
=======21.csv vs.(cell-jaccard) 17.csv=======
30 rows; 10 columns.
Finish naiveCompareCell 150 common cells. 1367 total cells.
=======21.csv vs.(cell-jaccard) 18.csv=======
30 rows; 10 columns.
Finish naiveCompareCell 150 common cells. 740 total cells.
=======21.csv vs.(cell-jaccard) 19.csv=======
30 rows; 10 columns.
Finish naiveCompareCell 300 common cells. 640 total cells.
=======21.csv vs.(cell-jaccard) 2.csv=======
30 rows; 10 columns.
Finish naiveCompareCell 11 common cells. 81205 total cells.
=======21.csv vs.(cell-jaccard) 20.csv=======
30 rows; 10 columns.
Finish naiveCompareCell 273 common cells. 680 total cells.
=======22.csv vs.(cell-jaccard) 0.csv=======
66 rows; 10 columns.
Finish naiveCompareCell 21 common cells. 110660 total cells.
=======22.csv vs.(cell-jaccard) 1.csv=======
66 rows; 10 columns.
Finish naiveCompareCell 21 common cells. 110550 total cells.
=======22.csv vs.(cell-jaccard) 10.csv=======
66 rows; 10 columns.
Finish naiveCompareCell 130 common cells. 1551 total cells.
=======22.csv vs.(cell-jaccard) 11.csv=======
66 rows; 10 columns.
Finish naiveCompareCell 130 common cells. 1551 total cells.
=======22.csv vs.(cell-jaccard) 12.csv=======
66 rows; 10 columns.
Finish naiveCompareCell 115 common cells. 2134 total cells.
=======22.csv vs.(cell-jaccard) 13.csv=======
66 rows; 10 columns.
Finish naiveCompareCell 130 common cells. 1496 total cells.
=======22.csv vs.(cell-jaccard) 14.csv=======
66 rows; 10 columns.
Finish naiveCompareCell 104 common cells. 1496 total cells.
=======22.csv vs.(cell-jaccard) 15.csv=======
66 rows; 10 columns.
Finish naiveCompareCell 95 common cells. 1370 total cells.
=======22.csv vs.(cell-jaccard) 16.csv=======
66 rows; 10 columns.
Finish naiveCompareCell 115 common cells. 2268 total cells.
=======22.csv vs.(cell-jaccard) 17.csv=======
66 rows; 10 columns.
Finish naiveCompareCell 170 common cells. 1727 total cells.
=======22.csv vs.(cell-jaccard) 18.csv=======
66 rows; 10 columns.
Finish naiveCompareCell 170 common cells. 1100 total cells.
=======22.csv vs.(cell-jaccard) 19.csv=======
66 rows; 10 columns.
Finish naiveCompareCell 340 common cells. 1000 total cells.
=======22.csv vs.(cell-jaccard) 2.csv=======
66 rows; 10 columns.
Finish naiveCompareCell 12 common cells. 81565 total cells.
=======22.csv vs.(cell-jaccard) 20.csv=======
66 rows; 10 columns.
Finish naiveCompareCell 311 common cells. 1040 total cells.
=======22.csv vs.(cell-jaccard) 21.csv=======
66 rows; 10 columns.
Finish naiveCompareCell 300 common cells. 960 total cells.
=======23.csv vs.(cell-jaccard) 0.csv=======
17 rows; 10 columns.
Finish naiveCompareCell 13 common cells. 110170 total cells.
=======23.csv vs.(cell-jaccard) 1.csv=======
17 rows; 10 columns.
Finish naiveCompareCell 13 common cells. 110060 total cells.
=======23.csv vs.(cell-jaccard) 10.csv=======
17 rows; 10 columns.
Finish naiveCompareCell 52 common cells. 1061 total cells.
=======23.csv vs.(cell-jaccard) 11.csv=======
17 rows; 10 columns.
Finish naiveCompareCell 52 common cells. 1061 total cells.
=======23.csv vs.(cell-jaccard) 12.csv=======
17 rows; 10 columns.
Finish naiveCompareCell 49 common cells. 1644 total cells.
=======23.csv vs.(cell-jaccard) 13.csv=======
17 rows; 10 columns.
Finish naiveCompareCell 52 common cells. 1006 total cells.
=======23.csv vs.(cell-jaccard) 14.csv=======
17 rows; 10 columns.
Finish naiveCompareCell 46 common cells. 1006 total cells.
=======23.csv vs.(cell-jaccard) 15.csv=======
17 rows; 10 columns.
Finish naiveCompareCell 40 common cells. 880 total cells.
=======23.csv vs.(cell-jaccard) 16.csv=======
17 rows; 10 columns.
Finish naiveCompareCell 49 common cells. 1778 total cells.
=======23.csv vs.(cell-jaccard) 17.csv=======
17 rows; 10 columns.
Finish naiveCompareCell 68 common cells. 1237 total cells.
=======23.csv vs.(cell-jaccard) 18.csv=======
17 rows; 10 columns.
Finish naiveCompareCell 68 common cells. 610 total cells.
=======23.csv vs.(cell-jaccard) 19.csv=======
17 rows; 10 columns.
Finish naiveCompareCell 136 common cells. 510 total cells.
=======23.csv vs.(cell-jaccard) 2.csv=======
17 rows; 10 columns.
Finish naiveCompareCell 7 common cells. 81075 total cells.
=======23.csv vs.(cell-jaccard) 20.csv=======
17 rows; 10 columns.
Finish naiveCompareCell 122 common cells. 550 total cells.
=======23.csv vs.(cell-jaccard) 21.csv=======
17 rows; 10 columns.
Finish naiveCompareCell 121 common cells. 470 total cells.
=======23.csv vs.(cell-jaccard) 22.csv=======
17 rows; 10 columns.
Finish naiveCompareCell 136 common cells. 830 total cells.
=======24.csv vs.(cell-jaccard) 0.csv=======
13 rows; 9 columns.
Finish naiveCompareCell 10 common cells. 110117 total cells.
=======24.csv vs.(cell-jaccard) 1.csv=======
13 rows; 9 columns.
Finish naiveCompareCell 10 common cells. 110007 total cells.
=======24.csv vs.(cell-jaccard) 10.csv=======
13 rows; 9 columns.
Finish naiveCompareCell 42 common cells. 1008 total cells.
=======24.csv vs.(cell-jaccard) 11.csv=======
13 rows; 9 columns.
Finish naiveCompareCell 42 common cells. 1008 total cells.
=======24.csv vs.(cell-jaccard) 12.csv=======
13 rows; 9 columns.
Finish naiveCompareCell 39 common cells. 1591 total cells.
=======24.csv vs.(cell-jaccard) 13.csv=======
13 rows; 9 columns.
Finish naiveCompareCell 42 common cells. 953 total cells.
=======24.csv vs.(cell-jaccard) 14.csv=======
13 rows; 9 columns.
Finish naiveCompareCell 36 common cells. 953 total cells.
=======24.csv vs.(cell-jaccard) 15.csv=======
13 rows; 9 columns.
Finish naiveCompareCell 33 common cells. 827 total cells.
=======24.csv vs.(cell-jaccard) 16.csv=======
13 rows; 9 columns.
Finish naiveCompareCell 39 common cells. 1725 total cells.
=======24.csv vs.(cell-jaccard) 17.csv=======
13 rows; 9 columns.
Finish naiveCompareCell 55 common cells. 1184 total cells.
=======24.csv vs.(cell-jaccard) 18.csv=======
13 rows; 9 columns.
Finish naiveCompareCell 55 common cells. 557 total cells.
=======24.csv vs.(cell-jaccard) 19.csv=======
13 rows; 9 columns.
Finish naiveCompareCell 94 common cells. 457 total cells.
=======24.csv vs.(cell-jaccard) 2.csv=======
13 rows; 9 columns.
Finish naiveCompareCell 6 common cells. 81022 total cells.
=======24.csv vs.(cell-jaccard) 20.csv=======
13 rows; 9 columns.
Finish naiveCompareCell 84 common cells. 497 total cells.
=======24.csv vs.(cell-jaccard) 21.csv=======
13 rows; 9 columns.
Finish naiveCompareCell 94 common cells. 417 total cells.
=======24.csv vs.(cell-jaccard) 22.csv=======
13 rows; 9 columns.
Finish naiveCompareCell 94 common cells. 777 total cells.
=======24.csv vs.(cell-jaccard) 23.csv=======
13 rows; 9 columns.
Finish naiveCompareCell 117 common cells. 287 total cells.
=======25.csv vs.(cell-jaccard) 0.csv=======
51 rows; 9 columns.
Finish naiveCompareCell 21 common cells. 110459 total cells.
=======25.csv vs.(cell-jaccard) 1.csv=======
51 rows; 9 columns.
Finish naiveCompareCell 21 common cells. 110349 total cells.
=======25.csv vs.(cell-jaccard) 10.csv=======
51 rows; 9 columns.
Finish naiveCompareCell 130 common cells. 1350 total cells.
=======25.csv vs.(cell-jaccard) 11.csv=======
51 rows; 9 columns.
Finish naiveCompareCell 130 common cells. 1350 total cells.
=======25.csv vs.(cell-jaccard) 12.csv=======
51 rows; 9 columns.
Finish naiveCompareCell 115 common cells. 1933 total cells.
=======25.csv vs.(cell-jaccard) 13.csv=======
51 rows; 9 columns.
Finish naiveCompareCell 130 common cells. 1295 total cells.
=======25.csv vs.(cell-jaccard) 14.csv=======
51 rows; 9 columns.
Finish naiveCompareCell 104 common cells. 1295 total cells.
=======25.csv vs.(cell-jaccard) 15.csv=======
51 rows; 9 columns.
Finish naiveCompareCell 95 common cells. 1169 total cells.
=======25.csv vs.(cell-jaccard) 16.csv=======
51 rows; 9 columns.
Finish naiveCompareCell 115 common cells. 2067 total cells.
=======25.csv vs.(cell-jaccard) 17.csv=======
51 rows; 9 columns.
Finish naiveCompareCell 150 common cells. 1526 total cells.
=======25.csv vs.(cell-jaccard) 18.csv=======
51 rows; 9 columns.
Finish naiveCompareCell 150 common cells. 899 total cells.
=======25.csv vs.(cell-jaccard) 19.csv=======
51 rows; 9 columns.
Finish naiveCompareCell 270 common cells. 799 total cells.
=======25.csv vs.(cell-jaccard) 2.csv=======
51 rows; 9 columns.
Finish naiveCompareCell 12 common cells. 81364 total cells.
=======25.csv vs.(cell-jaccard) 20.csv=======
51 rows; 9 columns.
Finish naiveCompareCell 243 common cells. 839 total cells.
=======25.csv vs.(cell-jaccard) 21.csv=======
51 rows; 9 columns.
Finish naiveCompareCell 243 common cells. 759 total cells.
=======25.csv vs.(cell-jaccard) 22.csv=======
51 rows; 9 columns.
Finish naiveCompareCell 459 common cells. 1119 total cells.
=======25.csv vs.(cell-jaccard) 23.csv=======
51 rows; 9 columns.
Finish naiveCompareCell 121 common cells. 629 total cells.
=======25.csv vs.(cell-jaccard) 24.csv=======
51 rows; 9 columns.
Finish naiveCompareCell 87 common cells. 576 total cells.
=======26.csv vs.(cell-jaccard) 0.csv=======
9 rows; 9 columns.
Finish naiveCompareCell 0 common cells. 110081 total cells.
=======26.csv vs.(cell-jaccard) 1.csv=======
9 rows; 9 columns.
Finish naiveCompareCell 0 common cells. 109971 total cells.
=======26.csv vs.(cell-jaccard) 10.csv=======
9 rows; 9 columns.
Finish naiveCompareCell 0 common cells. 972 total cells.
=======26.csv vs.(cell-jaccard) 11.csv=======
9 rows; 9 columns.
Finish naiveCompareCell 0 common cells. 972 total cells.
=======26.csv vs.(cell-jaccard) 12.csv=======
9 rows; 9 columns.
Finish naiveCompareCell 0 common cells. 1555 total cells.
=======26.csv vs.(cell-jaccard) 13.csv=======
9 rows; 9 columns.
Finish naiveCompareCell 0 common cells. 917 total cells.
=======26.csv vs.(cell-jaccard) 14.csv=======
9 rows; 9 columns.
Finish naiveCompareCell 0 common cells. 917 total cells.
=======26.csv vs.(cell-jaccard) 15.csv=======
9 rows; 9 columns.
Finish naiveCompareCell 0 common cells. 791 total cells.
=======26.csv vs.(cell-jaccard) 16.csv=======
9 rows; 9 columns.
Finish naiveCompareCell 0 common cells. 1689 total cells.
=======26.csv vs.(cell-jaccard) 17.csv=======
9 rows; 9 columns.
Finish naiveCompareCell 0 common cells. 1148 total cells.
=======26.csv vs.(cell-jaccard) 18.csv=======
9 rows; 9 columns.
Finish naiveCompareCell 0 common cells. 521 total cells.
=======26.csv vs.(cell-jaccard) 19.csv=======
9 rows; 9 columns.
Finish naiveCompareCell 0 common cells. 421 total cells.
=======26.csv vs.(cell-jaccard) 2.csv=======
9 rows; 9 columns.
Finish naiveCompareCell 0 common cells. 80986 total cells.
=======26.csv vs.(cell-jaccard) 20.csv=======
9 rows; 9 columns.
Finish naiveCompareCell 0 common cells. 461 total cells.
=======26.csv vs.(cell-jaccard) 21.csv=======
9 rows; 9 columns.
Finish naiveCompareCell 0 common cells. 381 total cells.
=======26.csv vs.(cell-jaccard) 22.csv=======
9 rows; 9 columns.
Finish naiveCompareCell 81 common cells. 741 total cells.
=======26.csv vs.(cell-jaccard) 23.csv=======
9 rows; 9 columns.
Finish naiveCompareCell 0 common cells. 251 total cells.
=======26.csv vs.(cell-jaccard) 24.csv=======
9 rows; 9 columns.
Finish naiveCompareCell 0 common cells. 198 total cells.
=======26.csv vs.(cell-jaccard) 25.csv=======
9 rows; 9 columns.
Finish naiveCompareCell 81 common cells. 540 total cells.
=======27.csv vs.(cell-jaccard) 0.csv=======
8 rows; 8 columns.
Finish naiveCompareCell 0 common cells. 110064 total cells.
=======27.csv vs.(cell-jaccard) 1.csv=======
8 rows; 8 columns.
Finish naiveCompareCell 0 common cells. 109954 total cells.
=======27.csv vs.(cell-jaccard) 10.csv=======
8 rows; 8 columns.
Finish naiveCompareCell 0 common cells. 955 total cells.
=======27.csv vs.(cell-jaccard) 11.csv=======
8 rows; 8 columns.
Finish naiveCompareCell 0 common cells. 955 total cells.
=======27.csv vs.(cell-jaccard) 12.csv=======
8 rows; 8 columns.
Finish naiveCompareCell 0 common cells. 1538 total cells.
=======27.csv vs.(cell-jaccard) 13.csv=======
8 rows; 8 columns.
Finish naiveCompareCell 0 common cells. 900 total cells.
=======27.csv vs.(cell-jaccard) 14.csv=======
8 rows; 8 columns.
Finish naiveCompareCell 0 common cells. 900 total cells.
=======27.csv vs.(cell-jaccard) 15.csv=======
8 rows; 8 columns.
Finish naiveCompareCell 0 common cells. 774 total cells.
=======27.csv vs.(cell-jaccard) 16.csv=======
8 rows; 8 columns.
Finish naiveCompareCell 0 common cells. 1672 total cells.
=======27.csv vs.(cell-jaccard) 17.csv=======
8 rows; 8 columns.
Finish naiveCompareCell 0 common cells. 1131 total cells.
=======27.csv vs.(cell-jaccard) 18.csv=======
8 rows; 8 columns.
Finish naiveCompareCell 0 common cells. 504 total cells.
=======27.csv vs.(cell-jaccard) 19.csv=======
8 rows; 8 columns.
Finish naiveCompareCell 0 common cells. 404 total cells.
=======27.csv vs.(cell-jaccard) 2.csv=======
8 rows; 8 columns.
Finish naiveCompareCell 0 common cells. 80969 total cells.
=======27.csv vs.(cell-jaccard) 20.csv=======
8 rows; 8 columns.
Finish naiveCompareCell 0 common cells. 444 total cells.
=======27.csv vs.(cell-jaccard) 21.csv=======
8 rows; 8 columns.
Finish naiveCompareCell 0 common cells. 364 total cells.
=======27.csv vs.(cell-jaccard) 22.csv=======
8 rows; 8 columns.
Finish naiveCompareCell 64 common cells. 724 total cells.
=======27.csv vs.(cell-jaccard) 23.csv=======
8 rows; 8 columns.
Finish naiveCompareCell 0 common cells. 234 total cells.
=======27.csv vs.(cell-jaccard) 24.csv=======
8 rows; 8 columns.
Finish naiveCompareCell 0 common cells. 181 total cells.
=======27.csv vs.(cell-jaccard) 25.csv=======
8 rows; 8 columns.
Finish naiveCompareCell 64 common cells. 523 total cells.
=======27.csv vs.(cell-jaccard) 26.csv=======
8 rows; 8 columns.
Finish naiveCompareCell 64 common cells. 145 total cells.
=======28.csv vs.(cell-jaccard) 0.csv=======
8 rows; 7 columns.
Finish naiveCompareCell 0 common cells. 110056 total cells.
=======28.csv vs.(cell-jaccard) 1.csv=======
8 rows; 7 columns.
Finish naiveCompareCell 0 common cells. 109946 total cells.
=======28.csv vs.(cell-jaccard) 10.csv=======
8 rows; 7 columns.
Finish naiveCompareCell 0 common cells. 947 total cells.
=======28.csv vs.(cell-jaccard) 11.csv=======
8 rows; 7 columns.
Finish naiveCompareCell 0 common cells. 947 total cells.
=======28.csv vs.(cell-jaccard) 12.csv=======
8 rows; 7 columns.
Finish naiveCompareCell 0 common cells. 1530 total cells.
=======28.csv vs.(cell-jaccard) 13.csv=======
8 rows; 7 columns.
Finish naiveCompareCell 0 common cells. 892 total cells.
=======28.csv vs.(cell-jaccard) 14.csv=======
8 rows; 7 columns.
Finish naiveCompareCell 0 common cells. 892 total cells.
=======28.csv vs.(cell-jaccard) 15.csv=======
8 rows; 7 columns.
Finish naiveCompareCell 0 common cells. 766 total cells.
=======28.csv vs.(cell-jaccard) 16.csv=======
8 rows; 7 columns.
Finish naiveCompareCell 0 common cells. 1664 total cells.
=======28.csv vs.(cell-jaccard) 17.csv=======
8 rows; 7 columns.
Finish naiveCompareCell 0 common cells. 1123 total cells.
=======28.csv vs.(cell-jaccard) 18.csv=======
8 rows; 7 columns.
Finish naiveCompareCell 0 common cells. 496 total cells.
=======28.csv vs.(cell-jaccard) 19.csv=======
8 rows; 7 columns.
Finish naiveCompareCell 0 common cells. 396 total cells.
=======28.csv vs.(cell-jaccard) 2.csv=======
8 rows; 7 columns.
Finish naiveCompareCell 0 common cells. 80961 total cells.
=======28.csv vs.(cell-jaccard) 20.csv=======
8 rows; 7 columns.
Finish naiveCompareCell 0 common cells. 436 total cells.
=======28.csv vs.(cell-jaccard) 21.csv=======
8 rows; 7 columns.
Finish naiveCompareCell 0 common cells. 356 total cells.
=======28.csv vs.(cell-jaccard) 22.csv=======
8 rows; 7 columns.
Finish naiveCompareCell 56 common cells. 716 total cells.
=======28.csv vs.(cell-jaccard) 23.csv=======
8 rows; 7 columns.
Finish naiveCompareCell 0 common cells. 226 total cells.
=======28.csv vs.(cell-jaccard) 24.csv=======
8 rows; 7 columns.
Finish naiveCompareCell 0 common cells. 173 total cells.
=======28.csv vs.(cell-jaccard) 25.csv=======
8 rows; 7 columns.
Finish naiveCompareCell 56 common cells. 515 total cells.
=======28.csv vs.(cell-jaccard) 26.csv=======
8 rows; 7 columns.
Finish naiveCompareCell 56 common cells. 137 total cells.
=======28.csv vs.(cell-jaccard) 27.csv=======
8 rows; 7 columns.
Finish naiveCompareCell 56 common cells. 120 total cells.
=======29.csv vs.(cell-jaccard) 0.csv=======
16 rows; 9 columns.
Finish naiveCompareCell 11 common cells. 110144 total cells.
=======29.csv vs.(cell-jaccard) 1.csv=======
16 rows; 9 columns.
Finish naiveCompareCell 11 common cells. 110034 total cells.
=======29.csv vs.(cell-jaccard) 10.csv=======
16 rows; 9 columns.
Finish naiveCompareCell 60 common cells. 1035 total cells.
=======29.csv vs.(cell-jaccard) 11.csv=======
16 rows; 9 columns.
Finish naiveCompareCell 60 common cells. 1035 total cells.
=======29.csv vs.(cell-jaccard) 12.csv=======
16 rows; 9 columns.
Finish naiveCompareCell 50 common cells. 1618 total cells.
=======29.csv vs.(cell-jaccard) 13.csv=======
16 rows; 9 columns.
Finish naiveCompareCell 60 common cells. 980 total cells.
=======29.csv vs.(cell-jaccard) 14.csv=======
16 rows; 9 columns.
Finish naiveCompareCell 48 common cells. 980 total cells.
=======29.csv vs.(cell-jaccard) 15.csv=======
16 rows; 9 columns.
Finish naiveCompareCell 44 common cells. 854 total cells.
=======29.csv vs.(cell-jaccard) 16.csv=======
16 rows; 9 columns.
Finish naiveCompareCell 50 common cells. 1752 total cells.
=======29.csv vs.(cell-jaccard) 17.csv=======
16 rows; 9 columns.
Finish naiveCompareCell 65 common cells. 1211 total cells.
=======29.csv vs.(cell-jaccard) 18.csv=======
16 rows; 9 columns.
Finish naiveCompareCell 65 common cells. 584 total cells.
=======29.csv vs.(cell-jaccard) 19.csv=======
16 rows; 9 columns.
Finish naiveCompareCell 117 common cells. 484 total cells.
=======29.csv vs.(cell-jaccard) 2.csv=======
16 rows; 9 columns.
Finish naiveCompareCell 8 common cells. 81049 total cells.
=======29.csv vs.(cell-jaccard) 20.csv=======
16 rows; 9 columns.
Finish naiveCompareCell 99 common cells. 524 total cells.
=======29.csv vs.(cell-jaccard) 21.csv=======
16 rows; 9 columns.
Finish naiveCompareCell 99 common cells. 444 total cells.
=======29.csv vs.(cell-jaccard) 22.csv=======
16 rows; 9 columns.
Finish naiveCompareCell 144 common cells. 804 total cells.
=======29.csv vs.(cell-jaccard) 23.csv=======
16 rows; 9 columns.
Finish naiveCompareCell 45 common cells. 314 total cells.
=======29.csv vs.(cell-jaccard) 24.csv=======
16 rows; 9 columns.
Finish naiveCompareCell 26 common cells. 261 total cells.
=======29.csv vs.(cell-jaccard) 25.csv=======
16 rows; 9 columns.
Finish naiveCompareCell 144 common cells. 603 total cells.
=======29.csv vs.(cell-jaccard) 26.csv=======
16 rows; 9 columns.
Finish naiveCompareCell 18 common cells. 225 total cells.
=======29.csv vs.(cell-jaccard) 27.csv=======
16 rows; 9 columns.
Finish naiveCompareCell 16 common cells. 208 total cells.
=======29.csv vs.(cell-jaccard) 28.csv=======
16 rows; 9 columns.
Finish naiveCompareCell 14 common cells. 200 total cells.
=======3.csv vs.(cell-jaccard) 0.csv=======
674 rows; 11 columns.
Finish naiveCompareCell 1348 common cells. 117414 total cells.
=======3.csv vs.(cell-jaccard) 1.csv=======
674 rows; 11 columns.
Finish naiveCompareCell 3370 common cells. 117304 total cells.
=======3.csv vs.(cell-jaccard) 10.csv=======
674 rows; 11 columns.
Finish naiveCompareCell 341 common cells. 8305 total cells.
=======3.csv vs.(cell-jaccard) 11.csv=======
674 rows; 11 columns.
Finish naiveCompareCell 341 common cells. 8305 total cells.
=======3.csv vs.(cell-jaccard) 12.csv=======
674 rows; 11 columns.
Finish naiveCompareCell 301 common cells. 8888 total cells.
=======3.csv vs.(cell-jaccard) 13.csv=======
674 rows; 11 columns.
Finish naiveCompareCell 341 common cells. 8250 total cells.
=======3.csv vs.(cell-jaccard) 14.csv=======
674 rows; 11 columns.
Finish naiveCompareCell 273 common cells. 8250 total cells.
=======3.csv vs.(cell-jaccard) 15.csv=======
674 rows; 11 columns.
Finish naiveCompareCell 253 common cells. 8124 total cells.
=======3.csv vs.(cell-jaccard) 16.csv=======
674 rows; 11 columns.
Finish naiveCompareCell 301 common cells. 9022 total cells.
=======3.csv vs.(cell-jaccard) 17.csv=======
674 rows; 11 columns.
Finish naiveCompareCell 341 common cells. 8481 total cells.
=======3.csv vs.(cell-jaccard) 18.csv=======
674 rows; 11 columns.
Finish naiveCompareCell 150 common cells. 7854 total cells.
=======3.csv vs.(cell-jaccard) 19.csv=======
674 rows; 11 columns.
Finish naiveCompareCell 84 common cells. 7754 total cells.
=======3.csv vs.(cell-jaccard) 2.csv=======
674 rows; 11 columns.
Finish naiveCompareCell 2535 common cells. 88319 total cells.
=======3.csv vs.(cell-jaccard) 20.csv=======
674 rows; 11 columns.
Finish naiveCompareCell 100 common cells. 7794 total cells.
=======3.csv vs.(cell-jaccard) 21.csv=======
674 rows; 11 columns.
Finish naiveCompareCell 76 common cells. 7714 total cells.
=======3.csv vs.(cell-jaccard) 22.csv=======
674 rows; 11 columns.
Finish naiveCompareCell 84 common cells. 8074 total cells.
=======3.csv vs.(cell-jaccard) 23.csv=======
674 rows; 11 columns.
Finish naiveCompareCell 39 common cells. 7584 total cells.
=======3.csv vs.(cell-jaccard) 24.csv=======
674 rows; 11 columns.
Finish naiveCompareCell 32 common cells. 7531 total cells.
=======3.csv vs.(cell-jaccard) 25.csv=======
674 rows; 11 columns.
Finish naiveCompareCell 84 common cells. 7873 total cells.
=======3.csv vs.(cell-jaccard) 26.csv=======
674 rows; 11 columns.
Finish naiveCompareCell 0 common cells. 7495 total cells.
=======3.csv vs.(cell-jaccard) 27.csv=======
674 rows; 11 columns.
Finish naiveCompareCell 0 common cells. 7478 total cells.
=======3.csv vs.(cell-jaccard) 28.csv=======
674 rows; 11 columns.
Finish naiveCompareCell 0 common cells. 7470 total cells.
=======3.csv vs.(cell-jaccard) 29.csv=======
674 rows; 11 columns.
Finish naiveCompareCell 44 common cells. 7558 total cells.
=======30.csv vs.(cell-jaccard) 0.csv=======
28 rows; 9 columns.
Finish naiveCompareCell 11 common cells. 110252 total cells.
=======30.csv vs.(cell-jaccard) 1.csv=======
28 rows; 9 columns.
Finish naiveCompareCell 11 common cells. 110142 total cells.
=======30.csv vs.(cell-jaccard) 10.csv=======
28 rows; 9 columns.
Finish naiveCompareCell 56 common cells. 1143 total cells.
=======30.csv vs.(cell-jaccard) 11.csv=======
28 rows; 9 columns.
Finish naiveCompareCell 56 common cells. 1143 total cells.
=======30.csv vs.(cell-jaccard) 12.csv=======
28 rows; 9 columns.
Finish naiveCompareCell 47 common cells. 1726 total cells.
=======30.csv vs.(cell-jaccard) 13.csv=======
28 rows; 9 columns.
Finish naiveCompareCell 56 common cells. 1088 total cells.
=======30.csv vs.(cell-jaccard) 14.csv=======
28 rows; 9 columns.
Finish naiveCompareCell 44 common cells. 1088 total cells.
=======30.csv vs.(cell-jaccard) 15.csv=======
28 rows; 9 columns.
Finish naiveCompareCell 41 common cells. 962 total cells.
=======30.csv vs.(cell-jaccard) 16.csv=======
28 rows; 9 columns.
Finish naiveCompareCell 47 common cells. 1860 total cells.
=======30.csv vs.(cell-jaccard) 17.csv=======
28 rows; 9 columns.
Finish naiveCompareCell 56 common cells. 1319 total cells.
=======30.csv vs.(cell-jaccard) 18.csv=======
28 rows; 9 columns.
Finish naiveCompareCell 56 common cells. 692 total cells.
=======30.csv vs.(cell-jaccard) 19.csv=======
28 rows; 9 columns.
Finish naiveCompareCell 90 common cells. 592 total cells.
=======30.csv vs.(cell-jaccard) 2.csv=======
28 rows; 9 columns.
Finish naiveCompareCell 8 common cells. 81157 total cells.
=======30.csv vs.(cell-jaccard) 20.csv=======
28 rows; 9 columns.
Finish naiveCompareCell 83 common cells. 632 total cells.
=======30.csv vs.(cell-jaccard) 21.csv=======