-
Notifications
You must be signed in to change notification settings - Fork 0
/
wombat_supervised.csv
We can make this file beautiful and searchable if this error is corrected: Illegal quoting in line 2.
1287 lines (1287 loc) · 385 KB
/
wombat_supervised.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
logtype measures testIndex trainP trainR trainF trainT testP testR testF testT linkspec dataset
log jaccard 0 0.7509293680297398 0.20466058763931105 0.32165605095541405 19163.0 0.9444444444444444 0.15454545454545454 0.265625 3.0 "OR(jaccard(x.name,y.name)|0.60,jaccard(x.name,y.description)|0.60)|0" ABTBUY
log jarowinkler 0 0.24765868886576484 0.48226950354609927 0.32726022688209006 19734.0 0.7638888888888888 0.5 0.6043956043956044 1556.0 "OR(OR(jarowinkler(x.name,y.name)|0.83,jarowinkler(x.name,y.description)|0.83)|0,jarowinkler(x.description,y.name)|0.83)|0" ABTBUY
log jaro 0 0.5212121212121212 0.17426545086119555 0.2611996962794229 3014.0 0.9375 0.13636363636363635 0.2380952380952381 111.0 "jaro(x.name,y.name)|0.80" ABTBUY
log soundex 0 0.07979626485568761 0.3333333333333333 0.12876712328767123 45079.0 0.44660194174757284 0.41818181818181815 0.43192488262910794 2.0 "OR(soundex(x.description,y.name)|1.00,soundex(x.description,y.description)|1.00)|0" ABTBUY
log mongeelkan 0 0.42913385826771655 0.331306990881459 0.37392795883361923 18422.0 0.8611111111111112 0.2818181818181818 0.4246575342465754 603.0 "mongeelkan(x.name,y.name)|0.80" ABTBUY
log levenstein 0 1.0 0.010131712259371834 0.020060180541624874 18817.0 0.0 0.0 0.0 4.0 "levenstein(x.name,y.name)|1.00" ABTBUY
log ratcliffobershelp 0 0.36219640971488914 0.3475177304964539 0.3547052740434333 18623.0 0.8043478260869565 0.33636363636363636 0.47435897435897434 3839.0 "OR(OR(OR(ratcliffobershelp(x.name,y.name)|0.70,ratcliffobershelp(x.description,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0,ratcliffobershelp(x.name,y.description)|0.60)|0" ABTBUY
log trigrams 0 0.3758921490880254 0.48024316109422494 0.42170818505338076 18862.0 0.859375 0.5 0.632183908045977 6.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log exactmatch 0 1.0 0.010131712259371834 0.020060180541624874 17370.0 0.0 0.0 0.0 2.0 "exactmatch(x.name,y.name)|1.00" ABTBUY
best trigrams 0 0.3758921490880254 0.48024316109422494 0.42170818505338076 18862.0 0.859375 0.5 0.632183908045977 6.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,jaccard 0 0.38978723404255317 0.46403242147923 0.42368177613320995 17892.0 0.859375 0.5 0.632183908045977 6.0 "OR(OR(trigrams(x.name,y.name)|0.60,jaccard(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,jarowinkler 0 0.373933281613654 0.48834853090172237 0.4235500878734622 17656.0 0.8615384615384616 0.509090909090909 0.64 1130.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,jarowinkler(x.description,y.name)|0.83)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,jaro 0 0.37023186237845923 0.5015197568389058 0.42598967297762474 10192.0 0.8636363636363636 0.5181818181818182 0.6477272727272728 115.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,jaro(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,soundex 0 0.3758921490880254 0.48024316109422494 0.42170818505338076 25288.0 0.859375 0.5 0.632183908045977 6.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan 0 0.35989196488858877 0.5400202634245187 0.43192868719611016 18131.0 0.8450704225352113 0.5454545454545454 0.6629834254143646 1268.0 "OR(DIFF(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,mongeelkan(x.price,y.name)|0.60)|0,mongeelkan(x.name,y.name)|0.80)|0" ABTBUY
log trigrams,levenstein 0 0.3758921490880254 0.48024316109422494 0.42170818505338076 17852.0 0.859375 0.5 0.632183908045977 6.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,ratcliffobershelp 0 0.3683098591549296 0.5298885511651469 0.43456584960531786 18299.0 0.8405797101449275 0.5272727272727272 0.6480446927374302 1025.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,exactmatch 0 0.3758921490880254 0.48024316109422494 0.42170818505338076 17899.0 0.859375 0.5 0.632183908045977 6.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
best trigrams,mongeelkan 0 0.35989196488858877 0.5400202634245187 0.43192868719611016 18131.0 0.8450704225352113 0.5454545454545454 0.6629834254143646 1268.0 "OR(DIFF(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,mongeelkan(x.price,y.name)|0.60)|0,mongeelkan(x.name,y.name)|0.80)|0" ABTBUY
log trigrams,mongeelkan,jaccard 0 0.3695496783416726 0.5238095238095238 0.43336127409891034 18062.0 0.8450704225352113 0.5454545454545454 0.6629834254143646 1275.0 "OR(DIFF(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,jaccard(x.name,y.description)|0.60)|0,mongeelkan(x.price,y.name)|0.60)|0,mongeelkan(x.name,y.name)|0.80)|0" ABTBUY
log trigrams,mongeelkan,jarowinkler 0 0.35771276595744683 0.5450861195542046 0.43195503813729424 18273.0 0.8472222222222222 0.5545454545454546 0.6703296703296703 1786.0 "OR(OR(DIFF(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,mongeelkan(x.price,y.name)|0.60)|0,mongeelkan(x.name,y.name)|0.80)|0,jarowinkler(x.description,y.name)|0.83)|0" ABTBUY
log trigrams,mongeelkan,jaro 0 0.3586885245901639 0.5542046605876393 0.4355095541401274 12909.0 0.8493150684931506 0.5636363636363636 0.6775956284153005 1383.0 "OR(DIFF(OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,jaro(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,mongeelkan(x.price,y.name)|0.60)|0,mongeelkan(x.name,y.name)|0.80)|0" ABTBUY
log trigrams,mongeelkan,soundex 0 0.35989196488858877 0.5400202634245187 0.43192868719611016 22984.0 0.8450704225352113 0.5454545454545454 0.6629834254143646 1268.0 "OR(DIFF(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,mongeelkan(x.price,y.name)|0.60)|0,mongeelkan(x.name,y.name)|0.80)|0" ABTBUY
log trigrams,mongeelkan,levenstein 0 0.35989196488858877 0.5400202634245187 0.43192868719611016 17884.0 0.8450704225352113 0.5454545454545454 0.6629834254143646 1268.0 "OR(DIFF(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,mongeelkan(x.price,y.name)|0.60)|0,mongeelkan(x.name,y.name)|0.80)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp 0 0.3553770086526576 0.5825734549138805 0.44145873320537427 18224.0 0.8311688311688312 0.5818181818181818 0.6844919786096256 2848.0 "OR(OR(DIFF(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,mongeelkan(x.price,y.name)|0.60)|0,mongeelkan(x.name,y.name)|0.80)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,exactmatch 0 0.35989196488858877 0.5400202634245187 0.43192868719611016 17868.0 0.8450704225352113 0.5454545454545454 0.6629834254143646 1268.0 "OR(DIFF(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,mongeelkan(x.price,y.name)|0.60)|0,mongeelkan(x.name,y.name)|0.80)|0" ABTBUY
best trigrams,mongeelkan,ratcliffobershelp 0 0.3553770086526576 0.5825734549138805 0.44145873320537427 18224.0 0.8311688311688312 0.5818181818181818 0.6844919786096256 2848.0 "OR(OR(DIFF(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,mongeelkan(x.price,y.name)|0.60)|0,mongeelkan(x.name,y.name)|0.80)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,jaccard 0 0.3634590377113134 0.5663627152988855 0.4427722772277228 18114.0 0.8311688311688312 0.5818181818181818 0.6844919786096256 2285.0 "OR(OR(DIFF(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,jaccard(x.name,y.description)|0.60)|0,mongeelkan(x.price,y.name)|0.60)|0,mongeelkan(x.name,y.name)|0.80)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,jarowinkler 0 0.3553770086526576 0.5825734549138805 0.44145873320537427 18090.0 0.8311688311688312 0.5818181818181818 0.6844919786096256 2848.0 "OR(OR(DIFF(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,mongeelkan(x.price,y.name)|0.60)|0,mongeelkan(x.name,y.name)|0.80)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,jaro 0 0.35709895513214507 0.5886524822695035 0.44452945677123185 14378.0 0.8311688311688312 0.5818181818181818 0.6844919786096256 1888.0 "OR(DIFF(OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,jaro(x.name,y.name)|0.80)|0,mongeelkan(x.price,y.name)|0.60)|0,mongeelkan(x.name,y.name)|0.80)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,soundex 0 0.3553770086526576 0.5825734549138805 0.44145873320537427 21855.0 0.8311688311688312 0.5818181818181818 0.6844919786096256 2848.0 "OR(OR(DIFF(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,mongeelkan(x.price,y.name)|0.60)|0,mongeelkan(x.name,y.name)|0.80)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,levenstein 0 0.3553770086526576 0.5825734549138805 0.44145873320537427 18129.0 0.8311688311688312 0.5818181818181818 0.6844919786096256 2848.0 "OR(OR(DIFF(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,mongeelkan(x.price,y.name)|0.60)|0,mongeelkan(x.name,y.name)|0.80)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,exactmatch 0 0.3553770086526576 0.5825734549138805 0.44145873320537427 18987.0 0.8311688311688312 0.5818181818181818 0.6844919786096256 2848.0 "OR(OR(DIFF(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,mongeelkan(x.price,y.name)|0.60)|0,mongeelkan(x.name,y.name)|0.80)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log jaccard 1 0.7107142857142857 0.2012133468149646 0.3136327817178881 17662.0 1.0 0.18518518518518517 0.3125 3.0 "OR(jaccard(x.name,y.name)|0.60,jaccard(x.name,y.description)|0.60)|0" ABTBUY
log jarowinkler 1 0.2451678535096643 0.487360970677452 0.32622673434856175 21604.0 0.7123287671232876 0.48148148148148145 0.574585635359116 2089.0 "OR(OR(OR(jarowinkler(x.name,y.name)|0.83,jarowinkler(x.name,y.description)|0.83)|0,jarowinkler(x.description,y.name)|0.83)|0,jarowinkler(x.description,y.description)|0.83)|0" ABTBUY
log jaro 1 0.16463042150274892 0.544994944388271 0.25287356321839083 6161.0 0.5714285714285714 0.5555555555555556 0.5633802816901409 107.0 "jaro(x.name,y.name)|0.70" ABTBUY
log soundex 1 0.08140385084084815 0.33771486349848334 0.13118617439120187 38021.0 0.37962962962962965 0.37962962962962965 0.37962962962962965 2.0 "OR(soundex(x.description,y.name)|1.00,soundex(x.description,y.description)|1.00)|0" ABTBUY
log mongeelkan 1 0.42818791946308726 0.3225480283114257 0.3679354094579008 20456.0 0.7959183673469388 0.3611111111111111 0.49681528662420377 563.0 "mongeelkan(x.name,y.name)|0.80" ABTBUY
log levenstein 1 1.0 0.00910010111223458 0.018036072144288578 17096.0 1.0 0.009259259259259259 0.018348623853211007 3.0 "levenstein(x.name,y.name)|1.00" ABTBUY
log ratcliffobershelp 1 0.3648068669527897 0.3437815975733064 0.3539823008849558 18984.0 0.8163265306122449 0.37037037037037035 0.5095541401273886 2883.0 "OR(OR(OR(ratcliffobershelp(x.name,y.name)|0.70,ratcliffobershelp(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0,ratcliffobershelp(x.description,y.description)|0.60)|0" ABTBUY
log trigrams 1 0.38 0.48028311425682507 0.4242965609647164 18867.0 0.8059701492537313 0.5 0.6171428571428571 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.description,y.name)|0.60)|0,trigrams(x.name,y.description)|0.60)|0" ABTBUY
log exactmatch 1 1.0 0.00910010111223458 0.018036072144288578 17890.0 1.0 0.009259259259259259 0.018348623853211007 0.0 "exactmatch(x.name,y.name)|1.00" ABTBUY
best trigrams 1 0.38 0.48028311425682507 0.4242965609647164 18867.0 0.8059701492537313 0.5 0.6171428571428571 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.description,y.name)|0.60)|0,trigrams(x.name,y.description)|0.60)|0" ABTBUY
log trigrams,jaccard 1 0.39451114922813035 0.46511627906976744 0.4269141531322506 18159.0 0.803030303030303 0.49074074074074076 0.6091954022988506 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,jaccard(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,jarowinkler 1 0.37922895357985836 0.487360970677452 0.4265486725663717 18488.0 0.8 0.5185185185185185 0.6292134831460674 2688.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,jarowinkler(x.description,y.name)|0.83)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,jaro 1 0.38 0.48028311425682507 0.4242965609647164 10201.0 0.8059701492537313 0.5 0.6171428571428571 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.description,y.name)|0.60)|0,trigrams(x.name,y.description)|0.60)|0" ABTBUY
log trigrams,soundex 1 0.38 0.48028311425682507 0.4242965609647164 25593.0 0.8059701492537313 0.5 0.6171428571428571 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.description,y.name)|0.60)|0,trigrams(x.name,y.description)|0.60)|0" ABTBUY
log trigrams,mongeelkan 1 0.36295283663704714 0.5369059656218402 0.43311582381729197 18617.0 0.7901234567901234 0.5925925925925926 0.6772486772486772 571.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,levenstein 1 0.38 0.48028311425682507 0.4242965609647164 19056.0 0.8059701492537313 0.5 0.6171428571428571 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.description,y.name)|0.60)|0,trigrams(x.name,y.description)|0.60)|0" ABTBUY
log trigrams,ratcliffobershelp 1 0.3695806680881308 0.5257836198179979 0.4340567612687813 18242.0 0.8157894736842105 0.5740740740740741 0.6739130434782609 3355.0 "OR(OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0,ratcliffobershelp(x.description,y.description)|0.60)|0" ABTBUY
log trigrams,exactmatch 1 0.38 0.48028311425682507 0.4242965609647164 17882.0 0.8059701492537313 0.5 0.6171428571428571 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.description,y.name)|0.60)|0,trigrams(x.name,y.description)|0.60)|0" ABTBUY
best trigrams,mongeelkan 1 0.36295283663704714 0.5369059656218402 0.43311582381729197 18617.0 0.7901234567901234 0.5925925925925926 0.6772486772486772 571.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,jaccard 1 0.3725631768953069 0.5217391304347826 0.43470935130581295 17967.0 0.7875 0.5833333333333334 0.6702127659574468 571.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,jaccard(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,jarowinkler 1 0.36209239130434784 0.538928210313448 0.4331572531491264 18111.0 0.7857142857142857 0.6111111111111112 0.6875000000000001 1085.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,jarowinkler(x.description,y.name)|0.83)|0" ABTBUY
log trigrams,mongeelkan,jaro 1 0.36295283663704714 0.5369059656218402 0.43311582381729197 12893.0 0.7901234567901234 0.5925925925925926 0.6772486772486772 571.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,soundex 1 0.36295283663704714 0.5369059656218402 0.43311582381729197 23032.0 0.7901234567901234 0.5925925925925926 0.6772486772486772 571.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,levenstein 1 0.36295283663704714 0.5369059656218402 0.43311582381729197 17840.0 0.7901234567901234 0.5925925925925926 0.6772486772486772 571.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp 1 0.3573216520650814 0.5773508594539939 0.4414379590258987 18155.0 0.7931034482758621 0.6388888888888888 0.7076923076923076 4008.0 "OR(OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,ratcliffobershelp(x.name,y.name)|0.70)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,exactmatch 1 0.36295283663704714 0.5369059656218402 0.43311582381729197 18237.0 0.7901234567901234 0.5925925925925926 0.6772486772486772 571.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
best trigrams,mongeelkan,ratcliffobershelp 1 0.3573216520650814 0.5773508594539939 0.4414379590258987 18155.0 0.7931034482758621 0.6388888888888888 0.7076923076923076 4008.0 "OR(OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,ratcliffobershelp(x.name,y.name)|0.70)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,jaccard 1 0.36561264822134387 0.5611729019211324 0.4427602712405265 17707.0 0.7906976744186046 0.6296296296296297 0.7010309278350516 2210.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,ratcliffobershelp(x.name,y.name)|0.70)|0,jaccard(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,jarowinkler 1 0.3573216520650814 0.5773508594539939 0.4414379590258987 18336.0 0.7931034482758621 0.6388888888888888 0.7076923076923076 4008.0 "OR(OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,ratcliffobershelp(x.name,y.name)|0.70)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,jaro 1 0.3573216520650814 0.5773508594539939 0.4414379590258987 14569.0 0.7931034482758621 0.6388888888888888 0.7076923076923076 4008.0 "OR(OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,ratcliffobershelp(x.name,y.name)|0.70)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,soundex 1 0.3573216520650814 0.5773508594539939 0.4414379590258987 22356.0 0.7931034482758621 0.6388888888888888 0.7076923076923076 4008.0 "OR(OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,ratcliffobershelp(x.name,y.name)|0.70)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,levenstein 1 0.3573216520650814 0.5773508594539939 0.4414379590258987 17766.0 0.7931034482758621 0.6388888888888888 0.7076923076923076 4008.0 "OR(OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,ratcliffobershelp(x.name,y.name)|0.70)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,exactmatch 1 0.3573216520650814 0.5773508594539939 0.4414379590258987 17784.0 0.7931034482758621 0.6388888888888888 0.7076923076923076 4008.0 "OR(OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,ratcliffobershelp(x.name,y.name)|0.70)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log jaccard 2 0.7101449275362319 0.19878296146044624 0.31061806656101426 17998.0 1.0 0.2072072072072072 0.3432835820895522 2.0 "OR(jaccard(x.name,y.name)|0.60,jaccard(x.name,y.description)|0.60)|0" ABTBUY
log jarowinkler 2 0.25248821372446306 0.48884381338742394 0.3329879101899827 21888.0 0.6582278481012658 0.46846846846846846 0.5473684210526315 2078.0 "OR(OR(OR(jarowinkler(x.name,y.name)|0.83,jarowinkler(x.name,y.description)|0.83)|0,jarowinkler(x.description,y.name)|0.83)|0,jarowinkler(x.description,y.description)|0.83)|0" ABTBUY
log jaro 2 0.3254437869822485 0.2231237322515213 0.2647412755716005 3442.0 0.8275862068965517 0.21621621621621623 0.3428571428571429 155.0 "OR(jaro(x.name,y.name)|0.80,jaro(x.name,y.description)|0.70)|0" ABTBUY
log soundex 2 0.07841306884480746 0.3407707910750507 0.12749003984063745 50810.0 0.4148936170212766 0.35135135135135137 0.38048780487804873 3.0 "OR(soundex(x.description,y.name)|1.00,soundex(x.description,y.description)|1.00)|0" ABTBUY
log mongeelkan 2 0.39974779319041615 0.32150101419878296 0.356379988757729 22739.0 0.9534883720930233 0.36936936936936937 0.5324675324675324 699.0 "mongeelkan(x.name,y.name)|0.80" ABTBUY
log levenstein 2 1.0 0.009127789046653144 0.018090452261306532 19171.0 1.0 0.009009009009009009 0.01785714285714286 3.0 "levenstein(x.name,y.name)|1.00" ABTBUY
log ratcliffobershelp 2 0.37362637362637363 0.3448275862068966 0.3586497890295359 21047.0 0.7692307692307693 0.36036036036036034 0.4907975460122699 2640.0 "OR(OR(OR(ratcliffobershelp(x.name,y.name)|0.70,ratcliffobershelp(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0,ratcliffobershelp(x.description,y.description)|0.60)|0" ABTBUY
log trigrams 2 0.38467741935483873 0.48377281947261663 0.4285714285714286 19730.0 0.7878787878787878 0.46846846846846846 0.5875706214689266 6.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log exactmatch 2 1.0 0.009127789046653144 0.018090452261306532 18121.0 1.0 0.009009009009009009 0.01785714285714286 1.0 "exactmatch(x.name,y.name)|1.00" ABTBUY
best trigrams 2 0.38467741935483873 0.48377281947261663 0.4285714285714286 19730.0 0.7878787878787878 0.46846846846846846 0.5875706214689266 6.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,jaccard 2 0.39505119453924914 0.4695740365111562 0.42910101946246526 18166.0 0.7936507936507936 0.45045045045045046 0.5747126436781609 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,jaccard(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,jarowinkler 2 0.38207547169811323 0.49290060851926976 0.43046944198405673 18566.0 0.7878787878787878 0.46846846846846846 0.5875706214689266 995.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,jarowinkler(x.description,y.name)|0.83)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,jaro 2 0.37717309145880573 0.5060851926977687 0.4322217410134257 10294.0 0.7910447761194029 0.4774774774774775 0.5955056179775281 110.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,jaro(x.name,y.name)|0.80)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,soundex 2 0.38467741935483873 0.48377281947261663 0.4285714285714286 30990.0 0.7878787878787878 0.46846846846846846 0.5875706214689266 6.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan 2 0.36222071767095465 0.5425963488843814 0.43442955745026396 18776.0 0.7837837837837838 0.5225225225225225 0.6270270270270271 575.0 "OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0" ABTBUY
log trigrams,levenstein 2 0.38467741935483873 0.48377281947261663 0.4285714285714286 22237.0 0.7878787878787878 0.46846846846846846 0.5875706214689266 6.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,ratcliffobershelp 2 0.3746418338108882 0.5304259634888439 0.43912678421494544 18866.0 0.7733333333333333 0.5225225225225225 0.6236559139784946 3450.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,exactmatch 2 0.38467741935483873 0.48377281947261663 0.4285714285714286 17954.0 0.7878787878787878 0.46846846846846846 0.5875706214689266 6.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
best trigrams,mongeelkan 2 0.36222071767095465 0.5425963488843814 0.43442955745026396 18776.0 0.7837837837837838 0.5225225225225225 0.6270270270270271 575.0 "OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0" ABTBUY
log trigrams,mongeelkan,jaccard 2 0.36222071767095465 0.5425963488843814 0.43442955745026396 18168.0 0.7837837837837838 0.5225225225225225 0.6270270270270271 575.0 "OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0" ABTBUY
log trigrams,mongeelkan,jarowinkler 2 0.3601864181091877 0.5486815415821501 0.43488745980707394 18223.0 0.7837837837837838 0.5225225225225225 0.6270270270270271 1120.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,jarowinkler(x.description,y.name)|0.83)|0" ABTBUY
log trigrams,mongeelkan,jaro 2 0.3625 0.5588235294117647 0.43974461292897044 12924.0 0.7837837837837838 0.5225225225225225 0.6270270270270271 678.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,jaro(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0" ABTBUY
log trigrams,mongeelkan,soundex 2 0.36222071767095465 0.5425963488843814 0.43442955745026396 27279.0 0.7837837837837838 0.5225225225225225 0.6270270270270271 575.0 "OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0" ABTBUY
log trigrams,mongeelkan,levenstein 2 0.36222071767095465 0.5425963488843814 0.43442955745026396 20694.0 0.7837837837837838 0.5225225225225225 0.6270270270270271 575.0 "OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp 2 0.3579863269111249 0.5841784989858012 0.4439306358381503 18763.0 0.7682926829268293 0.5675675675675675 0.6528497409326425 4101.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,exactmatch 2 0.36222071767095465 0.5425963488843814 0.43442955745026396 18138.0 0.7837837837837838 0.5225225225225225 0.6270270270270271 575.0 "OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0" ABTBUY
best trigrams,mongeelkan,ratcliffobershelp 2 0.3579863269111249 0.5841784989858012 0.4439306358381503 18763.0 0.7682926829268293 0.5675675675675675 0.6528497409326425 4101.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,jaccard 2 0.3579863269111249 0.5841784989858012 0.4439306358381503 18315.0 0.7682926829268293 0.5675675675675675 0.6528497409326425 4101.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,jarowinkler 2 0.3579863269111249 0.5841784989858012 0.4439306358381503 18396.0 0.7682926829268293 0.5675675675675675 0.6528497409326425 4101.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,jaro 2 0.36 0.5933062880324543 0.4481041746457296 14552.0 0.7682926829268293 0.5675675675675675 0.6528497409326425 2634.0 "OR(OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,jaro(x.name,y.name)|0.80)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,soundex 2 0.3579863269111249 0.5841784989858012 0.4439306358381503 25647.0 0.7682926829268293 0.5675675675675675 0.6528497409326425 4101.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,levenstein 2 0.3579863269111249 0.5841784989858012 0.4439306358381503 18555.0 0.7682926829268293 0.5675675675675675 0.6528497409326425 4101.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,exactmatch 2 0.3579863269111249 0.5841784989858012 0.4439306358381503 18616.0 0.7682926829268293 0.5675675675675675 0.6528497409326425 4101.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log jaccard 3 0.7286245353159851 0.19838056680161945 0.3118536197295147 18022.0 0.92 0.21100917431192662 0.3432835820895523 2.0 "OR(jaccard(x.name,y.name)|0.60,jaccard(x.name,y.description)|0.60)|0" ABTBUY
log jarowinkler 3 0.24570273003033366 0.49190283400809715 0.32771409305461896 20987.0 0.8135593220338984 0.44036697247706424 0.5714285714285715 2081.0 "OR(OR(OR(jarowinkler(x.name,y.name)|0.83,jarowinkler(x.name,y.description)|0.83)|0,jarowinkler(x.description,y.name)|0.83)|0,jarowinkler(x.description,y.description)|0.83)|0" ABTBUY
log jaro 3 0.31339031339031337 0.22267206477732793 0.2603550295857988 3479.0 0.8571428571428571 0.22018348623853212 0.3503649635036496 150.0 "OR(jaro(x.name,y.name)|0.80,jaro(x.name,y.description)|0.70)|0" ABTBUY
log soundex 3 0.10230179028132992 0.20242914979757085 0.13591573224600745 51081.0 0.4523809523809524 0.1743119266055046 0.25165562913907286 4.0 "AND(OR(AND(soundex(x.description,y.name)|1.00,soundex(x.price,y.description)|0.25)|0,soundex(x.description,y.description)|1.00)|0,soundex(x.description,y.name)|1.00)|0" ABTBUY
log mongeelkan 3 0.42424242424242425 0.3259109311740891 0.3686319404693761 25174.0 0.9 0.3302752293577982 0.4832214765100671 526.0 "mongeelkan(x.name,y.name)|0.80" ABTBUY
log levenstein 3 1.0 0.009109311740890687 0.018054162487462385 17449.0 1.0 0.009174311926605505 0.018181818181818184 3.0 "levenstein(x.name,y.name)|1.00" ABTBUY
log ratcliffobershelp 3 0.4169986719787517 0.31781376518218624 0.3607122343480758 20378.0 0.8205128205128205 0.29357798165137616 0.43243243243243246 1525.0 "OR(OR(ratcliffobershelp(x.name,y.name)|0.70,ratcliffobershelp(x.description,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams 3 0.3769968051118211 0.4777327935222672 0.42142857142857143 19972.0 0.890625 0.5229357798165137 0.6589595375722542 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log exactmatch 3 1.0 0.009109311740890687 0.018054162487462385 17524.0 1.0 0.009174311926605505 0.018181818181818184 0.0 "exactmatch(x.name,y.name)|1.00" ABTBUY
best trigrams 3 0.3769968051118211 0.4777327935222672 0.42142857142857143 19972.0 0.890625 0.5229357798165137 0.6589595375722542 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,jaccard 3 0.39347079037800686 0.46356275303643724 0.4256505576208178 19305.0 0.8870967741935484 0.5045871559633027 0.6432748538011696 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,jaccard(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,jarowinkler 3 0.3747072599531616 0.48582995951417 0.42309387395328335 18801.0 0.8787878787878788 0.5321100917431193 0.6628571428571429 531.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,jarowinkler(x.description,y.name)|0.83)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,jaro 3 0.37039819684447783 0.49898785425101216 0.4251832686502802 10900.0 0.8939393939393939 0.5412844036697247 0.6742857142857143 100.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,jaro(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,soundex 3 0.3769968051118211 0.4777327935222672 0.42142857142857143 31196.0 0.890625 0.5229357798165137 0.6589595375722542 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan 3 0.35628342245989303 0.5394736842105263 0.42914653784219003 21920.0 0.8985507246376812 0.5688073394495413 0.6966292134831461 1109.0 "OR(DIFF(OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0,mongeelkan(x.price,y.name)|0.60)|0,mongeelkan(x.name,y.name)|0.80)|0" ABTBUY
log trigrams,levenstein 3 0.3769968051118211 0.4777327935222672 0.42142857142857143 18093.0 0.890625 0.5229357798165137 0.6589595375722542 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,ratcliffobershelp 3 0.36775106082036774 0.5263157894736842 0.43297252289758537 18419.0 0.8985507246376812 0.5688073394495413 0.6966292134831461 2934.0 "OR(OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0,trigrams(x.description,y.name)|0.60)|0,ratcliffobershelp(x.description,y.description)|0.60)|0" ABTBUY
log trigrams,exactmatch 3 0.3769968051118211 0.4777327935222672 0.42142857142857143 23141.0 0.890625 0.5229357798165137 0.6589595375722542 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
best trigrams,mongeelkan 3 0.35628342245989303 0.5394736842105263 0.42914653784219003 21920.0 0.8985507246376812 0.5688073394495413 0.6966292134831461 1109.0 "OR(DIFF(OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0,mongeelkan(x.price,y.name)|0.60)|0,mongeelkan(x.name,y.name)|0.80)|0" ABTBUY
log trigrams,mongeelkan,jaccard 3 0.3667844522968198 0.5253036437246964 0.43196004993757803 18505.0 0.8955223880597015 0.5504587155963303 0.6818181818181818 1111.0 "OR(DIFF(OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,jaccard(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0,mongeelkan(x.price,y.name)|0.60)|0,mongeelkan(x.name,y.name)|0.80)|0" ABTBUY
log trigrams,mongeelkan,jarowinkler 3 0.35418038183015144 0.5445344129554656 0.42919824491424013 18518.0 0.8857142857142857 0.5688073394495413 0.6927374301675977 1627.0 "OR(OR(DIFF(OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0,mongeelkan(x.price,y.name)|0.60)|0,mongeelkan(x.name,y.name)|0.80)|0,jarowinkler(x.description,y.name)|0.83)|0" ABTBUY
log trigrams,mongeelkan,jaro 3 0.35658409387222945 0.5536437246963563 0.4337827121332276 12993.0 0.9014084507042254 0.5871559633027523 0.7111111111111111 1202.0 "OR(DIFF(OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,jaro(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0,mongeelkan(x.price,y.name)|0.60)|0,mongeelkan(x.name,y.name)|0.80)|0" ABTBUY
log trigrams,mongeelkan,soundex 3 0.35628342245989303 0.5394736842105263 0.42914653784219003 27311.0 0.8985507246376812 0.5688073394495413 0.6966292134831461 1109.0 "OR(DIFF(OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0,mongeelkan(x.price,y.name)|0.60)|0,mongeelkan(x.name,y.name)|0.80)|0" ABTBUY
log trigrams,mongeelkan,levenstein 3 0.35628342245989303 0.5394736842105263 0.42914653784219003 20168.0 0.8985507246376812 0.5688073394495413 0.6966292134831461 1109.0 "OR(DIFF(OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0,mongeelkan(x.price,y.name)|0.60)|0,mongeelkan(x.name,y.name)|0.80)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp 3 0.3521819299323909 0.5799595141700404 0.43824091778202673 18699.0 0.9054054054054054 0.6146788990825688 0.73224043715847 4925.0 "OR(OR(DIFF(OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0,mongeelkan(x.price,y.name)|0.60)|0,mongeelkan(x.name,y.name)|0.80)|0,ratcliffobershelp(x.description,y.description)|0.60)|0" ABTBUY
log trigrams,mongeelkan,exactmatch 3 0.35628342245989303 0.5394736842105263 0.42914653784219003 18060.0 0.8985507246376812 0.5688073394495413 0.6966292134831461 1109.0 "OR(DIFF(OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0,mongeelkan(x.price,y.name)|0.60)|0,mongeelkan(x.name,y.name)|0.80)|0" ABTBUY
best trigrams,mongeelkan,ratcliffobershelp 3 0.3521819299323909 0.5799595141700404 0.43824091778202673 18699.0 0.9054054054054054 0.6146788990825688 0.73224043715847 4925.0 "OR(OR(DIFF(OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0,mongeelkan(x.price,y.name)|0.60)|0,mongeelkan(x.name,y.name)|0.80)|0,ratcliffobershelp(x.description,y.description)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,jaccard 3 0.36139896373056996 0.5647773279352226 0.4407582938388626 18121.0 0.9027777777777778 0.5963302752293578 0.718232044198895 2827.0 "OR(DIFF(OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,jaccard(x.name,y.description)|0.60)|0,mongeelkan(x.name,y.name)|0.80)|0,ratcliffobershelp(x.description,y.name)|0.60)|0,mongeelkan(x.price,y.name)|0.60)|0,mongeelkan(x.name,y.name)|0.80)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,jarowinkler 3 0.3521819299323909 0.5799595141700404 0.43824091778202673 19314.0 0.9054054054054054 0.6146788990825688 0.73224043715847 4925.0 "OR(OR(DIFF(OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0,mongeelkan(x.price,y.name)|0.60)|0,mongeelkan(x.name,y.name)|0.80)|0,ratcliffobershelp(x.description,y.description)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,jaro 3 0.35379939209726446 0.5890688259109311 0.44208127611090015 14695.0 0.9054054054054054 0.6146788990825688 0.73224043715847 4517.0 "OR(OR(DIFF(OR(OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,jaro(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0,mongeelkan(x.price,y.name)|0.60)|0,mongeelkan(x.name,y.name)|0.80)|0,ratcliffobershelp(x.description,y.description)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,soundex 3 0.3521819299323909 0.5799595141700404 0.43824091778202673 25028.0 0.9054054054054054 0.6146788990825688 0.73224043715847 4925.0 "OR(OR(DIFF(OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0,mongeelkan(x.price,y.name)|0.60)|0,mongeelkan(x.name,y.name)|0.80)|0,ratcliffobershelp(x.description,y.description)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,levenstein 3 0.3521819299323909 0.5799595141700404 0.43824091778202673 18364.0 0.9054054054054054 0.6146788990825688 0.73224043715847 4925.0 "OR(OR(DIFF(OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0,mongeelkan(x.price,y.name)|0.60)|0,mongeelkan(x.name,y.name)|0.80)|0,ratcliffobershelp(x.description,y.description)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,exactmatch 3 0.3521819299323909 0.5799595141700404 0.43824091778202673 18390.0 0.9054054054054054 0.6146788990825688 0.73224043715847 4925.0 "OR(OR(DIFF(OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0,mongeelkan(x.price,y.name)|0.60)|0,mongeelkan(x.name,y.name)|0.80)|0,ratcliffobershelp(x.description,y.description)|0.60)|0" ABTBUY
log jaccard 4 0.7316176470588235 0.2012133468149646 0.3156225218080888 18870.0 0.9090909090909091 0.18518518518518517 0.30769230769230765 2.0 "OR(jaccard(x.name,y.name)|0.60,jaccard(x.name,y.description)|0.60)|0" ABTBUY
log jarowinkler 4 0.25026343519494204 0.48028311425682507 0.3290613093176307 23749.0 0.7088607594936709 0.5185185185185185 0.5989304812834225 1567.0 "OR(OR(jarowinkler(x.name,y.name)|0.83,jarowinkler(x.name,y.description)|0.83)|0,jarowinkler(x.description,y.name)|0.83)|0" ABTBUY
log jaro 4 0.33183183183183185 0.22345803842264914 0.26706948640483386 3415.0 0.696969696969697 0.21296296296296297 0.3262411347517731 173.0 "OR(jaro(x.name,y.name)|0.80,jaro(x.name,y.description)|0.70)|0" ABTBUY
log soundex 4 0.10009910802775025 0.20424671385237614 0.1343531759228467 47213.0 0.6296296296296297 0.1574074074074074 0.2518518518518519 4.0 "AND(OR(AND(soundex(x.description,y.name)|1.00,soundex(x.price,y.description)|0.25)|0,soundex(x.description,y.description)|1.00)|0,soundex(x.description,y.name)|1.00)|0" ABTBUY
log mongeelkan 4 0.44173441734417346 0.32962588473205257 0.3775332947307469 20899.0 0.8421052631578947 0.2962962962962963 0.4383561643835616 537.0 "mongeelkan(x.name,y.name)|0.80" ABTBUY
log levenstein 4 1.0 0.010111223458038422 0.020020020020020016 17929.0 0.0 0.0 0.0 3.0 "levenstein(x.name,y.name)|1.00" ABTBUY
log ratcliffobershelp 4 0.38505096262740657 0.3437815975733064 0.3632478632478633 20232.0 0.7407407407407407 0.37037037037037035 0.4938271604938271 2920.0 "OR(OR(OR(ratcliffobershelp(x.name,y.name)|0.70,ratcliffobershelp(x.description,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0,ratcliffobershelp(x.name,y.description)|0.60)|0" ABTBUY
log trigrams 4 0.3932038834951456 0.4914054600606673 0.4368539325842697 19951.0 0.7543859649122807 0.39814814814814814 0.5212121212121213 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log exactmatch 4 1.0 0.010111223458038422 0.020020020020020016 17977.0 0.0 0.0 0.0 1.0 "exactmatch(x.name,y.name)|1.00" ABTBUY
best jarowinkler 4 0.25026343519494204 0.48028311425682507 0.3290613093176307 23749.0 0.7088607594936709 0.5185185185185185 0.5989304812834225 1567.0 "OR(OR(jarowinkler(x.name,y.name)|0.83,jarowinkler(x.name,y.description)|0.83)|0,jarowinkler(x.description,y.name)|0.83)|0" ABTBUY
log jarowinkler,jaccard 4 0.2708902239213545 0.5015166835187057 0.3517730496453901 18862.0 0.717948717948718 0.5185185185185185 0.6021505376344085 2558.0 "OR(OR(OR(OR(jarowinkler(x.name,y.name)|0.83,jaccard(x.name,y.name)|0.60)|0,jaccard(x.name,y.description)|0.60)|0,jarowinkler(x.description,y.name)|0.83)|0,jarowinkler(x.description,y.description)|0.83)|0" ABTBUY
log jarowinkler,jaro 4 0.25958099131323453 0.5136501516683518 0.3448744059742023 11361.0 0.7125 0.5277777777777778 0.6063829787234042 1669.0 "OR(OR(OR(jarowinkler(x.name,y.name)|0.83,jaro(x.name,y.name)|0.80)|0,jarowinkler(x.name,y.description)|0.83)|0,jarowinkler(x.description,y.name)|0.83)|0" ABTBUY
log jarowinkler,soundex 4 0.25026343519494204 0.48028311425682507 0.3290613093176307 32185.0 0.7088607594936709 0.5185185185185185 0.5989304812834225 1567.0 "OR(OR(jarowinkler(x.name,y.name)|0.83,jarowinkler(x.name,y.description)|0.83)|0,jarowinkler(x.description,y.name)|0.83)|0" ABTBUY
log jarowinkler,mongeelkan 4 0.38923395445134573 0.38018200202224467 0.3846547314578005 17982.0 0.851063829787234 0.37037037037037035 0.5161290322580645 2283.0 "OR(OR(mongeelkan(x.name,y.name)|0.80,jarowinkler(x.name,y.description)|0.83)|0,jarowinkler(x.description,y.name)|0.83)|0" ABTBUY
log jarowinkler,levenstein 4 0.25026343519494204 0.48028311425682507 0.3290613093176307 19974.0 0.7088607594936709 0.5185185185185185 0.5989304812834225 1567.0 "OR(OR(jarowinkler(x.name,y.name)|0.83,jarowinkler(x.name,y.description)|0.83)|0,jarowinkler(x.description,y.name)|0.83)|0" ABTBUY
log jarowinkler,ratcliffobershelp 4 0.3773784355179704 0.3609706774519717 0.36899224806201547 18393.0 0.7818181818181819 0.39814814814814814 0.5276073619631901 3135.0 "OR(OR(OR(ratcliffobershelp(x.name,y.name)|0.70,jarowinkler(x.description,y.name)|0.83)|0,ratcliffobershelp(x.description,y.description)|0.60)|0,jarowinkler(x.name,y.description)|0.83)|0" ABTBUY
log jarowinkler,trigrams 4 0.3932038834951456 0.4914054600606673 0.4368539325842697 19650.0 0.7543859649122807 0.39814814814814814 0.5212121212121213 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log jarowinkler,exactmatch 4 0.25026343519494204 0.48028311425682507 0.3290613093176307 19042.0 0.7088607594936709 0.5185185185185185 0.5989304812834225 1567.0 "OR(OR(jarowinkler(x.name,y.name)|0.83,jarowinkler(x.name,y.description)|0.83)|0,jarowinkler(x.description,y.name)|0.83)|0" ABTBUY
best jarowinkler,jaro 4 0.25958099131323453 0.5136501516683518 0.3448744059742023 11361.0 0.7125 0.5277777777777778 0.6063829787234042 1669.0 "OR(OR(OR(jarowinkler(x.name,y.name)|0.83,jaro(x.name,y.name)|0.80)|0,jarowinkler(x.name,y.description)|0.83)|0,jarowinkler(x.description,y.name)|0.83)|0" ABTBUY
log jarowinkler,jaro,jaccard 4 0.27194860813704497 0.5136501516683518 0.3556177808890444 13144.0 0.717948717948718 0.5185185185185185 0.6021505376344085 2332.0 "OR(OR(OR(OR(OR(jarowinkler(x.name,y.name)|0.83,jaccard(x.name,y.name)|0.60)|0,jaccard(x.name,y.description)|0.60)|0,jaro(x.name,y.name)|0.80)|0,jarowinkler(x.description,y.name)|0.83)|0,jarowinkler(x.description,y.description)|0.83)|0" ABTBUY
log jarowinkler,jaro,soundex 4 0.25958099131323453 0.5136501516683518 0.3448744059742023 22220.0 0.7125 0.5277777777777778 0.6063829787234042 1669.0 "OR(OR(OR(jarowinkler(x.name,y.name)|0.83,jaro(x.name,y.name)|0.80)|0,jarowinkler(x.name,y.description)|0.83)|0,jarowinkler(x.description,y.name)|0.83)|0" ABTBUY
log jarowinkler,jaro,mongeelkan 4 0.39296187683284456 0.4064711830131446 0.39960238568588474 12867.0 0.82 0.37962962962962965 0.5189873417721519 1159.0 "OR(OR(mongeelkan(x.name,y.name)|0.80,jaro(x.name,y.name)|0.80)|0,jarowinkler(x.name,y.description)|0.83)|0" ABTBUY
log jarowinkler,jaro,levenstein 4 0.25958099131323453 0.5136501516683518 0.3448744059742023 13656.0 0.7125 0.5277777777777778 0.6063829787234042 1669.0 "OR(OR(OR(jarowinkler(x.name,y.name)|0.83,jaro(x.name,y.name)|0.80)|0,jarowinkler(x.name,y.description)|0.83)|0,jarowinkler(x.description,y.name)|0.83)|0" ABTBUY
log jarowinkler,jaro,ratcliffobershelp 4 0.4211764705882353 0.3619817997977755 0.38934203371397497 12420.0 0.76 0.35185185185185186 0.4810126582278481 2063.0 "OR(OR(OR(ratcliffobershelp(x.name,y.name)|0.70,jaro(x.name,y.name)|0.80)|0,jarowinkler(x.description,y.name)|0.83)|0,ratcliffobershelp(x.description,y.description)|0.60)|0" ABTBUY
log jarowinkler,jaro,trigrams 4 0.38490853658536583 0.5106167846309403 0.4389395914819643 12742.0 0.7580645161290323 0.4351851851851852 0.5529411764705883 111.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,jaro(x.name,y.name)|0.80)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log jarowinkler,jaro,exactmatch 4 0.25958099131323453 0.5136501516683518 0.3448744059742023 13318.0 0.7125 0.5277777777777778 0.6063829787234042 1669.0 "OR(OR(OR(jarowinkler(x.name,y.name)|0.83,jaro(x.name,y.name)|0.80)|0,jarowinkler(x.name,y.description)|0.83)|0,jarowinkler(x.description,y.name)|0.83)|0" ABTBUY
log jaccard 5 0.7380073800738007 0.20242914979757085 0.3177124702144559 18238.0 1.0 0.1743119266055046 0.296875 2.0 "OR(jaccard(x.name,y.name)|0.60,jaccard(x.name,y.description)|0.60)|0" ABTBUY
log jarowinkler 5 0.2474747474747475 0.4959514170040486 0.33018867924528306 19906.0 0.7457627118644068 0.4036697247706422 0.5238095238095238 4606.0 "OR(OR(OR(jarowinkler(x.name,y.name)|0.83,jarowinkler(x.name,y.description)|0.83)|0,jarowinkler(x.description,y.name)|0.83)|0,jarowinkler(x.description,y.description)|0.83)|0" ABTBUY
log jaro 5 0.335832083958021 0.22672064777327935 0.27069486404833837 3456.0 0.8333333333333334 0.1834862385321101 0.30075187969924816 162.0 "OR(jaro(x.name,y.name)|0.80,jaro(x.name,y.description)|0.70)|0" ABTBUY
log soundex 5 0.10570381998953428 0.20445344129554655 0.13935839944808556 45578.0 0.53125 0.1559633027522936 0.2411347517730497 4.0 "AND(OR(AND(soundex(x.description,y.name)|1.00,soundex(x.price,y.description)|0.25)|0,soundex(x.description,y.description)|1.00)|0,soundex(x.description,y.name)|1.00)|0" ABTBUY
log mongeelkan 5 0.44157608695652173 0.32894736842105265 0.37703016241299303 20885.0 0.9166666666666666 0.30275229357798167 0.4551724137931034 538.0 "mongeelkan(x.name,y.name)|0.80" ABTBUY
log levenstein 5 1.0 0.010121457489878543 0.020040080160320644 17791.0 0.0 0.0 0.0 3.0 "levenstein(x.name,y.name)|1.00" ABTBUY
log ratcliffobershelp 5 0.41721854304635764 0.3188259109311741 0.3614457831325301 19163.0 0.8378378378378378 0.28440366972477066 0.4246575342465754 2388.0 "OR(OR(ratcliffobershelp(x.name,y.name)|0.70,ratcliffobershelp(x.description,y.name)|0.60)|0,ratcliffobershelp(x.description,y.description)|0.60)|0" ABTBUY
log trigrams 5 0.3796664019062748 0.48380566801619435 0.4254561637739208 19914.0 0.9107142857142857 0.46788990825688076 0.6181818181818183 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log exactmatch 5 1.0 0.010121457489878543 0.020040080160320644 17973.0 0.0 0.0 0.0 0.0 "exactmatch(x.name,y.name)|1.00" ABTBUY
best trigrams 5 0.3796664019062748 0.48380566801619435 0.4254561637739208 19914.0 0.9107142857142857 0.46788990825688076 0.6181818181818183 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,jaccard 5 0.392887383573243 0.46963562753036436 0.4278469340710005 18274.0 0.9074074074074074 0.44954128440366975 0.6012269938650308 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,jaccard(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,jarowinkler 5 0.37791601866251945 0.49190283400809715 0.4274406332453826 17969.0 0.9090909090909091 0.45871559633027525 0.6097560975609756 1116.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,jarowinkler(x.description,y.name)|0.83)|0" ABTBUY
log trigrams,jaro 5 0.37471952131638 0.507085020242915 0.43096774193548393 10649.0 0.8947368421052632 0.46788990825688076 0.6144578313253013 112.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,jaro(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,soundex 5 0.3796664019062748 0.48380566801619435 0.4254561637739208 31587.0 0.9107142857142857 0.46788990825688076 0.6181818181818183 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan 5 0.35962566844919786 0.5445344129554656 0.4331723027375201 19849.0 0.890625 0.5229357798165137 0.6589595375722542 543.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,levenstein 5 0.3796664019062748 0.48380566801619435 0.4254561637739208 18177.0 0.9107142857142857 0.46788990825688076 0.6181818181818183 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,ratcliffobershelp 5 0.3744650499286733 0.5313765182186235 0.4393305439330544 18432.0 0.859375 0.5045871559633027 0.6358381502890174 1713.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,exactmatch 5 0.3796664019062748 0.48380566801619435 0.4254561637739208 18464.0 0.9107142857142857 0.46788990825688076 0.6181818181818183 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
best trigrams,mongeelkan 5 0.35962566844919786 0.5445344129554656 0.4331723027375201 19849.0 0.890625 0.5229357798165137 0.6589595375722542 543.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,jaccard 5 0.36771929824561406 0.5303643724696356 0.4343141317861583 18204.0 0.8870967741935484 0.5045871559633027 0.6432748538011696 556.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,jaccard(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,jarowinkler 5 0.35962566844919786 0.5445344129554656 0.4331723027375201 18305.0 0.890625 0.5229357798165137 0.6589595375722542 543.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,jaro 5 0.36114732724902215 0.5607287449392713 0.4393338620142744 12830.0 0.890625 0.5229357798165137 0.6589595375722542 1098.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,jaro(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,soundex 5 0.35962566844919786 0.5445344129554656 0.4331723027375201 26929.0 0.890625 0.5229357798165137 0.6589595375722542 543.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,levenstein 5 0.35962566844919786 0.5445344129554656 0.4331723027375201 18296.0 0.890625 0.5229357798165137 0.6589595375722542 543.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp 5 0.35811648079306074 0.5850202429149798 0.44427363566487316 18535.0 0.8591549295774648 0.5596330275229358 0.6777777777777778 3156.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,exactmatch 5 0.35962566844919786 0.5445344129554656 0.4331723027375201 18380.0 0.890625 0.5229357798165137 0.6589595375722542 543.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
best trigrams,mongeelkan,ratcliffobershelp 5 0.35811648079306074 0.5850202429149798 0.44427363566487316 18535.0 0.8591549295774648 0.5596330275229358 0.6777777777777778 3156.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,jaccard 5 0.3650485436893204 0.5708502024291497 0.4453217528622187 18571.0 0.855072463768116 0.5412844036697247 0.6629213483146068 1553.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,jaccard(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,jarowinkler 5 0.35811648079306074 0.5850202429149798 0.44427363566487316 18430.0 0.8591549295774648 0.5596330275229358 0.6777777777777778 3156.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,jaro 5 0.35990190067443284 0.5941295546558705 0.4482626956853761 14611.0 0.8591549295774648 0.5596330275229358 0.6777777777777778 2830.0 "OR(OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,jaro(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,soundex 5 0.35811648079306074 0.5850202429149798 0.44427363566487316 25178.0 0.8591549295774648 0.5596330275229358 0.6777777777777778 3156.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,levenstein 5 0.35811648079306074 0.5850202429149798 0.44427363566487316 18473.0 0.8591549295774648 0.5596330275229358 0.6777777777777778 3156.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,exactmatch 5 0.35811648079306074 0.5850202429149798 0.44427363566487316 18583.0 0.8591549295774648 0.5596330275229358 0.6777777777777778 3156.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log jaccard 6 0.7751937984496124 0.2028397565922921 0.32154340836012857 18005.0 0.95 0.17117117117117117 0.29007633587786263 2.0 "OR(jaccard(x.name,y.name)|0.60,jaccard(x.name,y.description)|0.60)|0" ABTBUY
log jarowinkler 6 0.2547568710359408 0.48884381338742394 0.33495482974287705 20293.0 0.6582278481012658 0.46846846846846846 0.5473684210526315 2076.0 "OR(OR(OR(jarowinkler(x.name,y.name)|0.83,jarowinkler(x.name,y.description)|0.83)|0,jarowinkler(x.description,y.name)|0.83)|0,jarowinkler(x.description,y.description)|0.83)|0" ABTBUY
log jaro 6 0.16806461634047842 0.5486815415821501 0.25731272294887036 6136.0 0.5272727272727272 0.5225225225225225 0.5248868778280542 114.0 "jaro(x.name,y.name)|0.70" ABTBUY
log soundex 6 0.08055101564324071 0.34989858012170383 0.13095464034921236 37947.0 0.375 0.2702702702702703 0.31413612565445026 2.0 "OR(soundex(x.description,y.name)|1.00,soundex(x.description,y.description)|1.00)|0" ABTBUY
log mongeelkan 6 0.43783068783068785 0.3356997971602434 0.38002296211251435 20195.0 0.84375 0.24324324324324326 0.37762237762237766 582.0 "mongeelkan(x.name,y.name)|0.80" ABTBUY
log levenstein 6 1.0 0.008113590263691683 0.016096579476861165 19000.0 1.0 0.018018018018018018 0.035398230088495575 3.0 "levenstein(x.name,y.name)|1.00" ABTBUY
log ratcliffobershelp 6 0.43243243243243246 0.32454361054766734 0.37079953650057934 19152.0 0.7878787878787878 0.23423423423423423 0.36111111111111105 2198.0 "OR(OR(ratcliffobershelp(x.name,y.name)|0.70,ratcliffobershelp(x.description,y.name)|0.60)|0,ratcliffobershelp(x.description,y.description)|0.60)|0" ABTBUY
log trigrams 6 0.4019933554817276 0.4908722109533469 0.4420091324200914 19714.0 0.8490566037735849 0.40540540540540543 0.548780487804878 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.description,y.name)|0.60)|0,trigrams(x.name,y.description)|0.60)|0" ABTBUY
log exactmatch 6 1.0 0.008113590263691683 0.016096579476861165 18070.0 1.0 0.018018018018018018 0.035398230088495575 1.0 "exactmatch(x.name,y.name)|1.00" ABTBUY
best trigrams 6 0.4019933554817276 0.4908722109533469 0.4420091324200914 19714.0 0.8490566037735849 0.40540540540540543 0.548780487804878 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.description,y.name)|0.60)|0,trigrams(x.name,y.description)|0.60)|0" ABTBUY
log trigrams,jaccard 6 0.41889483065953653 0.4766734279918864 0.4459203036053131 17659.0 0.8431372549019608 0.38738738738738737 0.5308641975308642 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,jaccard(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,jarowinkler 6 0.39773645917542444 0.49898580121703856 0.4426450742240216 18058.0 0.8518518518518519 0.4144144144144144 0.5575757575757575 1199.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,jarowinkler(x.description,y.name)|0.83)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,jaro 6 0.4019933554817276 0.4908722109533469 0.4420091324200914 10329.0 0.8490566037735849 0.40540540540540543 0.548780487804878 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.description,y.name)|0.60)|0,trigrams(x.name,y.description)|0.60)|0" ABTBUY
log trigrams,soundex 6 0.4019933554817276 0.4908722109533469 0.4420091324200914 26188.0 0.8490566037735849 0.40540540540540543 0.548780487804878 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.description,y.name)|0.60)|0,trigrams(x.name,y.description)|0.60)|0" ABTBUY
log trigrams,mongeelkan 6 0.37595552466990967 0.5486815415821501 0.44618556701030926 18790.0 0.8709677419354839 0.4864864864864865 0.6242774566473989 631.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,levenstein 6 0.4019933554817276 0.4908722109533469 0.4420091324200914 18594.0 0.8490566037735849 0.40540540540540543 0.548780487804878 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.description,y.name)|0.60)|0,trigrams(x.name,y.description)|0.60)|0" ABTBUY
log trigrams,ratcliffobershelp 6 0.3923585598824394 0.5415821501014199 0.45504899872177246 19086.0 0.8421052631578947 0.43243243243243246 0.5714285714285715 2426.0 "OR(OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0,trigrams(x.description,y.name)|0.60)|0,ratcliffobershelp(x.description,y.description)|0.60)|0" ABTBUY
log trigrams,exactmatch 6 0.4019933554817276 0.4908722109533469 0.4420091324200914 18901.0 0.8490566037735849 0.40540540540540543 0.548780487804878 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.description,y.name)|0.60)|0,trigrams(x.name,y.description)|0.60)|0" ABTBUY
best trigrams,mongeelkan 6 0.37595552466990967 0.5486815415821501 0.44618556701030926 18790.0 0.8709677419354839 0.4864864864864865 0.6242774566473989 631.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,jaccard 6 0.3860805860805861 0.5344827586206896 0.44831986388770734 18966.0 0.8666666666666667 0.46846846846846846 0.6081871345029239 585.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,jaccard(x.name,y.description)|0.60)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,jarowinkler 6 0.37595552466990967 0.5486815415821501 0.44618556701030926 19079.0 0.8709677419354839 0.4864864864864865 0.6242774566473989 631.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,jaro 6 0.37595552466990967 0.5486815415821501 0.44618556701030926 13998.0 0.8709677419354839 0.4864864864864865 0.6242774566473989 631.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,soundex 6 0.37595552466990967 0.5486815415821501 0.44618556701030926 23561.0 0.8709677419354839 0.4864864864864865 0.6242774566473989 631.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,levenstein 6 0.37595552466990967 0.5486815415821501 0.44618556701030926 19553.0 0.8709677419354839 0.4864864864864865 0.6242774566473989 631.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp 6 0.37244897959183676 0.592292089249493 0.4573218480814409 19333.0 0.8615384615384616 0.5045045045045045 0.6363636363636364 4942.0 "OR(OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0,ratcliffobershelp(x.description,y.description)|0.60)|0" ABTBUY
log trigrams,mongeelkan,exactmatch 6 0.37595552466990967 0.5486815415821501 0.44618556701030926 19166.0 0.8709677419354839 0.4864864864864865 0.6242774566473989 631.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
best trigrams,mongeelkan,ratcliffobershelp 6 0.37244897959183676 0.592292089249493 0.4573218480814409 19333.0 0.8615384615384616 0.5045045045045045 0.6363636363636364 4942.0 "OR(OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0,ratcliffobershelp(x.description,y.description)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,jaccard 6 0.38136729222520105 0.577079107505071 0.45924132364810333 19930.0 0.8571428571428571 0.4864864864864865 0.6206896551724138 2486.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,jaccard(x.name,y.description)|0.60)|0,mongeelkan(x.name,y.name)|0.80)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,jarowinkler 6 0.37244897959183676 0.592292089249493 0.4573218480814409 20453.0 0.8615384615384616 0.5045045045045045 0.6363636363636364 4942.0 "OR(OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0,ratcliffobershelp(x.description,y.description)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,jaro 6 0.37244897959183676 0.592292089249493 0.4573218480814409 15602.0 0.8615384615384616 0.5045045045045045 0.6363636363636364 4942.0 "OR(OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0,ratcliffobershelp(x.description,y.description)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,soundex 6 0.37244897959183676 0.592292089249493 0.4573218480814409 23958.0 0.8615384615384616 0.5045045045045045 0.6363636363636364 4942.0 "OR(OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0,ratcliffobershelp(x.description,y.description)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,levenstein 6 0.37244897959183676 0.592292089249493 0.4573218480814409 19805.0 0.8615384615384616 0.5045045045045045 0.6363636363636364 4942.0 "OR(OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0,ratcliffobershelp(x.description,y.description)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,exactmatch 6 0.37244897959183676 0.592292089249493 0.4573218480814409 18959.0 0.8615384615384616 0.5045045045045045 0.6363636363636364 4942.0 "OR(OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0,ratcliffobershelp(x.description,y.description)|0.60)|0" ABTBUY
log jaccard 7 0.7196969696969697 0.19250253292806485 0.30375699440447645 18241.0 0.9666666666666667 0.2636363636363636 0.41428571428571426 2.0 "OR(jaccard(x.name,y.name)|0.60,jaccard(x.name,y.description)|0.60)|0" ABTBUY
log jarowinkler 7 0.23897795591182364 0.48328267477203646 0.31981226952732145 20034.0 0.8769230769230769 0.5181818181818182 0.6514285714285715 7967.0 "OR(OR(OR(jarowinkler(x.name,y.name)|0.83,jarowinkler(x.name,y.description)|0.83)|0,jarowinkler(x.description,y.name)|0.83)|0,jarowinkler(x.description,y.description)|0.83)|0" ABTBUY
log jaro 7 0.32215743440233235 0.22391084093211752 0.26419605499103405 3464.0 0.8214285714285714 0.20909090909090908 0.33333333333333337 146.0 "OR(jaro(x.name,y.name)|0.80,jaro(x.name,y.description)|0.70)|0" ABTBUY
log soundex 7 0.07953740854378098 0.3414387031408308 0.12901990811638592 54292.0 0.4935064935064935 0.34545454545454546 0.40641711229946526 1.0 "OR(soundex(x.description,y.name)|1.00,soundex(x.description,y.description)|1.00)|0" ABTBUY
log mongeelkan 7 0.404551201011378 0.3242147922998987 0.35995500562429694 19981.0 0.95 0.34545454545454546 0.5066666666666667 570.0 "mongeelkan(x.name,y.name)|0.80" ABTBUY
log levenstein 7 1.0 0.008105369807497468 0.01608040201005025 17422.0 1.0 0.01818181818181818 0.03571428571428572 3.0 "levenstein(x.name,y.name)|1.00" ABTBUY
log ratcliffobershelp 7 0.36163522012578614 0.3495440729483283 0.3554868624420402 19862.0 0.875 0.3181818181818182 0.4666666666666667 2855.0 "OR(OR(OR(ratcliffobershelp(x.name,y.name)|0.70,ratcliffobershelp(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0,ratcliffobershelp(x.description,y.description)|0.60)|0" ABTBUY
log trigrams 7 0.36162079510703365 0.47922998986828774 0.4122004357298475 22114.0 0.9032258064516129 0.509090909090909 0.6511627906976745 4.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log exactmatch 7 1.0 0.008105369807497468 0.01608040201005025 17844.0 1.0 0.01818181818181818 0.03571428571428572 0.0 "exactmatch(x.name,y.name)|1.00" ABTBUY
best jarowinkler 7 0.23897795591182364 0.48328267477203646 0.31981226952732145 20034.0 0.8769230769230769 0.5181818181818182 0.6514285714285715 7967.0 "OR(OR(OR(jarowinkler(x.name,y.name)|0.83,jarowinkler(x.name,y.description)|0.83)|0,jarowinkler(x.description,y.name)|0.83)|0,jarowinkler(x.description,y.description)|0.83)|0" ABTBUY
log jarowinkler,jaccard 7 0.259958071278826 0.502532928064843 0.3426597582037996 18716.0 0.875 0.509090909090909 0.6436781609195402 2176.0 "OR(OR(OR(OR(jarowinkler(x.name,y.name)|0.83,jaccard(x.name,y.name)|0.60)|0,jaccard(x.name,y.description)|0.60)|0,jarowinkler(x.description,y.name)|0.83)|0,jarowinkler(x.description,y.description)|0.83)|0" ABTBUY
log jarowinkler,jaro 7 0.24742773150416464 0.5116514690982776 0.333553500660502 11397.0 0.8823529411764706 0.5454545454545454 0.6741573033707865 1650.0 "OR(OR(OR(jarowinkler(x.name,y.name)|0.83,jaro(x.name,y.name)|0.80)|0,jarowinkler(x.name,y.description)|0.83)|0,jarowinkler(x.description,y.name)|0.83)|0" ABTBUY
log jarowinkler,soundex 7 0.23897795591182364 0.48328267477203646 0.31981226952732145 33021.0 0.8769230769230769 0.5181818181818182 0.6514285714285715 7967.0 "OR(OR(OR(jarowinkler(x.name,y.name)|0.83,jarowinkler(x.name,y.description)|0.83)|0,jarowinkler(x.description,y.name)|0.83)|0,jarowinkler(x.description,y.description)|0.83)|0" ABTBUY
log jarowinkler,mongeelkan 7 0.3638132295719844 0.3789260385005066 0.37121588089330027 18817.0 0.9130434782608695 0.38181818181818183 0.5384615384615384 3317.0 "OR(OR(mongeelkan(x.name,y.name)|0.80,jarowinkler(x.description,y.name)|0.83)|0,jarowinkler(x.name,y.description)|0.83)|0" ABTBUY
log jarowinkler,levenstein 7 0.23897795591182364 0.48328267477203646 0.31981226952732145 18944.0 0.8769230769230769 0.5181818181818182 0.6514285714285715 7967.0 "OR(OR(OR(jarowinkler(x.name,y.name)|0.83,jarowinkler(x.name,y.description)|0.83)|0,jarowinkler(x.description,y.name)|0.83)|0,jarowinkler(x.description,y.description)|0.83)|0" ABTBUY
log jarowinkler,ratcliffobershelp 7 0.35700197238658776 0.3667679837892604 0.3618190904547726 18083.0 0.9047619047619048 0.34545454545454546 0.5 2937.0 "OR(OR(OR(ratcliffobershelp(x.name,y.name)|0.70,jarowinkler(x.description,y.name)|0.83)|0,jarowinkler(x.name,y.description)|0.83)|0,ratcliffobershelp(x.description,y.description)|0.60)|0" ABTBUY
log jarowinkler,trigrams 7 0.3602391629297459 0.48834853090172237 0.4146236559139785 18757.0 0.9032258064516129 0.509090909090909 0.6511627906976745 537.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,jarowinkler(x.description,y.name)|0.83)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log jarowinkler,exactmatch 7 0.23897795591182364 0.48328267477203646 0.31981226952732145 18859.0 0.8769230769230769 0.5181818181818182 0.6514285714285715 7967.0 "OR(OR(OR(jarowinkler(x.name,y.name)|0.83,jarowinkler(x.name,y.description)|0.83)|0,jarowinkler(x.description,y.name)|0.83)|0,jarowinkler(x.description,y.description)|0.83)|0" ABTBUY
best jarowinkler,jaro 7 0.24742773150416464 0.5116514690982776 0.333553500660502 11397.0 0.8823529411764706 0.5454545454545454 0.6741573033707865 1650.0 "OR(OR(OR(jarowinkler(x.name,y.name)|0.83,jaro(x.name,y.name)|0.80)|0,jarowinkler(x.name,y.description)|0.83)|0,jarowinkler(x.description,y.name)|0.83)|0" ABTBUY
log jarowinkler,jaro,jaccard 7 0.2601542416452442 0.5126646403242148 0.34515688949522505 13613.0 0.8787878787878788 0.5272727272727272 0.6590909090909091 1653.0 "OR(OR(OR(OR(OR(jarowinkler(x.name,y.name)|0.83,jaccard(x.name,y.name)|0.60)|0,jaccard(x.name,y.description)|0.60)|0,jaro(x.name,y.name)|0.80)|0,jarowinkler(x.description,y.name)|0.83)|0,jarowinkler(x.description,y.description)|0.83)|0" ABTBUY
log jarowinkler,jaro,soundex 7 0.24742773150416464 0.5116514690982776 0.333553500660502 21960.0 0.8823529411764706 0.5454545454545454 0.6741573033707865 1650.0 "OR(OR(OR(jarowinkler(x.name,y.name)|0.83,jaro(x.name,y.name)|0.80)|0,jarowinkler(x.name,y.description)|0.83)|0,jarowinkler(x.description,y.name)|0.83)|0" ABTBUY
log jarowinkler,jaro,mongeelkan 7 0.36609558160504957 0.41134751773049644 0.3874045801526717 12820.0 0.8979591836734694 0.4 0.5534591194968553 2153.0 "OR(OR(OR(mongeelkan(x.name,y.name)|0.80,jaro(x.name,y.name)|0.80)|0,jarowinkler(x.name,y.description)|0.83)|0,jarowinkler(x.description,y.name)|0.83)|0" ABTBUY
log jarowinkler,jaro,levenstein 7 0.24742773150416464 0.5116514690982776 0.333553500660502 13301.0 0.8823529411764706 0.5454545454545454 0.6741573033707865 1650.0 "OR(OR(OR(jarowinkler(x.name,y.name)|0.83,jaro(x.name,y.name)|0.80)|0,jarowinkler(x.name,y.description)|0.83)|0,jarowinkler(x.description,y.name)|0.83)|0" ABTBUY
log jarowinkler,jaro,ratcliffobershelp 7 0.3599274705349048 0.4022289766970618 0.3799043062200957 12931.0 0.9130434782608695 0.38181818181818183 0.5384615384615384 2146.0 "OR(OR(OR(OR(ratcliffobershelp(x.name,y.name)|0.70,jaro(x.name,y.name)|0.80)|0,jarowinkler(x.description,y.name)|0.83)|0,ratcliffobershelp(x.description,y.description)|0.60)|0,jarowinkler(x.name,y.description)|0.83)|0" ABTBUY
log jarowinkler,jaro,trigrams 7 0.3540197461212976 0.5086119554204661 0.4174636174636175 13093.0 0.90625 0.5272727272727272 0.6666666666666665 631.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,jaro(x.name,y.name)|0.80)|0,jarowinkler(x.description,y.name)|0.83)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log jarowinkler,jaro,exactmatch 7 0.24742773150416464 0.5116514690982776 0.333553500660502 13769.0 0.8823529411764706 0.5454545454545454 0.6741573033707865 1650.0 "OR(OR(OR(jarowinkler(x.name,y.name)|0.83,jaro(x.name,y.name)|0.80)|0,jarowinkler(x.name,y.description)|0.83)|0,jarowinkler(x.description,y.name)|0.83)|0" ABTBUY
log jaccard 8 0.724907063197026 0.19716885743174925 0.3100158982511924 18026.0 1.0 0.2222222222222222 0.3636363636363636 2.0 "OR(jaccard(x.name,y.name)|0.60,jaccard(x.name,y.description)|0.60)|0" ABTBUY
log jarowinkler 8 0.2545357524012807 0.48230535894843274 0.3332169053440447 20483.0 0.7215189873417721 0.5277777777777778 0.6096256684491979 2065.0 "OR(OR(OR(jarowinkler(x.name,y.name)|0.83,jarowinkler(x.name,y.description)|0.83)|0,jarowinkler(x.description,y.name)|0.83)|0,jarowinkler(x.description,y.description)|0.83)|0" ABTBUY
log jaro 8 0.3353846153846154 0.2204246713852376 0.26601586333129956 3403.0 0.7647058823529411 0.24074074074074073 0.36619718309859156 163.0 "OR(jaro(x.name,y.name)|0.80,jaro(x.name,y.description)|0.70)|0" ABTBUY
log soundex 8 0.07954824453719617 0.3276036400404449 0.12801264322402212 51944.0 0.4177215189873418 0.3055555555555556 0.35294117647058826 1.0 "soundex(x.description,y.name)|1.00" ABTBUY
log mongeelkan 8 0.4498567335243553 0.31749241658240646 0.37225844694724364 20850.0 0.7719298245614035 0.4074074074074074 0.5333333333333333 551.0 "mongeelkan(x.name,y.name)|0.80" ABTBUY
log levenstein 8 1.0 0.00910010111223458 0.018036072144288578 17474.0 1.0 0.009259259259259259 0.018348623853211007 3.0 "levenstein(x.name,y.name)|1.00" ABTBUY
log ratcliffobershelp 8 0.38461538461538464 0.33872598584428715 0.3602150537634408 19153.0 0.7894736842105263 0.4166666666666667 0.5454545454545454 3005.0 "OR(OR(OR(ratcliffobershelp(x.name,y.name)|0.70,ratcliffobershelp(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0,ratcliffobershelp(x.description,y.description)|0.60)|0" ABTBUY
log trigrams 8 0.37933817594834546 0.4752275025278059 0.421903052064632 20642.0 0.8428571428571429 0.5462962962962963 0.6629213483146067 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log exactmatch 8 1.0 0.00910010111223458 0.018036072144288578 17751.0 1.0 0.009259259259259259 0.018348623853211007 0.0 "exactmatch(x.name,y.name)|1.00" ABTBUY
best trigrams 8 0.37933817594834546 0.4752275025278059 0.421903052064632 20642.0 0.8428571428571429 0.5462962962962963 0.6629213483146067 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,jaccard 8 0.37933817594834546 0.4752275025278059 0.421903052064632 19178.0 0.8428571428571429 0.5462962962962963 0.6629213483146067 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,jarowinkler 8 0.3780584056827151 0.48432760364004046 0.42464539007092195 21179.0 0.8428571428571429 0.5462962962962963 0.6629213483146067 525.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,jarowinkler(x.description,y.name)|0.83)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,jaro 8 0.37547600913937546 0.49848331648129424 0.4283231972198088 12467.0 0.8428571428571429 0.5462962962962963 0.6629213483146067 106.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,jaro(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,soundex 8 0.37933817594834546 0.4752275025278059 0.421903052064632 34014.0 0.8428571428571429 0.5462962962962963 0.6629213483146067 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan 8 0.36689655172413793 0.537917087967644 0.4362443624436244 18970.0 0.7974683544303798 0.5833333333333334 0.6737967914438503 555.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,levenstein 8 0.37933817594834546 0.4752275025278059 0.421903052064632 18512.0 0.8428571428571429 0.5462962962962963 0.6629213483146067 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,ratcliffobershelp 8 0.37310195227765725 0.5217391304347826 0.43507588532883645 20509.0 0.8441558441558441 0.6018518518518519 0.7027027027027026 2346.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,exactmatch 8 0.37933817594834546 0.4752275025278059 0.421903052064632 22131.0 0.8428571428571429 0.5462962962962963 0.6629213483146067 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
best trigrams,ratcliffobershelp 8 0.37310195227765725 0.5217391304347826 0.43507588532883645 20509.0 0.8441558441558441 0.6018518518518519 0.7027027027027026 2346.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,ratcliffobershelp,jaccard 8 0.37310195227765725 0.5217391304347826 0.43507588532883645 20946.0 0.8441558441558441 0.6018518518518519 0.7027027027027026 2346.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,ratcliffobershelp,jarowinkler 8 0.3713471133285816 0.5267947421638018 0.43561872909698995 19013.0 0.8441558441558441 0.6018518518518519 0.7027027027027026 1930.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,trigrams(x.name,y.description)|0.60)|0,jarowinkler(x.description,y.name)|0.83)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,ratcliffobershelp,jaro 8 0.3703443429374561 0.5328614762386249 0.4369817578772803 13672.0 0.8441558441558441 0.6018518518518519 0.7027027027027026 1124.0 "OR(OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,trigrams(x.name,y.description)|0.60)|0,jaro(x.name,y.name)|0.80)|0,trigrams(x.description,y.name)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,ratcliffobershelp,soundex 8 0.37310195227765725 0.5217391304347826 0.43507588532883645 28267.0 0.8441558441558441 0.6018518518518519 0.7027027027027026 2346.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,ratcliffobershelp,mongeelkan 8 0.3630573248407643 0.5763397371081901 0.44548651817116053 18732.0 0.8023255813953488 0.6388888888888888 0.7113402061855668 2663.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,ratcliffobershelp(x.name,y.name)|0.70)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,ratcliffobershelp,levenstein 8 0.37310195227765725 0.5217391304347826 0.43507588532883645 18672.0 0.8441558441558441 0.6018518518518519 0.7027027027027026 2346.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,ratcliffobershelp,exactmatch 8 0.37310195227765725 0.5217391304347826 0.43507588532883645 18322.0 0.8441558441558441 0.6018518518518519 0.7027027027027026 2346.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
best trigrams,ratcliffobershelp,mongeelkan 8 0.3630573248407643 0.5763397371081901 0.44548651817116053 18732.0 0.8023255813953488 0.6388888888888888 0.7113402061855668 2663.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,ratcliffobershelp(x.name,y.name)|0.70)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,ratcliffobershelp,mongeelkan,jaccard 8 0.3630573248407643 0.5763397371081901 0.44548651817116053 18531.0 0.8023255813953488 0.6388888888888888 0.7113402061855668 2663.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,ratcliffobershelp(x.name,y.name)|0.70)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,ratcliffobershelp,mongeelkan,jarowinkler 8 0.3630573248407643 0.5763397371081901 0.44548651817116053 18580.0 0.8023255813953488 0.6388888888888888 0.7113402061855668 2663.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,ratcliffobershelp(x.name,y.name)|0.70)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,ratcliffobershelp,mongeelkan,jaro 8 0.3643801132787917 0.5854398382204247 0.4491854150504267 14666.0 0.8023255813953488 0.6388888888888888 0.7113402061855668 1672.0 "OR(OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,ratcliffobershelp(x.name,y.name)|0.70)|0,trigrams(x.name,y.description)|0.60)|0,jaro(x.name,y.name)|0.80)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,ratcliffobershelp,mongeelkan,soundex 8 0.3630573248407643 0.5763397371081901 0.44548651817116053 25639.0 0.8023255813953488 0.6388888888888888 0.7113402061855668 2663.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,ratcliffobershelp(x.name,y.name)|0.70)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,ratcliffobershelp,mongeelkan,levenstein 8 0.3630573248407643 0.5763397371081901 0.44548651817116053 18066.0 0.8023255813953488 0.6388888888888888 0.7113402061855668 2663.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,ratcliffobershelp(x.name,y.name)|0.70)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,ratcliffobershelp,mongeelkan,exactmatch 8 0.3630573248407643 0.5763397371081901 0.44548651817116053 19259.0 0.8023255813953488 0.6388888888888888 0.7113402061855668 2663.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,ratcliffobershelp(x.name,y.name)|0.70)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log jaccard 9 0.693950177935943 0.19776876267748478 0.30781373322809785 18306.0 1.0 0.21621621621621623 0.35555555555555557 2.0 "OR(jaccard(x.name,y.name)|0.60,jaccard(x.name,y.description)|0.60)|0" ABTBUY
log jarowinkler 9 0.2395781014565545 0.48377281947261663 0.32045683574067857 19914.0 0.8142857142857143 0.5135135135135135 0.6298342541436465 2065.0 "OR(OR(OR(jarowinkler(x.name,y.name)|0.83,jarowinkler(x.name,y.description)|0.83)|0,jarowinkler(x.description,y.name)|0.83)|0,jarowinkler(x.description,y.description)|0.83)|0" ABTBUY
log jaro 9 0.3036723163841808 0.21805273833671399 0.2538370720188902 3987.0 0.8787878787878788 0.26126126126126126 0.40277777777777773 146.0 "OR(jaro(x.name,y.name)|0.80,jaro(x.name,y.description)|0.70)|0" ABTBUY
log soundex 9 0.09146341463414634 0.2129817444219067 0.1279707495429616 47811.0 0.5869565217391305 0.24324324324324326 0.34394904458598724 3.0 "OR(AND(soundex(x.description,y.name)|1.00,soundex(x.price,y.description)|0.25)|0,soundex(x.description,y.description)|1.00)|0" ABTBUY
log mongeelkan 9 0.41365979381443296 0.3255578093306288 0.3643586833144154 18697.0 0.8604651162790697 0.3333333333333333 0.48051948051948046 610.0 "mongeelkan(x.name,y.name)|0.80" ABTBUY
log levenstein 9 1.0 0.008113590263691683 0.016096579476861165 17636.0 1.0 0.018018018018018018 0.035398230088495575 3.0 "levenstein(x.name,y.name)|1.00" ABTBUY
log ratcliffobershelp 9 0.4 0.3103448275862069 0.34951456310679613 19557.0 0.975609756097561 0.36036036036036034 0.5263157894736842 2284.0 "OR(OR(ratcliffobershelp(x.name,y.name)|0.70,ratcliffobershelp(x.description,y.description)|0.60)|0,ratcliffobershelp(x.description,y.name)|0.60)|0" ABTBUY
log trigrams 9 0.3646877409406322 0.47971602434077076 0.4143670608848007 20604.0 0.9655172413793104 0.5045045045045045 0.6627218934911243 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log exactmatch 9 1.0 0.008113590263691683 0.016096579476861165 17185.0 1.0 0.018018018018018018 0.035398230088495575 1.0 "exactmatch(x.name,y.name)|1.00" ABTBUY
best trigrams 9 0.3646877409406322 0.47971602434077076 0.4143670608848007 20604.0 0.9655172413793104 0.5045045045045045 0.6627218934911243 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,jaccard 9 0.3781998348472337 0.4645030425963489 0.4169321802457897 19961.0 0.9649122807017544 0.4954954954954955 0.6547619047619048 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,jaccard(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,jarowinkler 9 0.3624717407686511 0.48782961460446245 0.4159100734976221 18825.0 0.95 0.5135135135135135 0.6666666666666667 525.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,jarowinkler(x.description,y.name)|0.83)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,jaro 9 0.3625644804716286 0.49898580121703856 0.4199743918053777 11330.0 0.9375 0.5405405405405406 0.6857142857142857 103.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,jaro(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,soundex 9 0.3646877409406322 0.47971602434077076 0.4143670608848007 32469.0 0.9655172413793104 0.5045045045045045 0.6627218934911243 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan 9 0.34822601839684625 0.537525354969574 0.4226475279106858 19061.0 0.8904109589041096 0.5855855855855856 0.7065217391304348 613.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,levenstein 9 0.3646877409406322 0.47971602434077076 0.4143670608848007 18582.0 0.9655172413793104 0.5045045045045045 0.6627218934911243 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,ratcliffobershelp 9 0.35911602209944754 0.5273833671399595 0.4272801972062448 19187.0 0.967741935483871 0.5405405405405406 0.6936416184971099 1686.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0,ratcliffobershelp(x.description,y.description)|0.60)|0" ABTBUY
log trigrams,exactmatch 9 0.3646877409406322 0.47971602434077076 0.4143670608848007 19771.0 0.9655172413793104 0.5045045045045045 0.6627218934911243 5.0 "OR(OR(trigrams(x.name,y.name)|0.60,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
best trigrams,mongeelkan 9 0.34822601839684625 0.537525354969574 0.4226475279106858 19061.0 0.8904109589041096 0.5855855855855856 0.7065217391304348 613.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,jaccard 9 0.35664819944598336 0.5223123732251521 0.42386831275720166 18494.0 0.8888888888888888 0.5765765765765766 0.6994535519125684 614.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,jaccard(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,jarowinkler 9 0.34822601839684625 0.537525354969574 0.4226475279106858 18610.0 0.8904109589041096 0.5855855855855856 0.7065217391304348 613.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,jaro 9 0.34827144686299616 0.5517241379310345 0.4270015698587127 13178.0 0.8933333333333333 0.6036036036036037 0.7204301075268817 710.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,jaro(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,soundex 9 0.34822601839684625 0.537525354969574 0.4226475279106858 26806.0 0.8904109589041096 0.5855855855855856 0.7065217391304348 613.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,levenstein 9 0.34822601839684625 0.537525354969574 0.4226475279106858 18009.0 0.8904109589041096 0.5855855855855856 0.7065217391304348 613.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp 9 0.3458966565349544 0.577079107505071 0.43253515773470164 18420.0 0.8947368421052632 0.6126126126126126 0.7272727272727272 2315.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.description)|0.60)|0" ABTBUY
log trigrams,mongeelkan,exactmatch 9 0.34822601839684625 0.537525354969574 0.4226475279106858 18969.0 0.8904109589041096 0.5855855855855856 0.7065217391304348 613.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,trigrams(x.description,y.name)|0.60)|0" ABTBUY
best trigrams,mongeelkan,ratcliffobershelp 9 0.3458966565349544 0.577079107505071 0.43253515773470164 18420.0 0.8947368421052632 0.6126126126126126 0.7272727272727272 2315.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.description)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,jaccard 9 0.35358056265984655 0.5608519269776876 0.4337254901960784 18637.0 0.8933333333333333 0.6036036036036037 0.7204301075268817 1121.0 "OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,jaccard(x.name,y.description)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,jarowinkler 9 0.3458966565349544 0.577079107505071 0.43253515773470164 18645.0 0.8947368421052632 0.6126126126126126 0.7272727272727272 2315.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.description)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,jaro 9 0.3471720818291215 0.5851926977687627 0.43580060422960726 14344.0 0.8961038961038961 0.6216216216216216 0.7340425531914894 2221.0 "OR(OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,jaro(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.description)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,soundex 9 0.3458966565349544 0.577079107505071 0.43253515773470164 24990.0 0.8947368421052632 0.6126126126126126 0.7272727272727272 2315.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.description)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,levenstein 9 0.3458966565349544 0.577079107505071 0.43253515773470164 18321.0 0.8947368421052632 0.6126126126126126 0.7272727272727272 2315.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.description)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,exactmatch 9 0.3458966565349544 0.577079107505071 0.43253515773470164 18420.0 0.8947368421052632 0.6126126126126126 0.7272727272727272 2315.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.description)|0.60)|0" ABTBUY
best trigrams,mongeelkan,ratcliffobershelp,jaro 9 0.3471720818291215 0.5851926977687627 0.43580060422960726 14344.0 0.8961038961038961 0.6216216216216216 0.7340425531914894 2221.0 "OR(OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,jaro(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.description)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,jaro,jaccard 9 0.3548387096774194 0.5689655172413793 0.4370860927152318 15013.0 0.8947368421052632 0.6126126126126126 0.7272727272727272 1803.0 "OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,jaccard(x.name,y.description)|0.60)|0,jaro(x.name,y.name)|0.80)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,jaro,jarowinkler 9 0.3471720818291215 0.5851926977687627 0.43580060422960726 15345.0 0.8961038961038961 0.6216216216216216 0.7340425531914894 2221.0 "OR(OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,jaro(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.description)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,jaro,soundex 9 0.3471720818291215 0.5851926977687627 0.43580060422960726 20476.0 0.8961038961038961 0.6216216216216216 0.7340425531914894 2221.0 "OR(OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,jaro(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.description)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,jaro,levenstein 9 0.3471720818291215 0.5851926977687627 0.43580060422960726 14675.0 0.8961038961038961 0.6216216216216216 0.7340425531914894 2221.0 "OR(OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,jaro(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.description)|0.60)|0" ABTBUY
log trigrams,mongeelkan,ratcliffobershelp,jaro,exactmatch 9 0.3471720818291215 0.5851926977687627 0.43580060422960726 14906.0 0.8961038961038961 0.6216216216216216 0.7340425531914894 2221.0 "OR(OR(OR(OR(OR(trigrams(x.name,y.name)|0.60,ratcliffobershelp(x.name,y.name)|0.70)|0,mongeelkan(x.name,y.name)|0.80)|0,jaro(x.name,y.name)|0.80)|0,trigrams(x.name,y.description)|0.60)|0,ratcliffobershelp(x.description,y.description)|0.60)|0" ABTBUY
log jaccard 0 0.9123300515705579 0.972027972027972 0.9412333736396614 15841.0 1.0 0.954954954954955 0.9769585253456221 3.0 "jaccard(x.title,y.title)|0.60" DBLPACM
log jarowinkler 0 0.9244380679100909 0.9655344655344655 0.9445394576105546 15662.0 1.0 0.9279279279279279 0.9626168224299065 541.0 "jarowinkler(x.title,y.title)|0.91" DBLPACM
log jaro 0 0.9295154185022027 0.9485514485514486 0.9389369592089 79863.0 1.0 0.918918918918919 0.9577464788732395 317.0 "jaro(x.title,y.title)|0.90" DBLPACM
log soundex 0 0.40012279983626686 0.9765234765234765 0.5676538908246225 44279.0 0.9 0.972972972972973 0.935064935064935 3.0 "DIFF(soundex(x.title,y.title)|1.00,soundex(x.venue,y.title)|0.75)|0" DBLPACM
log mongeelkan 0 0.9050305594734368 0.9615384615384616 0.9324291596028094 25223.0 0.9904306220095693 0.9324324324324325 0.9605568445475637 1467.0 "mongeelkan(x.title,y.title)|0.90" DBLPACM
log levenstein 0 0.933649289099526 0.8856143856143857 0.9089976928992566 5697.0 1.0 0.8558558558558559 0.9223300970873786 13.0 "levenstein(x.title,y.title)|1.00" DBLPACM
log ratcliffobershelp 0 0.928088803088803 0.9605394605394605 0.9440353460972017 15631.0 0.9904761904761905 0.9369369369369369 0.962962962962963 515.0 "ratcliffobershelp(x.title,y.title)|0.90" DBLPACM
log trigrams 0 0.9218600191754555 0.9605394605394605 0.9408023483365949 15077.0 1.0 0.9504504504504504 0.9745958429561201 4.0 "trigrams(x.title,y.title)|0.80" DBLPACM
log exactmatch 0 0.933649289099526 0.8856143856143857 0.9089976928992566 5694.0 1.0 0.8558558558558559 0.9223300970873786 2.0 "exactmatch(x.title,y.title)|1.00" DBLPACM
best jaccard 0 0.9123300515705579 0.972027972027972 0.9412333736396614 15841.0 1.0 0.954954954954955 0.9769585253456221 3.0 "jaccard(x.title,y.title)|0.60" DBLPACM
log jaccard,jarowinkler 0 0.9244380679100909 0.9655344655344655 0.9445394576105546 14291.0 1.0 0.9279279279279279 0.9626168224299065 607.0 "jarowinkler(x.title,y.title)|0.91" DBLPACM
log jaccard,jaro 0 0.9126984126984127 0.9765234765234765 0.9435328185328186 43200.0 1.0 0.9594594594594594 0.9793103448275862 322.0 "OR(jaccard(x.title,y.title)|0.60,jaro(x.title,y.title)|0.90)|0" DBLPACM
log jaccard,soundex 0 0.9259615384615385 0.962037962037962 0.943655071043606 23917.0 1.0 0.9459459459459459 0.9722222222222222 3.0 "AND(jaccard(x.title,y.title)|0.60,soundex(x.title,y.title)|1.00)|0" DBLPACM
log jaccard,mongeelkan 0 0.9123300515705579 0.972027972027972 0.9412333736396614 22156.0 1.0 0.954954954954955 0.9769585253456221 3.0 "jaccard(x.title,y.title)|0.60" DBLPACM
log jaccard,levenstein 0 0.9123300515705579 0.972027972027972 0.9412333736396614 9044.0 1.0 0.954954954954955 0.9769585253456221 3.0 "jaccard(x.title,y.title)|0.60" DBLPACM
log jaccard,ratcliffobershelp 0 0.912861136999068 0.9785214785214785 0.9445515911282545 14146.0 0.9907834101382489 0.9684684684684685 0.9794988610478361 1889.0 "OR(ratcliffobershelp(x.title,y.title)|0.90,jaccard(x.title,y.title)|0.60)|0" DBLPACM
log jaccard,trigrams 0 0.9123300515705579 0.972027972027972 0.9412333736396614 13975.0 1.0 0.954954954954955 0.9769585253456221 3.0 "jaccard(x.title,y.title)|0.60" DBLPACM
log jaccard,exactmatch 0 0.9123300515705579 0.972027972027972 0.9412333736396614 9066.0 1.0 0.954954954954955 0.9769585253456221 3.0 "jaccard(x.title,y.title)|0.60" DBLPACM
best jaccard,ratcliffobershelp 0 0.912861136999068 0.9785214785214785 0.9445515911282545 14146.0 0.9907834101382489 0.9684684684684685 0.9794988610478361 1889.0 "OR(ratcliffobershelp(x.title,y.title)|0.90,jaccard(x.title,y.title)|0.60)|0" DBLPACM
log jaccard,ratcliffobershelp,jarowinkler 0 0.9229671897289586 0.9695304695304695 0.9456760048721072 13960.0 0.9905660377358491 0.9459459459459459 0.967741935483871 1604.0 "OR(jarowinkler(x.title,y.title)|0.91,ratcliffobershelp(x.title,y.title)|0.90)|0" DBLPACM
log jaccard,ratcliffobershelp,jaro 0 0.9277857484457197 0.9690309690309691 0.9479599315905204 32862.0 0.9906103286384976 0.9504504504504504 0.9701149425287356 1490.0 "OR(ratcliffobershelp(x.title,y.title)|0.90,jaro(x.title,y.title)|0.90)|0" DBLPACM
log jaccard,ratcliffobershelp,soundex 0 0.924573055028463 0.9735264735264735 0.9484184914841849 22376.0 0.9907834101382489 0.9684684684684685 0.9794988610478361 537.0 "OR(AND(OR(ratcliffobershelp(x.title,y.title)|0.90,jaccard(x.title,y.title)|0.60)|0,soundex(x.title,y.title)|1.00)|0,ratcliffobershelp(x.title,y.title)|0.90)|0" DBLPACM
log jaccard,ratcliffobershelp,mongeelkan 0 0.912861136999068 0.9785214785214785 0.9445515911282545 16684.0 0.9907834101382489 0.9684684684684685 0.9794988610478361 1889.0 "OR(ratcliffobershelp(x.title,y.title)|0.90,jaccard(x.title,y.title)|0.60)|0" DBLPACM
log jaccard,ratcliffobershelp,levenstein 0 0.912861136999068 0.9785214785214785 0.9445515911282545 10556.0 0.9907834101382489 0.9684684684684685 0.9794988610478361 1889.0 "OR(ratcliffobershelp(x.title,y.title)|0.90,jaccard(x.title,y.title)|0.60)|0" DBLPACM
log jaccard,ratcliffobershelp,trigrams 0 0.9181176470588235 0.9745254745254746 0.9454809789193118 13770.0 0.9907834101382489 0.9684684684684685 0.9794988610478361 1030.0 "OR(ratcliffobershelp(x.title,y.title)|0.90,trigrams(x.title,y.title)|0.80)|0" DBLPACM
log jaccard,ratcliffobershelp,exactmatch 0 0.912861136999068 0.9785214785214785 0.9445515911282545 10583.0 0.9907834101382489 0.9684684684684685 0.9794988610478361 1889.0 "OR(ratcliffobershelp(x.title,y.title)|0.90,jaccard(x.title,y.title)|0.60)|0" DBLPACM
log jaccard 1 0.8988919667590027 0.9720419370943585 0.9340369393139842 16041.0 0.9906103286384976 0.9547511312217195 0.9723502304147466 2.0 "jaccard(x.title,y.title)|0.60" DBLPACM
log jarowinkler 1 0.9106382978723404 0.9615576635047429 0.9354055366682855 15966.0 1.0 0.9638009049773756 0.9815668202764977 536.0 "jarowinkler(x.title,y.title)|0.91" DBLPACM
log jaro 1 0.9149347510874819 0.945082376435347 0.9297642436149314 84499.0 1.0 0.9502262443438914 0.974477958236659 302.0 "jaro(x.title,y.title)|0.90" DBLPACM
log soundex 1 0.40361693382655156 0.9805292061907139 0.5718445188528171 76555.0 0.8314176245210728 0.9819004524886877 0.9004149377593361 2.0 "soundex(x.title,y.title)|1.00" DBLPACM
log mongeelkan 1 0.8877079482439926 0.9590614078881677 0.9220062395008399 27871.0 0.9952830188679245 0.9547511312217195 0.9745958429561202 1453.0 "mongeelkan(x.title,y.title)|0.90" DBLPACM
log levenstein 1 0.9198334200937012 0.8821767348976535 0.900611620795107 5863.0 1.0 0.8868778280542986 0.9400479616306954 11.0 "levenstein(x.title,y.title)|1.00" DBLPACM
log ratcliffobershelp 1 0.9115969581749049 0.9575636545182227 0.9340150961772583 16686.0 1.0 0.9638009049773756 0.9815668202764977 1125.0 "ratcliffobershelp(x.title,y.title)|0.90" DBLPACM
log trigrams 1 0.9123638086215063 0.9615576635047429 0.9363150218765192 15514.0 1.0 0.9411764705882353 0.9696969696969697 2.0 "trigrams(x.title,y.title)|0.80" DBLPACM
log exactmatch 1 0.9198334200937012 0.8821767348976535 0.900611620795107 5817.0 1.0 0.8868778280542986 0.9400479616306954 1.0 "exactmatch(x.title,y.title)|1.00" DBLPACM
best jarowinkler 1 0.9106382978723404 0.9615576635047429 0.9354055366682855 15966.0 1.0 0.9638009049773756 0.9815668202764977 536.0 "jarowinkler(x.title,y.title)|0.91" DBLPACM
log jarowinkler,jaccard 1 0.8966148215919487 0.9785322016974538 0.9357841967056577 14660.0 0.9908256880733946 0.9773755656108597 0.9840546697038726 548.0 "OR(jarowinkler(x.title,y.title)|0.91,jaccard(x.title,y.title)|0.60)|0" DBLPACM
log jarowinkler,jaro 1 0.9109750353273669 0.9655516724912631 0.9374697043141055 43276.0 1.0 0.9683257918552036 0.9839080459770114 3819.0 "OR(jarowinkler(x.title,y.title)|0.91,jaro(x.title,y.title)|0.90)|0" DBLPACM
log jarowinkler,soundex 1 0.9106382978723404 0.9615576635047429 0.9354055366682855 44016.0 1.0 0.9638009049773756 0.9815668202764977 536.0 "jarowinkler(x.title,y.title)|0.91" DBLPACM
log jarowinkler,mongeelkan 1 0.9106382978723404 0.9615576635047429 0.9354055366682855 19173.0 1.0 0.9638009049773756 0.9815668202764977 536.0 "jarowinkler(x.title,y.title)|0.91" DBLPACM
log jarowinkler,levenstein 1 0.9106382978723404 0.9615576635047429 0.9354055366682855 9540.0 1.0 0.9638009049773756 0.9815668202764977 536.0 "jarowinkler(x.title,y.title)|0.91" DBLPACM
log jarowinkler,ratcliffobershelp 1 0.9081106422878574 0.9670494258612082 0.9366537717601546 15664.0 1.0 0.9683257918552036 0.9839080459770114 1366.0 "OR(jarowinkler(x.title,y.title)|0.91,ratcliffobershelp(x.title,y.title)|0.90)|0" DBLPACM
log jarowinkler,trigrams 1 0.9029574861367837 0.9755366949575637 0.9378449724022079 14947.0 1.0 0.9728506787330317 0.9862385321100917 543.0 "OR(trigrams(x.title,y.title)|0.80,jarowinkler(x.title,y.title)|0.91)|0" DBLPACM
log jarowinkler,exactmatch 1 0.9106382978723404 0.9615576635047429 0.9354055366682855 9580.0 1.0 0.9638009049773756 0.9815668202764977 536.0 "jarowinkler(x.title,y.title)|0.91" DBLPACM
best jarowinkler,trigrams 1 0.9029574861367837 0.9755366949575637 0.9378449724022079 14947.0 1.0 0.9728506787330317 0.9862385321100917 543.0 "OR(trigrams(x.title,y.title)|0.80,jarowinkler(x.title,y.title)|0.91)|0" DBLPACM
log jarowinkler,trigrams,jaccard 1 0.9029574861367837 0.9755366949575637 0.9378449724022079 13874.0 1.0 0.9728506787330317 0.9862385321100917 543.0 "OR(trigrams(x.title,y.title)|0.80,jarowinkler(x.title,y.title)|0.91)|0" DBLPACM
log jarowinkler,trigrams,jaro 1 0.9030470914127424 0.9765351972041937 0.9383545214679779 32467.0 1.0 0.9728506787330317 0.9862385321100917 845.0 "OR(OR(trigrams(x.title,y.title)|0.80,jarowinkler(x.title,y.title)|0.91)|0,jaro(x.title,y.title)|0.90)|0" DBLPACM
log jarowinkler,trigrams,soundex 1 0.9029574861367837 0.9755366949575637 0.9378449724022079 33114.0 1.0 0.9728506787330317 0.9862385321100917 543.0 "OR(trigrams(x.title,y.title)|0.80,jarowinkler(x.title,y.title)|0.91)|0" DBLPACM
log jarowinkler,trigrams,mongeelkan 1 0.9029574861367837 0.9755366949575637 0.9378449724022079 18328.0 1.0 0.9728506787330317 0.9862385321100917 543.0 "OR(trigrams(x.title,y.title)|0.80,jarowinkler(x.title,y.title)|0.91)|0" DBLPACM
log jarowinkler,trigrams,levenstein 1 0.9029574861367837 0.9755366949575637 0.9378449724022079 11368.0 1.0 0.9728506787330317 0.9862385321100917 543.0 "OR(trigrams(x.title,y.title)|0.80,jarowinkler(x.title,y.title)|0.91)|0" DBLPACM
log jarowinkler,trigrams,ratcliffobershelp 1 0.9049605934167826 0.9745381927109336 0.9384615384615385 14584.0 1.0 0.9683257918552036 0.9839080459770114 1477.0 "OR(trigrams(x.title,y.title)|0.80,ratcliffobershelp(x.title,y.title)|0.90)|0" DBLPACM
log jarowinkler,trigrams,exactmatch 1 0.9029574861367837 0.9755366949575637 0.9378449724022079 10936.0 1.0 0.9728506787330317 0.9862385321100917 543.0 "OR(trigrams(x.title,y.title)|0.80,jarowinkler(x.title,y.title)|0.91)|0" DBLPACM
log jaccard 2 0.9136150234741784 0.972027972027972 0.9419167473378509 16114.0 0.9906542056074766 0.954954954954955 0.9724770642201835 3.0 "jaccard(x.title,y.title)|0.60" DBLPACM
log jarowinkler 2 0.928880345987506 0.9655344655344655 0.946852804310556 16080.0 0.9906542056074766 0.954954954954955 0.9724770642201835 544.0 "jarowinkler(x.title,y.title)|0.91" DBLPACM
log jaro 2 0.9339901477832512 0.9470529470529471 0.9404761904761905 77355.0 0.9904306220095693 0.9324324324324325 0.9605568445475637 296.0 "jaro(x.title,y.title)|0.90" DBLPACM
log soundex 2 0.40904355073973747 0.9805194805194806 0.5772680488163506 84249.0 0.8755020080321285 0.9819819819819819 0.9256900212314225 1.0 "soundex(x.title,y.title)|1.00" DBLPACM
log mongeelkan 2 0.901593252108716 0.961038961038961 0.9303675048355899 24180.0 0.9952153110047847 0.9369369369369369 0.9651972157772621 1365.0 "mongeelkan(x.title,y.title)|0.90" DBLPACM
log levenstein 2 0.9376979936642027 0.8871128871128872 0.9117043121149898 5831.0 0.9946808510638298 0.8423423423423423 0.9121951219512194 11.0 "levenstein(x.title,y.title)|1.00" DBLPACM
log ratcliffobershelp 2 0.9304347826086956 0.962037962037962 0.9459724950884086 21808.0 0.9905660377358491 0.9459459459459459 0.967741935483871 521.0 "ratcliffobershelp(x.title,y.title)|0.90" DBLPACM
log trigrams 2 0.9246279404704753 0.962037962037962 0.9429620563035496 15994.0 0.9952153110047847 0.9369369369369369 0.9651972157772621 2.0 "trigrams(x.title,y.title)|0.80" DBLPACM
log exactmatch 2 0.9376979936642027 0.8871128871128872 0.9117043121149898 5836.0 0.9946808510638298 0.8423423423423423 0.9121951219512194 1.0 "exactmatch(x.title,y.title)|1.00" DBLPACM
best jaccard 2 0.9136150234741784 0.972027972027972 0.9419167473378509 16114.0 0.9906542056074766 0.954954954954955 0.9724770642201835 3.0 "jaccard(x.title,y.title)|0.60" DBLPACM
log jaccard,jarowinkler 2 0.928880345987506 0.9655344655344655 0.946852804310556 14232.0 0.9906542056074766 0.954954954954955 0.9724770642201835 2959.0 "jarowinkler(x.title,y.title)|0.91" DBLPACM
log jaccard,jaro 2 0.9139784946236559 0.9765234765234765 0.9442163728567978 41143.0 0.9906976744186047 0.9594594594594594 0.9748283752860413 299.0 "OR(jaccard(x.title,y.title)|0.60,jaro(x.title,y.title)|0.90)|0" DBLPACM
log jaccard,soundex 2 0.9322362052274927 0.962037962037962 0.9469026548672567 47136.0 0.9905660377358491 0.9459459459459459 0.967741935483871 4.0 "AND(jaccard(x.title,y.title)|0.60,soundex(x.title,y.title)|1.00)|0" DBLPACM
log jaccard,mongeelkan 2 0.9136150234741784 0.972027972027972 0.9419167473378509 20351.0 0.9906542056074766 0.954954954954955 0.9724770642201835 3.0 "jaccard(x.title,y.title)|0.60" DBLPACM
log jaccard,levenstein 2 0.9136150234741784 0.972027972027972 0.9419167473378509 9317.0 0.9906542056074766 0.954954954954955 0.9724770642201835 3.0 "jaccard(x.title,y.title)|0.60" DBLPACM
log jaccard,ratcliffobershelp 2 0.9304347826086956 0.962037962037962 0.9459724950884086 14652.0 0.9905660377358491 0.9459459459459459 0.967741935483871 513.0 "ratcliffobershelp(x.title,y.title)|0.90" DBLPACM
log jaccard,trigrams 2 0.9246279404704753 0.962037962037962 0.9429620563035496 14235.0 0.9952153110047847 0.9369369369369369 0.9651972157772621 2.0 "trigrams(x.title,y.title)|0.80" DBLPACM
log jaccard,exactmatch 2 0.9136150234741784 0.972027972027972 0.9419167473378509 9325.0 0.9906542056074766 0.954954954954955 0.9724770642201835 3.0 "jaccard(x.title,y.title)|0.60" DBLPACM
best jaccard,jaro 2 0.9139784946236559 0.9765234765234765 0.9442163728567978 41143.0 0.9906976744186047 0.9594594594594594 0.9748283752860413 299.0 "OR(jaccard(x.title,y.title)|0.60,jaro(x.title,y.title)|0.90)|0" DBLPACM
log jaccard,jaro,jarowinkler 2 0.928605654048874 0.968031968031968 0.9479090242112985 32418.0 0.9906542056074766 0.954954954954955 0.9724770642201835 2167.0 "OR(jarowinkler(x.title,y.title)|0.91,jaro(x.title,y.title)|0.90)|0" DBLPACM
log jaccard,jaro,soundex 2 0.9318290926548247 0.9695304695304695 0.9503059975520196 55839.0 0.9906103286384976 0.9504504504504504 0.9701149425287356 302.0 "OR(AND(jaccard(x.title,y.title)|0.60,soundex(x.title,y.title)|1.00)|0,jaro(x.title,y.title)|0.90)|0" DBLPACM
log jaccard,jaro,mongeelkan 2 0.9139784946236559 0.9765234765234765 0.9442163728567978 39185.0 0.9906976744186047 0.9594594594594594 0.9748283752860413 299.0 "OR(jaccard(x.title,y.title)|0.60,jaro(x.title,y.title)|0.90)|0" DBLPACM
log jaccard,jaro,levenstein 2 0.9139784946236559 0.9765234765234765 0.9442163728567978 29664.0 0.9906976744186047 0.9594594594594594 0.9748283752860413 299.0 "OR(jaccard(x.title,y.title)|0.60,jaro(x.title,y.title)|0.90)|0" DBLPACM
log jaccard,jaro,ratcliffobershelp 2 0.9300095877277086 0.9690309690309691 0.9491193737769081 35269.0 0.9906976744186047 0.9594594594594594 0.9748283752860413 1618.0 "OR(ratcliffobershelp(x.title,y.title)|0.90,jaro(x.title,y.title)|0.90)|0" DBLPACM
log jaccard,jaro,trigrams 2 0.9221272554605888 0.97002997002997 0.9454722492697177 33000.0 0.9906103286384976 0.9504504504504504 0.9701149425287356 301.0 "OR(trigrams(x.title,y.title)|0.80,jaro(x.title,y.title)|0.90)|0" DBLPACM
log jaccard,jaro,exactmatch 2 0.9139784946236559 0.9765234765234765 0.9442163728567978 31691.0 0.9906976744186047 0.9594594594594594 0.9748283752860413 299.0 "OR(jaccard(x.title,y.title)|0.60,jaro(x.title,y.title)|0.90)|0" DBLPACM
log jaccard 3 0.9107142857142857 0.968031968031968 0.9384987893462469 15213.0 0.9865470852017937 0.990990990990991 0.9887640449438202 3.0 "jaccard(x.title,y.title)|0.60" DBLPACM
log jarowinkler 3 0.9196940726577438 0.961038961038961 0.9399120664386909 17249.0 0.9907834101382489 0.9684684684684685 0.9794988610478361 538.0 "jarowinkler(x.title,y.title)|0.91" DBLPACM
log jaro 3 0.9257086999022482 0.9460539460539461 0.9357707509881423 103286.0 0.990521327014218 0.9414414414414415 0.9653579676674365 297.0 "jaro(x.title,y.title)|0.90" DBLPACM
log soundex 3 0.4120982986767486 0.98001998001998 0.5802158805263936 77868.0 0.8111111111111111 0.9864864864864865 0.8902439024390244 1.0 "soundex(x.title,y.title)|1.00" DBLPACM
log mongeelkan 3 0.9012693935119888 0.9575424575424576 0.9285541293291354 26522.0 0.9862385321100917 0.9684684684684685 0.9772727272727272 3019.0 "mongeelkan(x.title,y.title)|0.90" DBLPACM
log levenstein 3 0.9323109465891063 0.8806193806193806 0.9057282301566916 5801.0 0.9900990099009901 0.9009009009009009 0.9433962264150942 10.0 "levenstein(x.title,y.title)|1.00" DBLPACM
log ratcliffobershelp 3 0.923039923039923 0.9585414585414586 0.9404557706444499 17665.0 0.986046511627907 0.954954954954955 0.9702517162471395 725.0 "ratcliffobershelp(x.title,y.title)|0.90" DBLPACM
log trigrams 3 0.9221153846153847 0.958041958041958 0.939735423811857 15701.0 0.9863013698630136 0.972972972972973 0.979591836734694 2.0 "trigrams(x.title,y.title)|0.80" DBLPACM
log exactmatch 3 0.9323109465891063 0.8806193806193806 0.9057282301566916 5818.0 0.9900990099009901 0.9009009009009009 0.9433962264150942 1.0 "exactmatch(x.title,y.title)|1.00" DBLPACM
best jaccard 3 0.9107142857142857 0.968031968031968 0.9384987893462469 15213.0 0.9865470852017937 0.990990990990991 0.9887640449438202 3.0 "jaccard(x.title,y.title)|0.60" DBLPACM
log jaccard,jarowinkler 3 0.9068150208623088 0.977022977022977 0.9406107237316663 14279.0 0.9865470852017937 0.990990990990991 0.9887640449438202 1109.0 "OR(jarowinkler(x.title,y.title)|0.91,jaccard(x.title,y.title)|0.60)|0" DBLPACM
log jaccard,jaro 3 0.9111318989710009 0.973026973026973 0.9410628019323671 56656.0 0.9865470852017937 0.990990990990991 0.9887640449438202 293.0 "OR(jaccard(x.title,y.title)|0.60,jaro(x.title,y.title)|0.90)|0" DBLPACM
log jaccard,soundex 3 0.9238921001926782 0.958041958041958 0.9406571848945561 41572.0 0.990909090909091 0.9819819819819819 0.9864253393665158 4.0 "AND(jaccard(x.title,y.title)|0.60,soundex(x.title,y.title)|1.00)|0" DBLPACM
log jaccard,mongeelkan 3 0.9107142857142857 0.968031968031968 0.9384987893462469 18796.0 0.9865470852017937 0.990990990990991 0.9887640449438202 3.0 "jaccard(x.title,y.title)|0.60" DBLPACM
log jaccard,levenstein 3 0.9107142857142857 0.968031968031968 0.9384987893462469 10440.0 0.9865470852017937 0.990990990990991 0.9887640449438202 3.0 "jaccard(x.title,y.title)|0.60" DBLPACM
log jaccard,ratcliffobershelp 3 0.9101071262226362 0.9760239760239761 0.9419137141479875 14674.0 0.9865470852017937 0.990990990990991 0.9887640449438202 1563.0 "OR(ratcliffobershelp(x.title,y.title)|0.90,jaccard(x.title,y.title)|0.60)|0" DBLPACM
log jaccard,trigrams 3 0.9221153846153847 0.958041958041958 0.939735423811857 14395.0 0.9863013698630136 0.972972972972973 0.979591836734694 2.0 "trigrams(x.title,y.title)|0.80" DBLPACM
log jaccard,exactmatch 3 0.9107142857142857 0.968031968031968 0.9384987893462469 9202.0 0.9865470852017937 0.990990990990991 0.9887640449438202 3.0 "jaccard(x.title,y.title)|0.60" DBLPACM
log jaccard 4 0.9199431549028896 0.97002997002997 0.9443228786773645 15132.0 0.9908256880733946 0.972972972972973 0.9818181818181818 2.0 "jaccard(x.title,y.title)|0.60" DBLPACM
log jarowinkler 4 0.9335274138767589 0.961038961038961 0.9470834358848141 15855.0 0.9907834101382489 0.9684684684684685 0.9794988610478361 540.0 "jarowinkler(x.title,y.title)|0.91" DBLPACM
log jaro 4 0.9393638170974155 0.9440559440559441 0.9417040358744395 93284.0 0.9906976744186047 0.9594594594594594 0.9748283752860413 317.0 "jaro(x.title,y.title)|0.90" DBLPACM
log soundex 4 0.40363937138130684 0.975024975024975 0.570927171687628 25365.0 0.8488372093023255 0.9864864864864865 0.9125 2.0 "DIFF(soundex(x.title,y.title)|1.00,soundex(x.venue,y.title)|0.75)|0" DBLPACM
log mongeelkan 4 0.9072847682119205 0.958041958041958 0.9319727891156463 25364.0 0.9907407407407407 0.963963963963964 0.9771689497716894 1432.0 "mongeelkan(x.title,y.title)|0.90" DBLPACM
log levenstein 4 0.9427194860813705 0.8796203796203796 0.9100775193798449 5767.0 0.9901960784313726 0.9099099099099099 0.9483568075117371 12.0 "levenstein(x.title,y.title)|1.00" DBLPACM
log ratcliffobershelp 4 0.9350902879453392 0.957042957042957 0.9459392742532708 18125.0 0.9907834101382489 0.9684684684684685 0.9794988610478361 785.0 "ratcliffobershelp(x.title,y.title)|0.90" DBLPACM
log trigrams 4 0.9297820823244553 0.9590409590409591 0.9441849028768133 15549.0 0.9907407407407407 0.963963963963964 0.9771689497716894 2.0 "trigrams(x.title,y.title)|0.80" DBLPACM
log exactmatch 4 0.9427194860813705 0.8796203796203796 0.9100775193798449 5798.0 0.9901960784313726 0.9099099099099099 0.9483568075117371 1.0 "exactmatch(x.title,y.title)|1.00" DBLPACM
best jaccard 4 0.9199431549028896 0.97002997002997 0.9443228786773645 15132.0 0.9908256880733946 0.972972972972973 0.9818181818181818 2.0 "jaccard(x.title,y.title)|0.60" DBLPACM
log jaccard,jarowinkler 4 0.9335274138767589 0.961038961038961 0.9470834358848141 14299.0 0.9907834101382489 0.9684684684684685 0.9794988610478361 531.0 "jarowinkler(x.title,y.title)|0.91" DBLPACM
log jaccard,jaro 4 0.9202830188679245 0.9745254745254746 0.9466278505579816 54381.0 0.9908675799086758 0.9774774774774775 0.9841269841269841 317.0 "OR(jaccard(x.title,y.title)|0.60,jaro(x.title,y.title)|0.90)|0" DBLPACM
log jaccard,soundex 4 0.937560975609756 0.9600399600399601 0.9486673247778874 18500.0 0.9907407407407407 0.963963963963964 0.9771689497716894 4.0 "AND(jaccard(x.title,y.title)|0.60,soundex(x.title,y.title)|1.00)|0" DBLPACM
log jaccard,mongeelkan 4 0.9199431549028896 0.97002997002997 0.9443228786773645 17942.0 0.9908256880733946 0.972972972972973 0.9818181818181818 2.0 "jaccard(x.title,y.title)|0.60" DBLPACM
log jaccard,levenstein 4 0.9199431549028896 0.97002997002997 0.9443228786773645 9713.0 0.9908256880733946 0.972972972972973 0.9818181818181818 2.0 "jaccard(x.title,y.title)|0.60" DBLPACM
log jaccard,ratcliffobershelp 4 0.9192108971348051 0.9775224775224776 0.9474703461631566 14545.0 0.9908675799086758 0.9774774774774775 0.9841269841269841 1323.0 "OR(ratcliffobershelp(x.title,y.title)|0.90,jaccard(x.title,y.title)|0.60)|0" DBLPACM
log jaccard,trigrams 4 0.9199431549028896 0.97002997002997 0.9443228786773645 13960.0 0.9908256880733946 0.972972972972973 0.9818181818181818 2.0 "jaccard(x.title,y.title)|0.60" DBLPACM
log jaccard,exactmatch 4 0.9199431549028896 0.97002997002997 0.9443228786773645 9145.0 0.9908256880733946 0.972972972972973 0.9818181818181818 2.0 "jaccard(x.title,y.title)|0.60" DBLPACM
best jaccard,jaro 4 0.9202830188679245 0.9745254745254746 0.9466278505579816 54381.0 0.9908675799086758 0.9774774774774775 0.9841269841269841 317.0 "OR(jaccard(x.title,y.title)|0.60,jaro(x.title,y.title)|0.90)|0" DBLPACM
log jaccard,jaro,jarowinkler 4 0.9338164251207729 0.9655344655344655 0.949410609037328 39156.0 0.9907834101382489 0.9684684684684685 0.9794988610478361 2226.0 "OR(jarowinkler(x.title,y.title)|0.91,jaro(x.title,y.title)|0.90)|0" DBLPACM
log jaccard,jaro,soundex 4 0.9371069182389937 0.9675324675324676 0.952076677316294 43009.0 0.9907834101382489 0.9684684684684685 0.9794988610478361 318.0 "OR(AND(jaccard(x.title,y.title)|0.60,soundex(x.title,y.title)|1.00)|0,jaro(x.title,y.title)|0.90)|0" DBLPACM
log jaccard,jaro,mongeelkan 4 0.9202830188679245 0.9745254745254746 0.9466278505579816 43199.0 0.9908675799086758 0.9774774774774775 0.9841269841269841 317.0 "OR(jaccard(x.title,y.title)|0.60,jaro(x.title,y.title)|0.90)|0" DBLPACM
log jaccard,jaro,levenstein 4 0.9202830188679245 0.9745254745254746 0.9466278505579816 37124.0 0.9908675799086758 0.9774774774774775 0.9841269841269841 317.0 "OR(jaccard(x.title,y.title)|0.60,jaro(x.title,y.title)|0.90)|0" DBLPACM
log jaccard,jaro,ratcliffobershelp 4 0.9347826086956522 0.9665334665334665 0.9503929273084479 41902.0 0.9908256880733946 0.972972972972973 0.9818181818181818 3407.0 "OR(ratcliffobershelp(x.title,y.title)|0.90,jaro(x.title,y.title)|0.90)|0" DBLPACM
log jaccard,jaro,trigrams 4 0.9202830188679245 0.9745254745254746 0.9466278505579816 40286.0 0.9908675799086758 0.9774774774774775 0.9841269841269841 317.0 "OR(jaccard(x.title,y.title)|0.60,jaro(x.title,y.title)|0.90)|0" DBLPACM
log jaccard,jaro,exactmatch 4 0.9202830188679245 0.9745254745254746 0.9466278505579816 37561.0 0.9908675799086758 0.9774774774774775 0.9841269841269841 317.0 "OR(jaccard(x.title,y.title)|0.60,jaro(x.title,y.title)|0.90)|0" DBLPACM
log jaccard 5 0.9078578110383536 0.9695304695304695 0.9376811594202898 15308.0 1.0 0.9774774774774775 0.9886104783599089 2.0 "jaccard(x.title,y.title)|0.60" DBLPACM
log jarowinkler 5 0.919578745811393 0.9595404595404595 0.9391346858958689 15929.0 1.0 0.9819819819819819 0.9909090909090909 545.0 "jarowinkler(x.title,y.title)|0.91" DBLPACM
log jaro 5 0.9251101321585903 0.9440559440559441 0.934487021013597 70486.0 1.0 0.9594594594594594 0.9793103448275862 309.0 "jaro(x.title,y.title)|0.90" DBLPACM
log soundex 5 0.3911049062624651 0.9795204795204795 0.5590079817559862 120069.0 0.9166666666666666 0.990990990990991 0.9523809523809523 1.0 "soundex(x.title,y.title)|1.00" DBLPACM
log mongeelkan 5 0.9 0.9575424575424576 0.9278799612778316 27841.0 0.9953703703703703 0.9684684684684685 0.9817351598173515 1433.0 "mongeelkan(x.title,y.title)|0.90" DBLPACM
log levenstein 5 0.9298892988929889 0.8811188811188811 0.9048473967684022 5982.0 1.0 0.8963963963963963 0.9453681710213776 11.0 "levenstein(x.title,y.title)|1.00" DBLPACM
log ratcliffobershelp 5 0.9206730769230769 0.9565434565434565 0.938265556099951 16449.0 1.0 0.972972972972973 0.9863013698630138 1211.0 "ratcliffobershelp(x.title,y.title)|0.90" DBLPACM
log trigrams 5 0.9199424736337488 0.9585414585414586 0.9388454011741684 15299.0 1.0 0.9684684684684685 0.9839816933638443 2.0 "trigrams(x.title,y.title)|0.80" DBLPACM
log exactmatch 5 0.9298892988929889 0.8811188811188811 0.9048473967684022 5771.0 1.0 0.8963963963963963 0.9453681710213776 1.0 "exactmatch(x.title,y.title)|1.00" DBLPACM
best jarowinkler 5 0.919578745811393 0.9595404595404595 0.9391346858958689 15929.0 1.0 0.9819819819819819 0.9909090909090909 545.0 "jarowinkler(x.title,y.title)|0.91" DBLPACM
log jarowinkler,jaccard 5 0.9051803885291397 0.9775224775224776 0.9399615754082614 14124.0 1.0 0.9864864864864865 0.9931972789115647 1080.0 "OR(jarowinkler(x.title,y.title)|0.91,jaccard(x.title,y.title)|0.60)|0" DBLPACM
log jarowinkler,jaro 5 0.9198855507868383 0.9635364635364635 0.941205171993169 41934.0 1.0 0.9864864864864865 0.9931972789115647 3399.0 "OR(jarowinkler(x.title,y.title)|0.91,jaro(x.title,y.title)|0.90)|0" DBLPACM
log jarowinkler,soundex 5 0.919578745811393 0.9595404595404595 0.9391346858958689 61871.0 1.0 0.9819819819819819 0.9909090909090909 545.0 "jarowinkler(x.title,y.title)|0.91" DBLPACM
log jarowinkler,mongeelkan 5 0.919578745811393 0.9595404595404595 0.9391346858958689 18974.0 1.0 0.9819819819819819 0.9909090909090909 545.0 "jarowinkler(x.title,y.title)|0.91" DBLPACM
log jarowinkler,levenstein 5 0.919578745811393 0.9595404595404595 0.9391346858958689 9974.0 1.0 0.9819819819819819 0.9909090909090909 545.0 "jarowinkler(x.title,y.title)|0.91" DBLPACM
log jarowinkler,ratcliffobershelp 5 0.9169829222011385 0.9655344655344655 0.940632603406326 15029.0 1.0 0.9819819819819819 0.9909090909090909 2938.0 "OR(jarowinkler(x.title,y.title)|0.91,ratcliffobershelp(x.title,y.title)|0.90)|0" DBLPACM
log jarowinkler,trigrams 5 0.9108309990662932 0.9745254745254746 0.9416023166023165 14453.0 1.0 0.9819819819819819 0.9909090909090909 544.0 "OR(jarowinkler(x.title,y.title)|0.91,trigrams(x.title,y.title)|0.80)|0" DBLPACM
log jarowinkler,exactmatch 5 0.919578745811393 0.9595404595404595 0.9391346858958689 9548.0 1.0 0.9819819819819819 0.9909090909090909 545.0 "jarowinkler(x.title,y.title)|0.91" DBLPACM
best jarowinkler,jaccard 5 0.9051803885291397 0.9775224775224776 0.9399615754082614 14124.0 1.0 0.9864864864864865 0.9931972789115647 1080.0 "OR(jarowinkler(x.title,y.title)|0.91,jaccard(x.title,y.title)|0.60)|0" DBLPACM
log jarowinkler,jaccard,jaro 5 0.9198855507868383 0.9635364635364635 0.941205171993169 31744.0 1.0 0.9864864864864865 0.9931972789115647 853.0 "OR(jarowinkler(x.title,y.title)|0.91,jaro(x.title,y.title)|0.90)|0" DBLPACM
log jarowinkler,jaccard,soundex 5 0.9177693761814745 0.97002997002997 0.9431762991743565 47395.0 1.0 0.9864864864864865 0.9931972789115647 4301.0 "OR(AND(OR(jarowinkler(x.title,y.title)|0.91,jaccard(x.title,y.title)|0.60)|0,soundex(x.title,y.title)|1.00)|0,jarowinkler(x.title,y.title)|0.91)|0" DBLPACM
log jarowinkler,jaccard,mongeelkan 5 0.9051803885291397 0.9775224775224776 0.9399615754082614 16824.0 1.0 0.9864864864864865 0.9931972789115647 1080.0 "OR(jarowinkler(x.title,y.title)|0.91,jaccard(x.title,y.title)|0.60)|0" DBLPACM
log jarowinkler,jaccard,levenstein 5 0.9051803885291397 0.9775224775224776 0.9399615754082614 10707.0 1.0 0.9864864864864865 0.9931972789115647 1080.0 "OR(jarowinkler(x.title,y.title)|0.91,jaccard(x.title,y.title)|0.60)|0" DBLPACM
log jarowinkler,jaccard,ratcliffobershelp 5 0.9169829222011385 0.9655344655344655 0.940632603406326 14017.0 1.0 0.9819819819819819 0.9909090909090909 1056.0 "OR(jarowinkler(x.title,y.title)|0.91,ratcliffobershelp(x.title,y.title)|0.90)|0" DBLPACM
log jarowinkler,jaccard,trigrams 5 0.9108309990662932 0.9745254745254746 0.9416023166023165 13832.0 1.0 0.9819819819819819 0.9909090909090909 547.0 "OR(jarowinkler(x.title,y.title)|0.91,trigrams(x.title,y.title)|0.80)|0" DBLPACM
log jarowinkler,jaccard,exactmatch 5 0.9051803885291397 0.9775224775224776 0.9399615754082614 10810.0 1.0 0.9864864864864865 0.9931972789115647 1080.0 "OR(jarowinkler(x.title,y.title)|0.91,jaccard(x.title,y.title)|0.60)|0" DBLPACM
log jaccard 6 0.9100702576112412 0.9705294705294706 0.9393280154701474 15432.0 0.9953703703703703 0.9684684684684685 0.9817351598173515 2.0 "jaccard(x.title,y.title)|0.60" DBLPACM
log jarowinkler 6 0.9224137931034483 0.962037962037962 0.9418092909535453 16135.0 0.9953271028037384 0.9594594594594594 0.9770642201834863 537.0 "jarowinkler(x.title,y.title)|0.91" DBLPACM
log jaro 6 0.9283611383709519 0.945054945054945 0.9366336633663366 71326.0 0.9952830188679245 0.9504504504504504 0.9723502304147464 327.0 "jaro(x.title,y.title)|0.90" DBLPACM
log soundex 6 0.41375661375661377 0.9765234765234765 0.5812397799910808 28600.0 0.8212927756653993 0.972972972972973 0.890721649484536 2.0 "DIFF(soundex(x.title,y.title)|1.00,soundex(x.venue,y.title)|0.75)|0" DBLPACM
log mongeelkan 6 0.9034385303815355 0.958041958041958 0.929939393939394 23738.0 0.981651376146789 0.963963963963964 0.9727272727272728 2304.0 "mongeelkan(x.title,y.title)|0.90" DBLPACM
log levenstein 6 0.9348171701112877 0.8811188811188811 0.9071740807405504 5773.0 0.995 0.8963963963963963 0.9431279620853079 11.0 "levenstein(x.title,y.title)|1.00" DBLPACM
log ratcliffobershelp 6 0.9247467438494935 0.9575424575424576 0.9408588957055215 16427.0 0.9953703703703703 0.9684684684684685 0.9817351598173515 1047.0 "ratcliffobershelp(x.title,y.title)|0.90" DBLPACM
log trigrams 6 0.924001924001924 0.9595404595404595 0.9414359225679981 15719.0 0.9953271028037384 0.9594594594594594 0.9770642201834863 2.0 "trigrams(x.title,y.title)|0.80" DBLPACM
log exactmatch 6 0.9348171701112877 0.8811188811188811 0.9071740807405504 5806.0 0.995 0.8963963963963963 0.9431279620853079 1.0 "exactmatch(x.title,y.title)|1.00" DBLPACM
best jaccard 6 0.9100702576112412 0.9705294705294706 0.9393280154701474 15432.0 0.9953703703703703 0.9684684684684685 0.9817351598173515 2.0 "jaccard(x.title,y.title)|0.60" DBLPACM
log jaccard,jarowinkler 6 0.9224137931034483 0.962037962037962 0.9418092909535453 14500.0 0.9953271028037384 0.9594594594594594 0.9770642201834863 537.0 "jarowinkler(x.title,y.title)|0.91" DBLPACM
log jaccard,jaro 6 0.9104895104895104 0.9755244755244755 0.9418857005063901 42090.0 0.9953703703703703 0.9684684684684685 0.9817351598173515 329.0 "OR(jaccard(x.title,y.title)|0.60,jaro(x.title,y.title)|0.90)|0" DBLPACM
log jaccard,soundex 6 0.9266763145200193 0.9595404595404595 0.9428220858895705 18330.0 0.9953703703703703 0.9684684684684685 0.9817351598173515 4.0 "AND(jaccard(x.title,y.title)|0.60,soundex(x.title,y.title)|1.00)|0" DBLPACM
log jaccard,mongeelkan 6 0.9100702576112412 0.9705294705294706 0.9393280154701474 18307.0 0.9953703703703703 0.9684684684684685 0.9817351598173515 2.0 "jaccard(x.title,y.title)|0.60" DBLPACM
log jaccard,levenstein 6 0.9100702576112412 0.9705294705294706 0.9393280154701474 9255.0 0.9953703703703703 0.9684684684684685 0.9817351598173515 2.0 "jaccard(x.title,y.title)|0.60" DBLPACM
log jaccard,ratcliffobershelp 6 0.9094287041337669 0.978021978021978 0.9424789410348977 14468.0 0.9954128440366973 0.9774774774774775 0.9863636363636363 1055.0 "OR(ratcliffobershelp(x.title,y.title)|0.90,jaccard(x.title,y.title)|0.60)|0" DBLPACM
log jaccard,trigrams 6 0.924001924001924 0.9595404595404595 0.9414359225679981 14567.0 0.9953271028037384 0.9594594594594594 0.9770642201834863 2.0 "trigrams(x.title,y.title)|0.80" DBLPACM
log jaccard,exactmatch 6 0.9100702576112412 0.9705294705294706 0.9393280154701474 9245.0 0.9953703703703703 0.9684684684684685 0.9817351598173515 2.0 "jaccard(x.title,y.title)|0.60" DBLPACM
best jaccard,ratcliffobershelp 6 0.9094287041337669 0.978021978021978 0.9424789410348977 14468.0 0.9954128440366973 0.9774774774774775 0.9863636363636363 1055.0 "OR(ratcliffobershelp(x.title,y.title)|0.90,jaccard(x.title,y.title)|0.60)|0" DBLPACM
log jaccard,ratcliffobershelp,jarowinkler 6 0.9197149643705463 0.967032967032967 0.9427806184562941 14586.0 0.9953917050691244 0.972972972972973 0.9840546697038726 1038.0 "OR(jarowinkler(x.title,y.title)|0.91,ratcliffobershelp(x.title,y.title)|0.90)|0" DBLPACM
log jaccard,ratcliffobershelp,jaro 6 0.9249521988527725 0.9665334665334665 0.9452857840742551 32625.0 0.9954128440366973 0.9774774774774775 0.9863636363636363 839.0 "OR(ratcliffobershelp(x.title,y.title)|0.90,jaro(x.title,y.title)|0.90)|0" DBLPACM
log jaccard,ratcliffobershelp,soundex 6 0.9227854097584084 0.973026973026973 0.9472404570872843 17922.0 0.9954128440366973 0.9774774774774775 0.9863636363636363 1305.0 "OR(AND(OR(ratcliffobershelp(x.title,y.title)|0.90,jaccard(x.title,y.title)|0.60)|0,soundex(x.title,y.title)|1.00)|0,ratcliffobershelp(x.title,y.title)|0.90)|0" DBLPACM
log jaccard,ratcliffobershelp,mongeelkan 6 0.9094287041337669 0.978021978021978 0.9424789410348977 16702.0 0.9954128440366973 0.9774774774774775 0.9863636363636363 1055.0 "OR(ratcliffobershelp(x.title,y.title)|0.90,jaccard(x.title,y.title)|0.60)|0" DBLPACM
log jaccard,ratcliffobershelp,levenstein 6 0.9094287041337669 0.978021978021978 0.9424789410348977 11358.0 0.9954128440366973 0.9774774774774775 0.9863636363636363 1055.0 "OR(ratcliffobershelp(x.title,y.title)|0.90,jaccard(x.title,y.title)|0.60)|0" DBLPACM
log jaccard,ratcliffobershelp,trigrams 6 0.9163533834586466 0.974025974025974 0.9443099273607748 14299.0 0.9954128440366973 0.9774774774774775 0.9863636363636363 517.0 "OR(trigrams(x.title,y.title)|0.80,ratcliffobershelp(x.title,y.title)|0.90)|0" DBLPACM
log jaccard,ratcliffobershelp,exactmatch 6 0.9094287041337669 0.978021978021978 0.9424789410348977 10854.0 0.9954128440366973 0.9774774774774775 0.9863636363636363 1055.0 "OR(ratcliffobershelp(x.title,y.title)|0.90,jaccard(x.title,y.title)|0.60)|0" DBLPACM
log jaccard 7 0.90625 0.9705294705294706 0.9372889532079113 15010.0 0.9907834101382489 0.9684684684684685 0.9794988610478361 2.0 "jaccard(x.title,y.title)|0.60" DBLPACM
log jarowinkler 7 0.9224880382775119 0.9630369630369631 0.9423264907135873 15734.0 0.9906103286384976 0.9504504504504504 0.9701149425287356 552.0 "jarowinkler(x.title,y.title)|0.91" DBLPACM
log jaro 7 0.9276283618581908 0.9475524475524476 0.9374845564615766 69010.0 0.9903846153846154 0.9279279279279279 0.9581395348837211 315.0 "jaro(x.title,y.title)|0.90" DBLPACM
log soundex 7 0.39821210889882164 0.9790209790209791 0.5661467359907568 13412.0 0.8978723404255319 0.9504504504504504 0.9234135667396061 2.0 "DIFF(soundex(x.title,y.title)|1.00,soundex(x.venue,y.title)|0.75)|0" DBLPACM
log mongeelkan 7 0.8980355472404116 0.9590409590409591 0.9275362318840579 23344.0 0.9814814814814815 0.954954954954955 0.9680365296803655 1506.0 "mongeelkan(x.title,y.title)|0.90" DBLPACM
log levenstein 7 0.9312696747114375 0.8866133866133866 0.9083930399181167 5771.0 0.9894736842105263 0.8468468468468469 0.9126213592233009 11.0 "levenstein(x.title,y.title)|1.00" DBLPACM
log ratcliffobershelp 7 0.9231138875540605 0.9595404595404595 0.9409747734508939 16008.0 0.9905660377358491 0.9459459459459459 0.967741935483871 515.0 "ratcliffobershelp(x.title,y.title)|0.90" DBLPACM
log trigrams 7 0.9199808337326306 0.9590409590409591 0.9391049156272928 15210.0 0.9907407407407407 0.963963963963964 0.9771689497716894 2.0 "trigrams(x.title,y.title)|0.80" DBLPACM
log exactmatch 7 0.9312696747114375 0.8866133866133866 0.9083930399181167 5769.0 0.9894736842105263 0.8468468468468469 0.9126213592233009 1.0 "exactmatch(x.title,y.title)|1.00" DBLPACM
best jaccard 7 0.90625 0.9705294705294706 0.9372889532079113 15010.0 0.9907834101382489 0.9684684684684685 0.9794988610478361 2.0 "jaccard(x.title,y.title)|0.60" DBLPACM
log jaccard,jarowinkler 7 0.9224880382775119 0.9630369630369631 0.9423264907135873 14254.0 0.9906103286384976 0.9504504504504504 0.9701149425287356 538.0 "jarowinkler(x.title,y.title)|0.91" DBLPACM
log jaccard,jaro 7 0.9066852367688022 0.9755244755244755 0.9398460057747834 42053.0 0.9907834101382489 0.9684684684684685 0.9794988610478361 317.0 "OR(jaro(x.title,y.title)|0.90,jaccard(x.title,y.title)|0.60)|0" DBLPACM
log jaccard,soundex 7 0.9242932438907523 0.9635364635364635 0.9435069699192956 10604.0 0.9904306220095693 0.9324324324324325 0.9605568445475637 3.0 "AND(jaccard(x.title,y.title)|0.60,soundex(x.title,y.title)|1.00)|0" DBLPACM
log jaccard,mongeelkan 7 0.90625 0.9705294705294706 0.9372889532079113 18453.0 0.9907834101382489 0.9684684684684685 0.9794988610478361 2.0 "jaccard(x.title,y.title)|0.60" DBLPACM
log jaccard,levenstein 7 0.90625 0.9705294705294706 0.9372889532079113 9493.0 0.9907834101382489 0.9684684684684685 0.9794988610478361 2.0 "jaccard(x.title,y.title)|0.60" DBLPACM
log jaccard,ratcliffobershelp 7 0.9231138875540605 0.9595404595404595 0.9409747734508939 13793.0 0.9905660377358491 0.9459459459459459 0.967741935483871 1013.0 "ratcliffobershelp(x.title,y.title)|0.90" DBLPACM
log jaccard,trigrams 7 0.9199808337326306 0.9590409590409591 0.9391049156272928 13830.0 0.9907407407407407 0.963963963963964 0.9771689497716894 2.0 "trigrams(x.title,y.title)|0.80" DBLPACM
log jaccard,exactmatch 7 0.90625 0.9705294705294706 0.9372889532079113 9085.0 0.9907834101382489 0.9684684684684685 0.9794988610478361 2.0 "jaccard(x.title,y.title)|0.60" DBLPACM
log jaccard 8 0.9129411764705883 0.9690309690309691 0.9401502301914224 15236.0 0.990909090909091 0.9819819819819819 0.9864253393665158 2.0 "jaccard(x.title,y.title)|0.60" DBLPACM
log jarowinkler 8 0.924963924963925 0.9605394605394605 0.9424160744915462 15978.0 0.9908675799086758 0.9774774774774775 0.9841269841269841 539.0 "jarowinkler(x.title,y.title)|0.91" DBLPACM
log jaro 8 0.9282907662082515 0.9440559440559441 0.9361069836552749 71124.0 0.9906976744186047 0.9594594594594594 0.9748283752860413 298.0 "jaro(x.title,y.title)|0.90" DBLPACM
log soundex 8 0.39196787148594375 0.975024975024975 0.5591521054139215 39929.0 0.9201680672268907 0.9864864864864865 0.9521739130434783 2.0 "DIFF(soundex(x.title,y.title)|1.00,soundex(x.venue,y.title)|0.75)|0" DBLPACM
log mongeelkan 8 0.9058656575212867 0.9565434565434565 0.9305150631681244 24559.0 0.9819004524886877 0.9774774774774775 0.9796839729119639 2756.0 "mongeelkan(x.title,y.title)|0.90" DBLPACM
log levenstein 8 0.9333333333333333 0.8811188811188811 0.906474820143885 5770.0 0.9900497512437811 0.8963963963963963 0.9408983451536643 12.0 "levenstein(x.title,y.title)|1.00" DBLPACM
log ratcliffobershelp 8 0.9274310595065312 0.9575424575424576 0.9422462521504055 16681.0 0.9907834101382489 0.9684684684684685 0.9794988610478361 2491.0 "ratcliffobershelp(x.title,y.title)|0.90" DBLPACM
log trigrams 8 0.9256756756756757 0.958041958041958 0.9415807560137457 15522.0 0.9908256880733946 0.972972972972973 0.9818181818181818 3.0 "trigrams(x.title,y.title)|0.80" DBLPACM
log exactmatch 8 0.9333333333333333 0.8811188811188811 0.906474820143885 5808.0 0.9900497512437811 0.8963963963963963 0.9408983451536643 1.0 "exactmatch(x.title,y.title)|1.00" DBLPACM
best jaccard 8 0.9129411764705883 0.9690309690309691 0.9401502301914224 15236.0 0.990909090909091 0.9819819819819819 0.9864253393665158 2.0 "jaccard(x.title,y.title)|0.60" DBLPACM
log jaccard,jarowinkler 8 0.9110800744878957 0.9775224775224776 0.9431325301204819 14340.0 0.990990990990991 0.990990990990991 0.990990990990991 1104.0 "OR(jarowinkler(x.title,y.title)|0.91,jaccard(x.title,y.title)|0.60)|0" DBLPACM
log jaccard,jaro 8 0.9133083411433927 0.9735264735264735 0.9424564796905223 42555.0 0.9909502262443439 0.9864864864864865 0.9887133182844244 300.0 "OR(jaccard(x.title,y.title)|0.60,jaro(x.title,y.title)|0.90)|0" DBLPACM
log jaccard,soundex 8 0.9266409266409267 0.9590409590409591 0.9425625920471282 24333.0 0.9908256880733946 0.972972972972973 0.9818181818181818 3.0 "AND(jaccard(x.title,y.title)|0.60,soundex(x.title,y.title)|1.00)|0" DBLPACM
log jaccard,mongeelkan 8 0.9129411764705883 0.9690309690309691 0.9401502301914224 18434.0 0.990909090909091 0.9819819819819819 0.9864253393665158 2.0 "jaccard(x.title,y.title)|0.60" DBLPACM
log jaccard,levenstein 8 0.9129411764705883 0.9690309690309691 0.9401502301914224 9193.0 0.990909090909091 0.9819819819819819 0.9864253393665158 2.0 "jaccard(x.title,y.title)|0.60" DBLPACM
log jaccard,ratcliffobershelp 8 0.9126984126984127 0.9765234765234765 0.9435328185328186 15071.0 0.990990990990991 0.990990990990991 0.990990990990991 517.0 "OR(ratcliffobershelp(x.title,y.title)|0.90,jaccard(x.title,y.title)|0.60)|0" DBLPACM
log jaccard,trigrams 8 0.9256756756756757 0.958041958041958 0.9415807560137457 13745.0 0.9908256880733946 0.972972972972973 0.9818181818181818 2.0 "trigrams(x.title,y.title)|0.80" DBLPACM
log jaccard,exactmatch 8 0.9129411764705883 0.9690309690309691 0.9401502301914224 9389.0 0.990909090909091 0.9819819819819819 0.9864253393665158 2.0 "jaccard(x.title,y.title)|0.60" DBLPACM
best jaccard,jarowinkler 8 0.9110800744878957 0.9775224775224776 0.9431325301204819 14340.0 0.990990990990991 0.990990990990991 0.990990990990991 1104.0 "OR(jarowinkler(x.title,y.title)|0.91,jaccard(x.title,y.title)|0.60)|0" DBLPACM
log jaccard,jarowinkler,jaro 8 0.9252515572592238 0.9645354645354646 0.9444852042064076 34693.0 0.990909090909091 0.9819819819819819 0.9864253393665158 855.0 "OR(jarowinkler(x.title,y.title)|0.91,jaro(x.title,y.title)|0.90)|0" DBLPACM
log jaccard,jarowinkler,soundex 8 0.9247977153736316 0.9705294705294706 0.9471118693638801 20645.0 0.9909502262443439 0.9864864864864865 0.9887133182844244 1063.0 "OR(AND(OR(jarowinkler(x.title,y.title)|0.91,jaccard(x.title,y.title)|0.60)|0,soundex(x.title,y.title)|1.00)|0,jarowinkler(x.title,y.title)|0.91)|0" DBLPACM
log jaccard,jarowinkler,mongeelkan 8 0.9110800744878957 0.9775224775224776 0.9431325301204819 16491.0 0.990990990990991 0.990990990990991 0.990990990990991 1104.0 "OR(jarowinkler(x.title,y.title)|0.91,jaccard(x.title,y.title)|0.60)|0" DBLPACM
log jaccard,jarowinkler,levenstein 8 0.9110800744878957 0.9775224775224776 0.9431325301204819 10909.0 0.990990990990991 0.990990990990991 0.990990990990991 1104.0 "OR(jarowinkler(x.title,y.title)|0.91,jaccard(x.title,y.title)|0.60)|0" DBLPACM
log jaccard,jarowinkler,ratcliffobershelp 8 0.9236276849642004 0.9665334665334665 0.9445936050768855 14518.0 0.9908675799086758 0.9774774774774775 0.9841269841269841 1044.0 "OR(jarowinkler(x.title,y.title)|0.91,ratcliffobershelp(x.title,y.title)|0.90)|0" DBLPACM
log jaccard,jarowinkler,trigrams 8 0.9163533834586466 0.974025974025974 0.9443099273607748 13964.0 0.990990990990991 0.990990990990991 0.990990990990991 532.0 "OR(jarowinkler(x.title,y.title)|0.91,trigrams(x.title,y.title)|0.80)|0" DBLPACM
log jaccard,jarowinkler,exactmatch 8 0.9110800744878957 0.9775224775224776 0.9431325301204819 10846.0 0.990990990990991 0.990990990990991 0.990990990990991 1104.0 "OR(jarowinkler(x.title,y.title)|0.91,jaccard(x.title,y.title)|0.60)|0" DBLPACM
log jaccard 9 0.9116541353383458 0.9690309690309691 0.9394673123486683 15009.0 0.9732142857142857 0.9819819819819819 0.9775784753363228 2.0 "jaccard(x.title,y.title)|0.60" DBLPACM
log jarowinkler 9 0.9236311239193083 0.9605394605394605 0.9417238001958864 15641.0 0.9908675799086758 0.9774774774774775 0.9841269841269841 548.0 "jarowinkler(x.title,y.title)|0.91" DBLPACM
log jaro 9 0.9292035398230089 0.9440559440559441 0.9365708622398414 69581.0 0.9906976744186047 0.9594594594594594 0.9748283752860413 350.0 "jaro(x.title,y.title)|0.90" DBLPACM
log soundex 9 0.411938409618224 0.9755244755244755 0.579267388402788 81124.0 0.8582677165354331 0.9819819819819819 0.9159663865546219 3.0 "DIFF(soundex(x.title,y.title)|1.00,soundex(x.venue,y.title)|0.75)|0" DBLPACM
log mongeelkan 9 0.8995776630689817 0.9575424575424576 0.9276554560851682 26506.0 0.9817351598173516 0.9684684684684685 0.9750566893424036 1441.0 "mongeelkan(x.title,y.title)|0.90" DBLPACM
log levenstein 9 0.9333333333333333 0.8811188811188811 0.906474820143885 5960.0 0.9900497512437811 0.8963963963963963 0.9408983451536643 11.0 "levenstein(x.title,y.title)|1.00" DBLPACM
log ratcliffobershelp 9 0.9251569290197972 0.957042957042957 0.9408298551436288 16025.0 0.9863013698630136 0.972972972972973 0.979591836734694 1028.0 "ratcliffobershelp(x.title,y.title)|0.90" DBLPACM
log trigrams 9 0.9252651880424301 0.9585414585414586 0.9416094210009814 15240.0 0.9728506787330317 0.9684684684684685 0.9706546275395034 2.0 "trigrams(x.title,y.title)|0.80" DBLPACM
log exactmatch 9 0.9333333333333333 0.8811188811188811 0.906474820143885 5812.0 0.9900497512437811 0.8963963963963963 0.9408983451536643 1.0 "exactmatch(x.title,y.title)|1.00" DBLPACM
best jarowinkler 9 0.9236311239193083 0.9605394605394605 0.9417238001958864 15641.0 0.9908675799086758 0.9774774774774775 0.9841269841269841 548.0 "jarowinkler(x.title,y.title)|0.91" DBLPACM
log jarowinkler,jaccard 9 0.9090064995357474 0.978021978021978 0.9422521655437921 14012.0 0.9733333333333334 0.9864864864864865 0.9798657718120806 1051.0 "OR(jarowinkler(x.title,y.title)|0.91,jaccard(x.title,y.title)|0.60)|0" DBLPACM
log jarowinkler,jaro 9 0.9238870272857826 0.964035964035964 0.943534588120264 42880.0 0.990909090909091 0.9819819819819819 0.9864253393665158 1784.0 "OR(jarowinkler(x.title,y.title)|0.91,jaro(x.title,y.title)|0.90)|0" DBLPACM
log jarowinkler,soundex 9 0.9236311239193083 0.9605394605394605 0.9417238001958864 45199.0 0.9908675799086758 0.9774774774774775 0.9841269841269841 548.0 "jarowinkler(x.title,y.title)|0.91" DBLPACM
log jarowinkler,mongeelkan 9 0.9236311239193083 0.9605394605394605 0.9417238001958864 18767.0 0.9908675799086758 0.9774774774774775 0.9841269841269841 548.0 "jarowinkler(x.title,y.title)|0.91" DBLPACM
log jarowinkler,levenstein 9 0.9236311239193083 0.9605394605394605 0.9417238001958864 9858.0 0.9908675799086758 0.9774774774774775 0.9841269841269841 548.0 "jarowinkler(x.title,y.title)|0.91" DBLPACM
log jarowinkler,ratcliffobershelp 9 0.9214285714285714 0.9665334665334665 0.9434422233057045 14206.0 0.9863636363636363 0.9774774774774775 0.9819004524886877 1594.0 "OR(jarowinkler(x.title,y.title)|0.91,ratcliffobershelp(x.title,y.title)|0.90)|0" DBLPACM
log jarowinkler,trigrams 9 0.9168233082706767 0.9745254745254746 0.9447941888619855 14419.0 0.9733333333333334 0.9864864864864865 0.9798657718120806 548.0 "OR(jarowinkler(x.title,y.title)|0.91,trigrams(x.title,y.title)|0.80)|0" DBLPACM
log jarowinkler,exactmatch 9 0.9236311239193083 0.9605394605394605 0.9417238001958864 9418.0 0.9908675799086758 0.9774774774774775 0.9841269841269841 548.0 "jarowinkler(x.title,y.title)|0.91" DBLPACM
best jarowinkler,jaro 9 0.9238870272857826 0.964035964035964 0.943534588120264 42880.0 0.990909090909091 0.9819819819819819 0.9864253393665158 1784.0 "OR(jarowinkler(x.title,y.title)|0.91,jaro(x.title,y.title)|0.90)|0" DBLPACM
log jarowinkler,jaro,jaccard 9 0.9238870272857826 0.964035964035964 0.943534588120264 32175.0 0.990909090909091 0.9819819819819819 0.9864253393665158 1784.0 "OR(jarowinkler(x.title,y.title)|0.91,jaro(x.title,y.title)|0.90)|0" DBLPACM
log jarowinkler,jaro,soundex 9 0.9238870272857826 0.964035964035964 0.943534588120264 54431.0 0.990909090909091 0.9819819819819819 0.9864253393665158 1784.0 "OR(jarowinkler(x.title,y.title)|0.91,jaro(x.title,y.title)|0.90)|0" DBLPACM
log jarowinkler,jaro,mongeelkan 9 0.9238870272857826 0.964035964035964 0.943534588120264 36217.0 0.990909090909091 0.9819819819819819 0.9864253393665158 1784.0 "OR(jarowinkler(x.title,y.title)|0.91,jaro(x.title,y.title)|0.90)|0" DBLPACM
log jarowinkler,jaro,levenstein 9 0.9238870272857826 0.964035964035964 0.943534588120264 29193.0 0.990909090909091 0.9819819819819819 0.9864253393665158 1784.0 "OR(jarowinkler(x.title,y.title)|0.91,jaro(x.title,y.title)|0.90)|0" DBLPACM
log jarowinkler,jaro,ratcliffobershelp 9 0.9216896060749882 0.97002997002997 0.9452421513750304 33591.0 0.9864253393665159 0.9819819819819819 0.9841986455981941 1734.0 "OR(OR(jarowinkler(x.title,y.title)|0.91,jaro(x.title,y.title)|0.90)|0,ratcliffobershelp(x.title,y.title)|0.90)|0" DBLPACM
log jarowinkler,jaro,trigrams 9 0.9168623767026773 0.975024975024975 0.9450496247881869 32764.0 0.9733333333333334 0.9864864864864865 0.9798657718120806 890.0 "OR(OR(jarowinkler(x.title,y.title)|0.91,trigrams(x.title,y.title)|0.80)|0,jaro(x.title,y.title)|0.90)|0" DBLPACM
log jarowinkler,jaro,exactmatch 9 0.9238870272857826 0.964035964035964 0.943534588120264 30336.0 0.990909090909091 0.9819819819819819 0.9864253393665158 1784.0 "OR(jarowinkler(x.title,y.title)|0.91,jaro(x.title,y.title)|0.90)|0" DBLPACM
log jaccard 0 0.9791231732776617 0.9842602308499475 0.9816849816849816 3181.0 1.0 0.9902912621359223 0.9951219512195122 4.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jarowinkler 0 0.9810326659641728 0.9769150052465897 0.9789695057833859 2785.0 1.0 0.9902912621359223 0.9951219512195122 508.0 "jarowinkler(x.title,y.title)|0.97" DBPLINKEDMDB
log jaro 0 0.9709241952232607 0.9811122770199371 0.975991649269311 4456.0 1.0 0.9902912621359223 0.9951219512195122 13.0 "jaro(x.title,y.title)|0.90" DBPLINKEDMDB
log soundex 0 0.9764044943820225 0.9118572927597062 0.9430276722734672 5738.0 1.0 0.9514563106796117 0.9751243781094527 2.0 "AND(soundex(x.title,y.title)|1.00,soundex(x.director,y.director)|1.00)|0" DBPLINKEDMDB
log mongeelkan 0 0.9619341563786008 0.9811122770199371 0.9714285714285714 2798.0 1.0 0.9902912621359223 0.9951219512195122 138.0 "mongeelkan(x.title,y.title)|0.90" DBPLINKEDMDB
log levenstein 0 0.9808714133900106 0.968520461699895 0.9746568109820486 2697.0 1.0 0.9805825242718447 0.9901960784313726 4.0 "levenstein(x.title,y.title)|1.00" DBPLINKEDMDB
log ratcliffobershelp 0 0.9790356394129979 0.9800629590766002 0.9795490298898795 2690.0 1.0 0.9902912621359223 0.9951219512195122 513.0 "ratcliffobershelp(x.title,y.title)|0.90" DBPLINKEDMDB
log trigrams 0 0.9711340206185567 0.9884575026232949 0.9797191887675507 2743.0 1.0 0.9902912621359223 0.9951219512195122 1.0 "trigrams(x.title,y.title)|0.80" DBPLINKEDMDB
log exactmatch 0 0.9808714133900106 0.968520461699895 0.9746568109820486 2784.0 1.0 0.9805825242718447 0.9901960784313726 1.0 "exactmatch(x.title,y.title)|1.00" DBPLINKEDMDB
best jaccard 0 0.9791231732776617 0.9842602308499475 0.9816849816849816 3181.0 1.0 0.9902912621359223 0.9951219512195122 4.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,jarowinkler 0 0.9791449426485923 0.9853095487932844 0.9822175732217573 5133.0 1.0 0.9902912621359223 0.9951219512195122 506.0 "OR(jaccard(x.title,y.title)|0.70,jarowinkler(x.title,y.title)|0.97)|0" DBPLINKEDMDB
log jaccard,jaro 0 0.9791231732776617 0.9842602308499475 0.9816849816849816 6829.0 1.0 0.9902912621359223 0.9951219512195122 4.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,soundex 0 0.9791231732776617 0.9842602308499475 0.9816849816849816 7669.0 1.0 0.9902912621359223 0.9951219512195122 4.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,mongeelkan 0 0.9791231732776617 0.9842602308499475 0.9816849816849816 5182.0 1.0 0.9902912621359223 0.9951219512195122 4.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,levenstein 0 0.9791231732776617 0.9842602308499475 0.9816849816849816 5107.0 1.0 0.9902912621359223 0.9951219512195122 4.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,ratcliffobershelp 0 0.9791449426485923 0.9853095487932844 0.9822175732217573 5132.0 1.0 0.9902912621359223 0.9951219512195122 506.0 "OR(jaccard(x.title,y.title)|0.70,ratcliffobershelp(x.title,y.title)|0.90)|0" DBPLINKEDMDB
log jaccard,trigrams 0 0.9791231732776617 0.9842602308499475 0.9816849816849816 5139.0 1.0 0.9902912621359223 0.9951219512195122 4.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,exactmatch 0 0.9791231732776617 0.9842602308499475 0.9816849816849816 5157.0 1.0 0.9902912621359223 0.9951219512195122 4.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard 1 0.9821802935010482 0.9873551106427819 0.9847609038360484 2750.0 1.0 0.9626168224299065 0.9809523809523809 0.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jarowinkler 1 0.9841101694915254 0.9789251844046365 0.9815108293713684 2720.0 1.0 0.9719626168224299 0.985781990521327 504.0 "jarowinkler(x.title,y.title)|0.97" DBPLINKEDMDB
log jaro 1 0.9739039665970772 0.9831401475237092 0.9785002621919245 4412.0 1.0 0.9719626168224299 0.985781990521327 10.0 "jaro(x.title,y.title)|0.90" DBPLINKEDMDB
log soundex 1 0.9742729306487695 0.9178082191780822 0.9451980466630494 5773.0 1.0 0.897196261682243 0.9458128078817734 1.0 "AND(soundex(x.title,y.title)|1.00,soundex(x.director,y.director)|1.00)|0" DBPLINKEDMDB
log mongeelkan 1 0.9649484536082474 0.9863013698630136 0.9755080771235017 2802.0 1.0 0.9439252336448598 0.9711538461538461 84.0 "mongeelkan(x.title,y.title)|0.90" DBPLINKEDMDB
log levenstein 1 0.9840085287846482 0.9726027397260274 0.9782723900370959 2714.0 1.0 0.9439252336448598 0.9711538461538461 2.0 "levenstein(x.title,y.title)|1.00" DBPLINKEDMDB
log ratcliffobershelp 1 0.982086406743941 0.982086406743941 0.982086406743941 2738.0 1.0 0.9719626168224299 0.985781990521327 506.0 "ratcliffobershelp(x.title,y.title)|0.90" DBPLINKEDMDB
log trigrams 1 0.9841269841269841 0.9799789251844047 0.9820485744456177 2746.0 1.0 0.9532710280373832 0.9760765550239235 1.0 "trigrams(x.title,y.title)|1.00" DBPLINKEDMDB
log exactmatch 1 0.9840085287846482 0.9726027397260274 0.9782723900370959 2752.0 1.0 0.9439252336448598 0.9711538461538461 1.0 "exactmatch(x.title,y.title)|1.00" DBPLINKEDMDB
best jarowinkler 1 0.9841101694915254 0.9789251844046365 0.9815108293713684 2720.0 1.0 0.9719626168224299 0.985781990521327 504.0 "jarowinkler(x.title,y.title)|0.97" DBPLINKEDMDB
log jarowinkler,jaccard 1 0.9821802935010482 0.9873551106427819 0.9847609038360484 5178.0 1.0 0.9626168224299065 0.9809523809523809 0.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jarowinkler,jaro 1 0.9841101694915254 0.9789251844046365 0.9815108293713684 6684.0 1.0 0.9719626168224299 0.985781990521327 504.0 "jarowinkler(x.title,y.title)|0.97" DBPLINKEDMDB
log jarowinkler,soundex 1 0.9841101694915254 0.9789251844046365 0.9815108293713684 7769.0 1.0 0.9719626168224299 0.985781990521327 504.0 "jarowinkler(x.title,y.title)|0.97" DBPLINKEDMDB
log jarowinkler,mongeelkan 1 0.9841101694915254 0.9789251844046365 0.9815108293713684 5635.0 1.0 0.9719626168224299 0.985781990521327 504.0 "jarowinkler(x.title,y.title)|0.97" DBPLINKEDMDB
log jarowinkler,levenstein 1 0.9841101694915254 0.9789251844046365 0.9815108293713684 5264.0 1.0 0.9719626168224299 0.985781990521327 504.0 "jarowinkler(x.title,y.title)|0.97" DBPLINKEDMDB
log jarowinkler,ratcliffobershelp 1 0.982086406743941 0.982086406743941 0.982086406743941 5212.0 1.0 0.9719626168224299 0.985781990521327 504.0 "ratcliffobershelp(x.title,y.title)|0.90" DBPLINKEDMDB
log jarowinkler,trigrams 1 0.9841269841269841 0.9799789251844047 0.9820485744456177 5249.0 1.0 0.9532710280373832 0.9760765550239235 0.0 "trigrams(x.title,y.title)|1.00" DBPLINKEDMDB
log jarowinkler,exactmatch 1 0.9841101694915254 0.9789251844046365 0.9815108293713684 5232.0 1.0 0.9719626168224299 0.985781990521327 504.0 "jarowinkler(x.title,y.title)|0.97" DBPLINKEDMDB
log jaccard 2 0.9771071800208116 0.9863445378151261 0.98170412963931 2723.0 1.0 0.9711538461538461 0.9853658536585366 0.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jarowinkler 2 0.9790136411332634 0.9800420168067226 0.9795275590551181 2718.0 1.0 0.9615384615384616 0.9803921568627451 504.0 "jarowinkler(x.title,y.title)|0.97" DBPLINKEDMDB
log jaro 2 0.9689119170984456 0.9821428571428571 0.9754825247782994 4432.0 1.0 0.9807692307692307 0.9902912621359222 13.0 "jaro(x.title,y.title)|0.90" DBPLINKEDMDB
log soundex 2 0.9786036036036037 0.9128151260504201 0.9445652173913044 5750.0 0.98 0.9423076923076923 0.9607843137254902 1.0 "AND(soundex(x.title,y.title)|1.00,soundex(x.director,y.director)|1.00)|0" DBPLINKEDMDB
log mongeelkan 2 0.96 0.9831932773109243 0.9714582252205499 2778.0 1.0 0.9711538461538461 0.9853658536585366 91.0 "mongeelkan(x.title,y.title)|0.90" DBPLINKEDMDB
log levenstein 2 0.9788135593220338 0.9705882352941176 0.9746835443037973 2714.0 1.0 0.9615384615384616 0.9803921568627451 1.0 "levenstein(x.title,y.title)|1.00" DBPLINKEDMDB
log ratcliffobershelp 2 0.9770114942528736 0.9821428571428571 0.9795704557359874 2712.0 1.0 0.9711538461538461 0.9853658536585366 504.0 "ratcliffobershelp(x.title,y.title)|0.90" DBPLINKEDMDB
log trigrams 2 0.9789695057833859 0.9779411764705882 0.9784550709406201 2729.0 1.0 0.9711538461538461 0.9853658536585366 0.0 "trigrams(x.title,y.title)|1.00" DBPLINKEDMDB
log exactmatch 2 0.9788135593220338 0.9705882352941176 0.9746835443037973 2750.0 1.0 0.9615384615384616 0.9803921568627451 1.0 "exactmatch(x.title,y.title)|1.00" DBPLINKEDMDB
best jaro 2 0.9689119170984456 0.9821428571428571 0.9754825247782994 4432.0 1.0 0.9807692307692307 0.9902912621359222 13.0 "jaro(x.title,y.title)|0.90" DBPLINKEDMDB
log jaro,jaccard 2 0.9771071800208116 0.9863445378151261 0.98170412963931 6774.0 1.0 0.9711538461538461 0.9853658536585366 1.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaro,jarowinkler 2 0.9790136411332634 0.9800420168067226 0.9795275590551181 6647.0 1.0 0.9615384615384616 0.9803921568627451 504.0 "jarowinkler(x.title,y.title)|0.97" DBPLINKEDMDB
log jaro,soundex 2 0.9709241952232607 0.9821428571428571 0.9765013054830287 9103.0 1.0 0.9711538461538461 0.9853658536585366 14.0 "AND(jaro(x.title,y.title)|0.90,soundex(x.title,y.title)|1.00)|0" DBPLINKEDMDB
log jaro,mongeelkan 2 0.9778947368421053 0.9758403361344538 0.9768664563617244 6658.0 1.0 0.9615384615384616 0.9803921568627451 104.0 "AND(jaro(x.title,y.title)|0.90,mongeelkan(x.title,y.title)|0.90)|0" DBPLINKEDMDB
log jaro,levenstein 2 0.9689119170984456 0.9821428571428571 0.9754825247782994 6800.0 1.0 0.9807692307692307 0.9902912621359222 13.0 "jaro(x.title,y.title)|0.90" DBPLINKEDMDB
log jaro,ratcliffobershelp 2 0.9770114942528736 0.9821428571428571 0.9795704557359874 6642.0 1.0 0.9711538461538461 0.9853658536585366 505.0 "ratcliffobershelp(x.title,y.title)|0.90" DBPLINKEDMDB
log jaro,trigrams 2 0.9789695057833859 0.9779411764705882 0.9784550709406201 6688.0 1.0 0.9711538461538461 0.9853658536585366 0.0 "trigrams(x.title,y.title)|1.00" DBPLINKEDMDB
log jaro,exactmatch 2 0.9689119170984456 0.9821428571428571 0.9754825247782994 6704.0 1.0 0.9807692307692307 0.9902912621359222 13.0 "jaro(x.title,y.title)|0.90" DBPLINKEDMDB
log jaccard 3 0.9811912225705329 0.9832460732984293 0.9822175732217573 2745.0 1.0 1.0 1.0 1.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jarowinkler 3 0.9770594369134515 0.981151832460733 0.9791013584117032 2728.0 1.0 0.9900990099009901 0.9950248756218906 508.0 "jarowinkler(x.title,y.title)|0.94" DBPLINKEDMDB
log jaro 3 0.9750260145681582 0.981151832460733 0.9780793319415448 6054.0 1.0 0.9900990099009901 0.9950248756218906 9.0 "jaro(x.title,y.title)|0.90" DBPLINKEDMDB
log soundex 3 0.9799107142857143 0.9193717277486911 0.9486763911399244 8956.0 1.0 0.8811881188118812 0.9368421052631579 1.0 "AND(soundex(x.title,y.title)|1.00,soundex(x.director,y.director)|1.00)|0" DBPLINKEDMDB
log mongeelkan 3 0.9629629629629629 0.9801047120418848 0.97145822522055 2762.0 0.9901960784313726 1.0 0.9950738916256158 85.0 "mongeelkan(x.title,y.title)|0.90" DBPLINKEDMDB
log levenstein 3 0.9808917197452229 0.9675392670157068 0.974169741697417 2703.0 1.0 0.9900990099009901 0.9950248756218906 2.0 "levenstein(x.title,y.title)|1.00" DBPLINKEDMDB
log ratcliffobershelp 3 0.9811320754716981 0.9801047120418848 0.9806181246726036 2695.0 1.0 0.9900990099009901 0.9950248756218906 505.0 "ratcliffobershelp(x.title,y.title)|0.90" DBPLINKEDMDB
log trigrams 3 0.9810725552050473 0.9769633507853404 0.9790136411332634 2713.0 1.0 0.9900990099009901 0.9950248756218906 1.0 "trigrams(x.title,y.title)|0.90" DBPLINKEDMDB
log exactmatch 3 0.9808917197452229 0.9675392670157068 0.974169741697417 2740.0 1.0 0.9900990099009901 0.9950248756218906 1.0 "exactmatch(x.title,y.title)|1.00" DBPLINKEDMDB
best jaccard 3 0.9811912225705329 0.9832460732984293 0.9822175732217573 2745.0 1.0 1.0 1.0 1.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,jarowinkler 3 0.9772256728778468 0.9884816753926702 0.982821447162936 5166.0 1.0 1.0 1.0 505.0 "OR(jaccard(x.title,y.title)|0.70,jarowinkler(x.title,y.title)|0.94)|0" DBPLINKEDMDB
log jaccard,jaro 3 0.9811912225705329 0.9832460732984293 0.9822175732217573 7955.0 1.0 1.0 1.0 1.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,soundex 3 0.9811912225705329 0.9832460732984293 0.9822175732217573 10745.0 1.0 1.0 1.0 1.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,mongeelkan 3 0.9811912225705329 0.9832460732984293 0.9822175732217573 5182.0 1.0 1.0 1.0 1.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,levenstein 3 0.9811912225705329 0.9832460732984293 0.9822175732217573 5137.0 1.0 1.0 1.0 1.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,ratcliffobershelp 3 0.9812108559498957 0.9842931937172775 0.9827496079456352 5151.0 1.0 1.0 1.0 506.0 "OR(jaccard(x.title,y.title)|0.70,ratcliffobershelp(x.title,y.title)|0.90)|0" DBPLINKEDMDB
log jaccard,trigrams 3 0.9811912225705329 0.9832460732984293 0.9822175732217573 5174.0 1.0 1.0 1.0 1.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,exactmatch 3 0.9811912225705329 0.9832460732984293 0.9822175732217573 5146.0 1.0 1.0 1.0 1.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard 4 0.9801047120418848 0.9842271293375394 0.9821615949632738 2733.0 1.0 0.9904761904761905 0.9952153110047847 0.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jarowinkler 4 0.9820295983086681 0.9768664563617245 0.9794412229836584 2733.0 1.0 0.9904761904761905 0.9952153110047847 505.0 "jarowinkler(x.title,y.title)|0.97" DBPLINKEDMDB
log jaro 4 0.9759414225941423 0.9810725552050473 0.9785002621919247 4464.0 1.0 0.9904761904761905 0.9952153110047847 12.0 "jaro(x.title,y.title)|0.90" DBPLINKEDMDB
log soundex 4 0.9730639730639731 0.9116719242902208 0.9413680781758959 5736.0 1.0 0.9523809523809523 0.975609756097561 1.0 "AND(soundex(x.title,y.title)|1.00,soundex(x.director,y.director)|1.00)|0" DBPLINKEDMDB
log mongeelkan 4 0.9618556701030928 0.9810725552050473 0.9713690786048933 2778.0 1.0 0.9904761904761905 0.9952153110047847 89.0 "mongeelkan(x.title,y.title)|0.90" DBPLINKEDMDB
log levenstein 4 0.9818763326226013 0.9684542586750788 0.9751191106405505 2701.0 1.0 0.9809523809523809 0.9903846153846153 2.0 "levenstein(x.title,y.title)|1.00" DBPLINKEDMDB
log ratcliffobershelp 4 0.9800210304942166 0.9800210304942166 0.9800210304942166 2682.0 1.0 0.9904761904761905 0.9952153110047847 504.0 "ratcliffobershelp(x.title,y.title)|0.90" DBPLINKEDMDB
log trigrams 4 0.982010582010582 0.9758149316508938 0.978902953586498 2696.0 1.0 0.9904761904761905 0.9952153110047847 0.0 "trigrams(x.title,y.title)|1.00" DBPLINKEDMDB
log exactmatch 4 0.9818763326226013 0.9684542586750788 0.9751191106405505 2729.0 1.0 0.9809523809523809 0.9903846153846153 1.0 "exactmatch(x.title,y.title)|1.00" DBPLINKEDMDB
best jaccard 4 0.9801047120418848 0.9842271293375394 0.9821615949632738 2733.0 1.0 0.9904761904761905 0.9952153110047847 0.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,jarowinkler 4 0.9801255230125523 0.9852786540483701 0.9826953329837441 5079.0 1.0 0.9904761904761905 0.9952153110047847 504.0 "OR(jaccard(x.title,y.title)|0.70,jarowinkler(x.title,y.title)|0.97)|0" DBPLINKEDMDB
log jaccard,jaro 4 0.9761410788381742 0.9894847528916929 0.9827676240208877 6619.0 1.0 0.9904761904761905 0.9952153110047847 13.0 "OR(jaccard(x.title,y.title)|0.70,jaro(x.title,y.title)|0.90)|0" DBPLINKEDMDB
log jaccard,soundex 4 0.9801047120418848 0.9842271293375394 0.9821615949632738 7696.0 1.0 0.9904761904761905 0.9952153110047847 0.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,mongeelkan 4 0.9801047120418848 0.9842271293375394 0.9821615949632738 5162.0 1.0 0.9904761904761905 0.9952153110047847 0.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,levenstein 4 0.9801047120418848 0.9842271293375394 0.9821615949632738 5116.0 1.0 0.9904761904761905 0.9952153110047847 0.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,ratcliffobershelp 4 0.9801255230125523 0.9852786540483701 0.9826953329837441 5144.0 1.0 0.9904761904761905 0.9952153110047847 641.0 "OR(jaccard(x.title,y.title)|0.70,ratcliffobershelp(x.title,y.title)|0.90)|0" DBPLINKEDMDB
log jaccard,trigrams 4 0.9801047120418848 0.9842271293375394 0.9821615949632738 5127.0 1.0 0.9904761904761905 0.9952153110047847 0.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,exactmatch 4 0.9801047120418848 0.9842271293375394 0.9821615949632738 5161.0 1.0 0.9904761904761905 0.9952153110047847 0.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard 5 0.9801670146137788 0.9842767295597484 0.9822175732217574 2762.0 1.0 0.9901960784313726 0.9950738916256158 0.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jarowinkler 5 0.9821052631578947 0.9779874213836478 0.9800420168067228 2702.0 1.0 0.9803921568627451 0.99009900990099 505.0 "jarowinkler(x.title,y.title)|0.97" DBPLINKEDMDB
log jaro 5 0.9719626168224299 0.9811320754716981 0.9765258215962441 4466.0 1.0 0.9901960784313726 0.9950738916256158 13.0 "jaro(x.title,y.title)|0.90" DBPLINKEDMDB
log soundex 5 0.9820224719101124 0.9161425576519916 0.9479392624728851 7129.0 1.0 0.9117647058823529 0.9538461538461539 1.0 "AND(soundex(x.title,y.title)|1.00,soundex(x.director,y.director)|1.00)|0" DBPLINKEDMDB
log mongeelkan 5 0.9619732785200411 0.9811320754716981 0.9714582252205501 3570.0 1.0 0.9901960784313726 0.9950738916256158 219.0 "mongeelkan(x.title,y.title)|0.90" DBPLINKEDMDB
log levenstein 5 0.9819532908704883 0.9696016771488469 0.9757383966244726 3183.0 1.0 0.9705882352941176 0.9850746268656716 2.0 "levenstein(x.title,y.title)|1.00" DBPLINKEDMDB
log ratcliffobershelp 5 0.980083857442348 0.980083857442348 0.980083857442348 3637.0 1.0 0.9901960784313726 0.9950738916256158 564.0 "ratcliffobershelp(x.title,y.title)|0.90" DBPLINKEDMDB
log trigrams 5 0.982086406743941 0.9769392033542977 0.9795060430898582 2861.0 1.0 0.9803921568627451 0.99009900990099 0.0 "trigrams(x.title,y.title)|1.00" DBPLINKEDMDB
log exactmatch 5 0.9819532908704883 0.9696016771488469 0.9757383966244726 2811.0 1.0 0.9705882352941176 0.9850746268656716 3.0 "exactmatch(x.title,y.title)|1.00" DBPLINKEDMDB
best jaccard 5 0.9801670146137788 0.9842767295597484 0.9822175732217574 2762.0 1.0 0.9901960784313726 0.9950738916256158 0.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,jarowinkler 5 0.9801876955161627 0.9853249475890985 0.9827496079456352 7751.0 1.0 0.9901960784313726 0.9950738916256158 505.0 "OR(jaccard(x.title,y.title)|0.70,jarowinkler(x.title,y.title)|0.97)|0" DBPLINKEDMDB
log jaccard,jaro 5 0.9801670146137788 0.9842767295597484 0.9822175732217574 6631.0 1.0 0.9901960784313726 0.9950738916256158 0.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,soundex 5 0.9801670146137788 0.9842767295597484 0.9822175732217574 7719.0 1.0 0.9901960784313726 0.9950738916256158 0.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,mongeelkan 5 0.9801670146137788 0.9842767295597484 0.9822175732217574 5203.0 1.0 0.9901960784313726 0.9950738916256158 0.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,levenstein 5 0.9801670146137788 0.9842767295597484 0.9822175732217574 5158.0 1.0 0.9901960784313726 0.9950738916256158 0.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,ratcliffobershelp 5 0.9801876955161627 0.9853249475890985 0.9827496079456352 5144.0 1.0 0.9901960784313726 0.9950738916256158 507.0 "OR(jaccard(x.title,y.title)|0.70,ratcliffobershelp(x.title,y.title)|0.90)|0" DBPLINKEDMDB
log jaccard,trigrams 5 0.9801670146137788 0.9842767295597484 0.9822175732217574 5126.0 1.0 0.9901960784313726 0.9950738916256158 0.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,exactmatch 5 0.9801670146137788 0.9842767295597484 0.9822175732217574 5230.0 1.0 0.9901960784313726 0.9950738916256158 0.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard 6 0.9810526315789474 0.985200845665962 0.9831223628691983 2726.0 1.0 0.9818181818181818 0.9908256880733944 1.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jarowinkler 6 0.9800210304942166 0.985200845665962 0.9826041117554033 2736.0 1.0 0.9545454545454546 0.9767441860465117 507.0 "jarowinkler(x.title,y.title)|0.94" DBPLINKEDMDB
log jaro 6 0.9789915966386554 0.985200845665962 0.982086406743941 6069.0 1.0 0.9545454545454546 0.9767441860465117 13.0 "jaro(x.title,y.title)|0.90" DBPLINKEDMDB
log soundex 6 0.979706877113867 0.9186046511627907 0.9481723949809057 8704.0 1.0 0.8909090909090909 0.9423076923076923 1.0 "AND(soundex(x.title,y.title)|1.00,soundex(x.director,y.director)|1.00)|0" DBPLINKEDMDB
log mongeelkan 6 0.9607032057911065 0.9820295983086681 0.9712493465760585 2744.0 1.0 0.9818181818181818 0.9908256880733944 97.0 "mongeelkan(x.title,y.title)|0.90" DBPLINKEDMDB
log levenstein 6 0.9808306709265175 0.9735729386892178 0.9771883289124669 2703.0 1.0 0.9363636363636364 0.9671361502347418 2.0 "levenstein(x.title,y.title)|1.00" DBPLINKEDMDB
log ratcliffobershelp 6 0.9810326659641728 0.9841437632135307 0.9825857519788918 2696.0 1.0 0.9545454545454546 0.9767441860465117 505.0 "ratcliffobershelp(x.title,y.title)|0.90" DBPLINKEDMDB
log trigrams 6 0.9809725158562368 0.9809725158562368 0.9809725158562368 2716.0 1.0 0.9545454545454546 0.9767441860465117 0.0 "trigrams(x.title,y.title)|0.90" DBPLINKEDMDB
log exactmatch 6 0.9808306709265175 0.9735729386892178 0.9771883289124669 2763.0 1.0 0.9363636363636364 0.9671361502347418 0.0 "exactmatch(x.title,y.title)|1.00" DBPLINKEDMDB
best jaccard 6 0.9810526315789474 0.985200845665962 0.9831223628691983 2726.0 1.0 0.9818181818181818 0.9908256880733944 1.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,jarowinkler 6 0.9801255230125523 0.9904862579281184 0.9852786540483701 5164.0 1.0 0.9818181818181818 0.9908256880733944 506.0 "OR(jaccard(x.title,y.title)|0.70,jarowinkler(x.title,y.title)|0.94)|0" DBPLINKEDMDB
log jaccard,jaro 6 0.9791013584117032 0.9904862579281184 0.9847609038360483 7963.0 1.0 0.9818181818181818 0.9908256880733944 13.0 "OR(jaccard(x.title,y.title)|0.70,jaro(x.title,y.title)|0.90)|0" DBPLINKEDMDB
log jaccard,soundex 6 0.9810526315789474 0.985200845665962 0.9831223628691983 10114.0 1.0 0.9818181818181818 0.9908256880733944 1.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,mongeelkan 6 0.9810526315789474 0.985200845665962 0.9831223628691983 5172.0 1.0 0.9818181818181818 0.9908256880733944 1.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,levenstein 6 0.9810526315789474 0.985200845665962 0.9831223628691983 5137.0 1.0 0.9818181818181818 0.9908256880733944 1.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,ratcliffobershelp 6 0.9810725552050473 0.9862579281183932 0.9836584080126516 5268.0 1.0 0.9818181818181818 0.9908256880733944 507.0 "OR(jaccard(x.title,y.title)|0.70,ratcliffobershelp(x.title,y.title)|0.90)|0" DBPLINKEDMDB
log jaccard,trigrams 6 0.9810526315789474 0.985200845665962 0.9831223628691983 5143.0 1.0 0.9818181818181818 0.9908256880733944 1.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,exactmatch 6 0.9810526315789474 0.985200845665962 0.9831223628691983 5154.0 1.0 0.9818181818181818 0.9908256880733944 1.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard 7 0.9831756046267087 0.9862869198312236 0.984728804634018 2726.0 0.9813084112149533 0.9722222222222222 0.9767441860465117 1.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jarowinkler 7 0.9820675105485233 0.9820675105485233 0.9820675105485233 2690.0 0.9814814814814815 0.9814814814814815 0.9814814814814815 505.0 "jarowinkler(x.title,y.title)|0.94" DBPLINKEDMDB
log jaro 7 0.9789695057833859 0.9820675105485233 0.9805160610847814 4388.0 0.9814814814814815 0.9814814814814815 0.9814814814814815 11.0 "jaro(x.title,y.title)|0.90" DBPLINKEDMDB
log soundex 7 0.9720044792833147 0.9156118143459916 0.9429657794676807 5737.0 1.0 0.9166666666666666 0.9565217391304348 2.0 "AND(soundex(x.title,y.title)|1.00,soundex(x.director,y.director)|1.00)|0" DBPLINKEDMDB
log mongeelkan 7 0.9658385093167702 0.9841772151898734 0.974921630094044 2748.0 0.9811320754716981 0.9629629629629629 0.9719626168224299 77.0 "mongeelkan(x.title,y.title)|0.90" DBPLINKEDMDB
log levenstein 7 0.9850107066381156 0.9704641350210971 0.9776833156216791 2705.0 0.9811320754716981 0.9629629629629629 0.9719626168224299 2.0 "levenstein(x.title,y.title)|1.00" DBPLINKEDMDB
log ratcliffobershelp 7 0.9831045406546991 0.9820675105485233 0.9825857519788919 2688.0 0.9813084112149533 0.9722222222222222 0.9767441860465117 504.0 "ratcliffobershelp(x.title,y.title)|0.90" DBPLINKEDMDB
log trigrams 7 0.9771071800208116 0.990506329113924 0.9837611314824515 2734.0 0.9813084112149533 0.9722222222222222 0.9767441860465117 1.0 "trigrams(x.title,y.title)|0.80" DBPLINKEDMDB
log exactmatch 7 0.9850107066381156 0.9704641350210971 0.9776833156216791 2734.0 0.9811320754716981 0.9629629629629629 0.9719626168224299 0.0 "exactmatch(x.title,y.title)|1.00" DBPLINKEDMDB
best jarowinkler 7 0.9820675105485233 0.9820675105485233 0.9820675105485233 2690.0 0.9814814814814815 0.9814814814814815 0.9814814814814815 505.0 "jarowinkler(x.title,y.title)|0.94" DBPLINKEDMDB
log jarowinkler,jaccard 7 0.9822175732217573 0.990506329113924 0.9863445378151261 5143.0 0.9814814814814815 0.9814814814814815 0.9814814814814815 504.0 "OR(jaccard(x.title,y.title)|0.70,jarowinkler(x.title,y.title)|0.94)|0" DBPLINKEDMDB
log jarowinkler,jaro 7 0.9820675105485233 0.9820675105485233 0.9820675105485233 6629.0 0.9814814814814815 0.9814814814814815 0.9814814814814815 505.0 "jarowinkler(x.title,y.title)|0.94" DBPLINKEDMDB
log jarowinkler,soundex 7 0.9820675105485233 0.9820675105485233 0.9820675105485233 7830.0 0.9814814814814815 0.9814814814814815 0.9814814814814815 505.0 "jarowinkler(x.title,y.title)|0.94" DBPLINKEDMDB
log jarowinkler,mongeelkan 7 0.9820675105485233 0.9820675105485233 0.9820675105485233 5225.0 0.9814814814814815 0.9814814814814815 0.9814814814814815 505.0 "jarowinkler(x.title,y.title)|0.94" DBPLINKEDMDB
log jarowinkler,levenstein 7 0.9820675105485233 0.9820675105485233 0.9820675105485233 5175.0 0.9814814814814815 0.9814814814814815 0.9814814814814815 505.0 "jarowinkler(x.title,y.title)|0.94" DBPLINKEDMDB
log jarowinkler,ratcliffobershelp 7 0.982124079915878 0.9852320675105485 0.9836756187467087 5167.0 0.9814814814814815 0.9814814814814815 0.9814814814814815 1009.0 "OR(ratcliffobershelp(x.title,y.title)|0.90,jarowinkler(x.title,y.title)|0.94)|0" DBPLINKEDMDB
log jarowinkler,trigrams 7 0.9761163032191069 0.9915611814345991 0.9837781266352694 5259.0 0.9814814814814815 0.9814814814814815 0.9814814814814815 505.0 "OR(trigrams(x.title,y.title)|0.80,jarowinkler(x.title,y.title)|0.94)|0" DBPLINKEDMDB
log jarowinkler,exactmatch 7 0.9820675105485233 0.9820675105485233 0.9820675105485233 5206.0 0.9814814814814815 0.9814814814814815 0.9814814814814815 505.0 "jarowinkler(x.title,y.title)|0.94" DBPLINKEDMDB
log jaccard 8 0.975 0.9842271293375394 0.9795918367346939 2731.0 1.0 0.9904761904761905 0.9952153110047847 1.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jarowinkler 8 0.9769150052465897 0.9789695057833859 0.9779411764705882 2691.0 1.0 0.9714285714285714 0.9855072463768115 505.0 "jarowinkler(x.title,y.title)|0.97" DBPLINKEDMDB
log jaro 8 0.9669079627714581 0.9831756046267087 0.9749739311783107 4443.0 1.0 0.9714285714285714 0.9855072463768115 11.0 "jaro(x.title,y.title)|0.90" DBPLINKEDMDB
log soundex 8 0.9753914988814317 0.9169295478443743 0.9452574525745258 5747.0 1.0 0.9047619047619048 0.9500000000000001 2.0 "AND(soundex(x.title,y.title)|1.00,soundex(x.director,y.director)|1.00)|0" DBPLINKEDMDB
log mongeelkan 8 0.96086508753862 0.9810725552050473 0.9708636836628511 2753.0 0.9904761904761905 0.9904761904761905 0.9904761904761905 89.0 "mongeelkan(x.title,y.title)|0.90" DBPLINKEDMDB
log levenstein 8 0.9766949152542372 0.9695057833859095 0.9730870712401054 2722.0 1.0 0.9714285714285714 0.9855072463768115 2.0 "levenstein(x.title,y.title)|1.00" DBPLINKEDMDB
log ratcliffobershelp 8 0.9749216300940439 0.9810725552050473 0.9779874213836478 2707.0 1.0 0.9904761904761905 0.9952153110047847 504.0 "ratcliffobershelp(x.title,y.title)|0.90" DBPLINKEDMDB
log trigrams 8 0.976890756302521 0.9779179810725552 0.977404098791382 2756.0 1.0 0.9714285714285714 0.9855072463768115 1.0 "trigrams(x.title,y.title)|1.00" DBPLINKEDMDB
log exactmatch 8 0.9766949152542372 0.9695057833859095 0.9730870712401054 2844.0 1.0 0.9714285714285714 0.9855072463768115 1.0 "exactmatch(x.title,y.title)|1.00" DBPLINKEDMDB
best jaccard 8 0.975 0.9842271293375394 0.9795918367346939 2731.0 1.0 0.9904761904761905 0.9952153110047847 1.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,jarowinkler 8 0.9750260145681582 0.9852786540483701 0.9801255230125523 5173.0 1.0 0.9904761904761905 0.9952153110047847 507.0 "OR(jaccard(x.title,y.title)|0.70,jarowinkler(x.title,y.title)|0.97)|0" DBPLINKEDMDB
log jaccard,jaro 8 0.975 0.9842271293375394 0.9795918367346939 6610.0 1.0 0.9904761904761905 0.9952153110047847 1.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,soundex 8 0.975 0.9842271293375394 0.9795918367346939 7741.0 1.0 0.9904761904761905 0.9952153110047847 1.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,mongeelkan 8 0.975 0.9842271293375394 0.9795918367346939 5186.0 1.0 0.9904761904761905 0.9952153110047847 1.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,levenstein 8 0.975 0.9842271293375394 0.9795918367346939 5156.0 1.0 0.9904761904761905 0.9952153110047847 1.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,ratcliffobershelp 8 0.9750260145681582 0.9852786540483701 0.9801255230125523 5183.0 1.0 0.9904761904761905 0.9952153110047847 505.0 "OR(jaccard(x.title,y.title)|0.70,ratcliffobershelp(x.title,y.title)|0.90)|0" DBPLINKEDMDB
log jaccard,trigrams 8 0.975 0.9842271293375394 0.9795918367346939 5127.0 1.0 0.9904761904761905 0.9952153110047847 1.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,exactmatch 8 0.975 0.9842271293375394 0.9795918367346939 5177.0 1.0 0.9904761904761905 0.9952153110047847 1.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard 9 0.9770833333333333 0.9832285115303984 0.980146290491118 2724.0 1.0 1.0 1.0 1.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jarowinkler 9 0.9789695057833859 0.9758909853249476 0.9774278215223097 2706.0 1.0 1.0 1.0 610.0 "jarowinkler(x.title,y.title)|0.97" DBPLINKEDMDB
log jaro 9 0.9689119170984456 0.980083857442348 0.9744658676393955 4420.0 1.0 1.0 1.0 10.0 "jaro(x.title,y.title)|0.90" DBPLINKEDMDB
log soundex 9 0.9798206278026906 0.9161425576519916 0.9469122426868904 5740.0 1.0 0.9117647058823529 0.9538461538461539 2.0 "AND(soundex(x.title,y.title)|1.00,soundex(x.director,y.director)|1.00)|0" DBPLINKEDMDB
log mongeelkan 9 0.9619341563786008 0.980083857442348 0.9709241952232607 2770.0 1.0 1.0 1.0 84.0 "mongeelkan(x.title,y.title)|0.90" DBPLINKEDMDB
log levenstein 9 0.9787685774946921 0.9664570230607966 0.9725738396624473 2691.0 1.0 1.0 1.0 2.0 "levenstein(x.title,y.title)|1.00" DBPLINKEDMDB
log ratcliffobershelp 9 0.9769874476987448 0.9790356394129979 0.9780104712041885 2704.0 1.0 1.0 1.0 504.0 "ratcliffobershelp(x.title,y.title)|0.90" DBPLINKEDMDB
log trigrams 9 0.9789473684210527 0.9748427672955975 0.9768907563025211 2713.0 1.0 1.0 1.0 1.0 "trigrams(x.title,y.title)|1.00" DBPLINKEDMDB
log exactmatch 9 0.9787685774946921 0.9664570230607966 0.9725738396624473 2752.0 1.0 1.0 1.0 0.0 "exactmatch(x.title,y.title)|1.00" DBPLINKEDMDB
best jaccard 9 0.9770833333333333 0.9832285115303984 0.980146290491118 2724.0 1.0 1.0 1.0 1.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,jarowinkler 9 0.9771071800208116 0.9842767295597484 0.9806788511749348 5163.0 1.0 1.0 1.0 506.0 "OR(jaccard(x.title,y.title)|0.70,jarowinkler(x.title,y.title)|0.97)|0" DBPLINKEDMDB
log jaccard,jaro 9 0.9770833333333333 0.9832285115303984 0.980146290491118 6581.0 1.0 1.0 1.0 1.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,soundex 9 0.9770833333333333 0.9832285115303984 0.980146290491118 7840.0 1.0 1.0 1.0 1.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,mongeelkan 9 0.9770833333333333 0.9832285115303984 0.980146290491118 5185.0 1.0 1.0 1.0 1.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,levenstein 9 0.9770833333333333 0.9832285115303984 0.980146290491118 5147.0 1.0 1.0 1.0 1.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,ratcliffobershelp 9 0.9771071800208116 0.9842767295597484 0.9806788511749348 5138.0 1.0 1.0 1.0 505.0 "OR(jaccard(x.title,y.title)|0.70,ratcliffobershelp(x.title,y.title)|0.90)|0" DBPLINKEDMDB
log jaccard,trigrams 9 0.9770833333333333 0.9832285115303984 0.980146290491118 5124.0 1.0 1.0 1.0 1.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard,exactmatch 9 0.9770833333333333 0.9832285115303984 0.980146290491118 5155.0 1.0 1.0 1.0 1.0 "jaccard(x.title,y.title)|0.70" DBPLINKEDMDB
log jaccard 0 1.0 0.9977777777777778 0.9988876529477196 1687.0 1.0 1.0 1.0 1.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jarowinkler 0 0.9868131868131869 0.9977777777777778 0.9922651933701657 1615.0 1.0 1.0 1.0 1001.0 "OR(jarowinkler(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.87,jarowinkler(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.91)|0" PERSON1
log jaro 0 0.9656652360515021 1.0 0.982532751091703 7314.0 1.0 1.0 1.0 4.0 "OR(jaro(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.90,jaro(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.90)|0" PERSON1
log soundex 0 1.0 0.8533333333333334 0.9208633093525179 72913.0 0.9512195121951219 0.78 0.8571428571428571 1.0 "AND(AND(soundex(x.http://www.okkam.org/ontology_person1.owl#surname,y.http://www.okkam.org/ontology_person2.owl#surname)|1.00,soundex(x.http://www.okkam.org/ontology_person1.owl#given_name,y.http://www.okkam.org/ontology_person2.owl#given_name)|1.00)|0,soundex(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00)|0" PERSON1
log mongeelkan 0 1.0 0.96 0.9795918367346939 1606.0 1.0 0.98 0.98989898989899 6.0 "mongeelkan(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80" PERSON1
log levenstein 0 1.0 0.9977777777777778 0.9988876529477196 1367.0 1.0 1.0 1.0 2.0 "OR(levenstein(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,levenstein(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log ratcliffobershelp 0 0.9955654101995566 0.9977777777777778 0.9966703662597114 1752.0 1.0 1.0 1.0 1002.0 "OR(ratcliffobershelp(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80,ratcliffobershelp(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.90)|0" PERSON1
log trigrams 0 1.0 0.9977777777777778 0.9988876529477196 3352.0 1.0 1.0 1.0 1.0 "OR(trigrams(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,trigrams(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log exactmatch 0 1.0 0.9511111111111111 0.9749430523917996 1587.0 1.0 0.94 0.9690721649484536 1.0 "exactmatch(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00" PERSON1
best jaccard 0 1.0 0.9977777777777778 0.9988876529477196 1687.0 1.0 1.0 1.0 1.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,jarowinkler 0 0.9868421052631579 1.0 0.9933774834437086 1271.0 1.0 1.0 1.0 503.0 "OR(OR(jarowinkler(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.87,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0,jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00)|0" PERSON1
log jaccard,jaro 0 0.974025974025974 1.0 0.9868421052631579 4757.0 1.0 1.0 1.0 2.0 "OR(jaro(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.90,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,soundex 0 1.0 0.9977777777777778 0.9988876529477196 30749.0 1.0 1.0 1.0 1.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,mongeelkan 0 1.0 0.9977777777777778 0.9988876529477196 1293.0 1.0 1.0 1.0 6.0 "OR(mongeelkan(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,levenstein 0 1.0 0.9977777777777778 0.9988876529477196 1159.0 1.0 1.0 1.0 1.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,ratcliffobershelp 0 0.995575221238938 1.0 0.9977827050997783 1368.0 1.0 1.0 1.0 502.0 "OR(OR(ratcliffobershelp(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0,jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00)|0" PERSON1
log jaccard,trigrams 0 1.0 0.9977777777777778 0.9988876529477196 2145.0 1.0 1.0 1.0 1.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,exactmatch 0 1.0 0.9977777777777778 0.9988876529477196 1287.0 1.0 1.0 1.0 1.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard 1 1.0 1.0 1.0 62.0 1.0 0.98 0.98989898989899 0.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jarowinkler 1 0.9911699779249448 0.9977777777777778 0.9944629014396456 1535.0 1.0 1.0 1.0 1002.0 "OR(jarowinkler(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.87,jarowinkler(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.91)|0" PERSON1
log jaro 1 0.9802197802197802 0.9911111111111112 0.9856353591160221 4718.0 1.0 1.0 1.0 1.0 "jaro(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.90" PERSON1
log soundex 1 0.9947643979057592 0.8444444444444444 0.9134615384615385 61482.0 1.0 0.86 0.924731182795699 1.0 "AND(AND(soundex(x.http://www.okkam.org/ontology_person1.owl#surname,y.http://www.okkam.org/ontology_person2.owl#surname)|1.00,soundex(x.http://www.okkam.org/ontology_person1.owl#given_name,y.http://www.okkam.org/ontology_person2.owl#given_name)|1.00)|0,soundex(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00)|0" PERSON1
log mongeelkan 1 1.0 0.9644444444444444 0.9819004524886877 1587.0 1.0 0.94 0.9690721649484536 6.0 "mongeelkan(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80" PERSON1
log levenstein 1 1.0 1.0 1.0 59.0 1.0 0.98 0.98989898989899 0.0 "OR(levenstein(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,levenstein(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log ratcliffobershelp 1 0.9911699779249448 0.9977777777777778 0.9944629014396456 1724.0 1.0 1.0 1.0 1001.0 "OR(ratcliffobershelp(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80,ratcliffobershelp(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.90)|0" PERSON1
log trigrams 1 1.0 1.0 1.0 200.0 1.0 0.98 0.98989898989899 1.0 "OR(trigrams(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,trigrams(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log exactmatch 1 1.0 0.9511111111111111 0.9749430523917996 1568.0 1.0 0.94 0.9690721649484536 0.0 "exactmatch(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00" PERSON1
best jarowinkler 1 0.9911699779249448 0.9977777777777778 0.9944629014396456 1535.0 1.0 1.0 1.0 1002.0 "OR(jarowinkler(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.87,jarowinkler(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.91)|0" PERSON1
log jarowinkler,jaccard 1 0.9911894273127754 1.0 0.9955752212389382 1271.0 1.0 1.0 1.0 502.0 "OR(OR(jarowinkler(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.87,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0,jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00)|0" PERSON1
log jarowinkler,jaro 1 0.9803921568627451 1.0 0.99009900990099 2917.0 1.0 1.0 1.0 502.0 "OR(jaro(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.90,jarowinkler(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.91)|0" PERSON1
log jarowinkler,soundex 1 0.9911699779249448 0.9977777777777778 0.9944629014396456 31351.0 1.0 1.0 1.0 1002.0 "OR(jarowinkler(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.87,jarowinkler(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.91)|0" PERSON1
log jarowinkler,mongeelkan 1 1.0 1.0 1.0 489.0 1.0 1.0 1.0 1052.0 "OR(AND(OR(jarowinkler(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.87,jarowinkler(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.91)|0,mongeelkan(x.http://www.okkam.org/ontology_person1.owl#has_address,y.http://www.okkam.org/ontology_person2.owl#has_address)|0.90)|0,mongeelkan(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80)|0" PERSON1
log jarowinkler,levenstein 1 0.9911894273127754 1.0 0.9955752212389382 1275.0 1.0 1.0 1.0 1002.0 "OR(OR(jarowinkler(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.87,jarowinkler(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.91)|0,levenstein(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00)|0" PERSON1
log jarowinkler,ratcliffobershelp 1 0.9911699779249448 0.9977777777777778 0.9944629014396456 1449.0 1.0 1.0 1.0 1002.0 "OR(ratcliffobershelp(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80,jarowinkler(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.91)|0" PERSON1
log jarowinkler,trigrams 1 0.9911894273127754 1.0 0.9955752212389382 3930.0 1.0 1.0 1.0 1001.0 "OR(OR(jarowinkler(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.87,jarowinkler(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.91)|0,trigrams(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00)|0" PERSON1
log jarowinkler,exactmatch 1 0.9911894273127754 1.0 0.9955752212389382 1381.0 1.0 1.0 1.0 1001.0 "OR(OR(jarowinkler(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.87,jarowinkler(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.91)|0,exactmatch(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00)|0" PERSON1
log jaccard 2 1.0 0.9977777777777778 0.9988876529477196 1386.0 1.0 1.0 1.0 1.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jarowinkler 2 0.9846491228070176 0.9977777777777778 0.9911699779249448 1544.0 1.0 1.0 1.0 1001.0 "OR(jarowinkler(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.87,jarowinkler(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.91)|0" PERSON1
log jaro 2 0.9760348583877996 0.9955555555555555 0.9856985698569857 4647.0 1.0 0.96 0.9795918367346939 2.0 "jaro(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.90" PERSON1
log soundex 2 0.9948051948051948 0.8511111111111112 0.9173652694610779 60680.0 1.0 0.8 0.888888888888889 0.0 "AND(AND(soundex(x.http://www.okkam.org/ontology_person1.owl#surname,y.http://www.okkam.org/ontology_person2.owl#surname)|1.00,soundex(x.http://www.okkam.org/ontology_person1.owl#given_name,y.http://www.okkam.org/ontology_person2.owl#given_name)|1.00)|0,soundex(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00)|0" PERSON1
log mongeelkan 2 1.0 0.96 0.9795918367346939 1618.0 1.0 0.98 0.98989898989899 6.0 "mongeelkan(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80" PERSON1
log levenstein 2 1.0 0.9977777777777778 0.9988876529477196 1380.0 1.0 1.0 1.0 0.0 "OR(levenstein(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,levenstein(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log ratcliffobershelp 2 0.9889867841409692 0.9977777777777778 0.993362831858407 1711.0 1.0 1.0 1.0 1001.0 "OR(ratcliffobershelp(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80,ratcliffobershelp(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.90)|0" PERSON1
log trigrams 2 1.0 0.9977777777777778 0.9988876529477196 3326.0 1.0 1.0 1.0 0.0 "OR(trigrams(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,trigrams(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log exactmatch 2 1.0 0.9488888888888889 0.9737742303306728 1594.0 1.0 0.96 0.9795918367346939 0.0 "exactmatch(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00" PERSON1
best jaccard 2 1.0 0.9977777777777778 0.9988876529477196 1386.0 1.0 1.0 1.0 1.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,jarowinkler 2 0.9846827133479212 1.0 0.9922822491730982 2046.0 1.0 1.0 1.0 501.0 "OR(OR(jarowinkler(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.87,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0,jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00)|0" PERSON1
log jaccard,jaro 2 0.9761388286334056 1.0 0.9879253567508233 2816.0 1.0 1.0 1.0 1.0 "OR(jaro(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.90,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,soundex 2 1.0 0.9977777777777778 0.9988876529477196 29719.0 1.0 1.0 1.0 1.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,mongeelkan 2 1.0 0.9977777777777778 0.9988876529477196 1309.0 1.0 1.0 1.0 6.0 "OR(mongeelkan(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,levenstein 2 1.0 0.9977777777777778 0.9988876529477196 1170.0 1.0 1.0 1.0 1.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,ratcliffobershelp 2 0.989010989010989 1.0 0.994475138121547 1355.0 1.0 1.0 1.0 1002.0 "OR(OR(ratcliffobershelp(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80,ratcliffobershelp(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.90)|0,jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00)|0" PERSON1
log jaccard,trigrams 2 1.0 0.9977777777777778 0.9988876529477196 2165.0 1.0 1.0 1.0 1.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,exactmatch 2 1.0 0.9977777777777778 0.9988876529477196 1303.0 1.0 1.0 1.0 1.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard 3 1.0 0.9977827050997783 0.9988901220865705 1370.0 1.0 1.0 1.0 1.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jarowinkler 3 0.9846827133479212 0.9977827050997783 0.9911894273127754 1563.0 1.0 1.0 1.0 1002.0 "OR(jarowinkler(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.87,jarowinkler(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.91)|0" PERSON1
log jaro 3 0.9761388286334056 0.9977827050997783 0.9868421052631579 4818.0 0.98 1.0 0.98989898989899 3.0 "OR(jaro(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.90,jaro(x.http://www.okkam.org/ontology_person1.owl#date_of_birth,y.http://www.okkam.org/ontology_person2.owl#date_of_birth)|1.00)|0" PERSON1
log soundex 3 0.9948051948051948 0.8492239467849224 0.916267942583732 60211.0 1.0 0.8163265306122449 0.898876404494382 1.0 "AND(AND(soundex(x.http://www.okkam.org/ontology_person1.owl#surname,y.http://www.okkam.org/ontology_person2.owl#surname)|1.00,soundex(x.http://www.okkam.org/ontology_person1.owl#given_name,y.http://www.okkam.org/ontology_person2.owl#given_name)|1.00)|0,soundex(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00)|0" PERSON1
log mongeelkan 3 1.0 0.9645232815964523 0.981941309255079 3008.0 1.0 0.9387755102040817 0.968421052631579 6.0 "mongeelkan(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80" PERSON1
log levenstein 3 1.0 0.9977827050997783 0.9988901220865705 1363.0 1.0 1.0 1.0 1.0 "OR(levenstein(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,levenstein(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log ratcliffobershelp 3 0.989010989010989 0.9977827050997783 0.9933774834437087 1782.0 1.0 1.0 1.0 1002.0 "OR(ratcliffobershelp(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80,ratcliffobershelp(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.90)|0" PERSON1
log trigrams 3 1.0 0.9977827050997783 0.9988901220865705 3320.0 1.0 1.0 1.0 1.0 "OR(trigrams(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,trigrams(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log exactmatch 3 1.0 0.9512195121951219 0.975 1609.0 1.0 0.9387755102040817 0.968421052631579 1.0 "exactmatch(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00" PERSON1
best jaccard 3 1.0 0.9977827050997783 0.9988901220865705 1370.0 1.0 1.0 1.0 1.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,jarowinkler 3 0.9847161572052402 1.0 0.9922992299229924 1272.0 1.0 1.0 1.0 501.0 "OR(OR(jarowinkler(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.87,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0,jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00)|0" PERSON1
log jaccard,jaro 3 0.9804347826086957 1.0 0.9901207464324918 2852.0 1.0 1.0 1.0 2.0 "OR(jaro(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.90,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,soundex 3 1.0 0.9977827050997783 0.9988901220865705 33447.0 1.0 1.0 1.0 1.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,mongeelkan 3 1.0 0.9977827050997783 0.9988901220865705 1304.0 1.0 1.0 1.0 6.0 "OR(mongeelkan(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,levenstein 3 1.0 0.9977827050997783 0.9988901220865705 1163.0 1.0 1.0 1.0 1.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,ratcliffobershelp 3 0.9890350877192983 1.0 0.9944873208379272 1384.0 1.0 1.0 1.0 1002.0 "OR(OR(ratcliffobershelp(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80,ratcliffobershelp(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.90)|0,jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00)|0" PERSON1
log jaccard,trigrams 3 1.0 0.9977827050997783 0.9988901220865705 2171.0 1.0 1.0 1.0 1.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,exactmatch 3 1.0 0.9977827050997783 0.9988901220865705 1300.0 1.0 1.0 1.0 1.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard 4 1.0 0.9977777777777778 0.9988876529477196 1373.0 1.0 1.0 1.0 0.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jarowinkler 4 0.9911699779249448 0.9977777777777778 0.9944629014396456 1529.0 1.0 1.0 1.0 1001.0 "OR(jarowinkler(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.87,jarowinkler(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.91)|0" PERSON1
log jaro 4 0.9760869565217392 0.9977777777777778 0.9868131868131867 6349.0 1.0 1.0 1.0 3.0 "OR(jaro(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.90,jaro(x.http://www.okkam.org/ontology_person1.owl#date_of_birth,y.http://www.okkam.org/ontology_person2.owl#date_of_birth)|1.00)|0" PERSON1
log soundex 4 0.994750656167979 0.8422222222222222 0.9121540312876052 57240.0 1.0 0.88 0.9361702127659575 1.0 "AND(AND(soundex(x.http://www.okkam.org/ontology_person1.owl#surname,y.http://www.okkam.org/ontology_person2.owl#surname)|1.00,soundex(x.http://www.okkam.org/ontology_person1.owl#given_name,y.http://www.okkam.org/ontology_person2.owl#given_name)|1.00)|0,soundex(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00)|0" PERSON1
log mongeelkan 4 1.0 0.9622222222222222 0.9807474518686298 1673.0 1.0 0.96 0.9795918367346939 6.0 "mongeelkan(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80" PERSON1
log levenstein 4 1.0 0.9977777777777778 0.9988876529477196 1379.0 1.0 1.0 1.0 1.0 "OR(levenstein(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,levenstein(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log ratcliffobershelp 4 0.9933628318584071 0.9977777777777778 0.9955654101995566 8858.0 1.0 1.0 1.0 1001.0 "OR(ratcliffobershelp(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80,ratcliffobershelp(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.90)|0" PERSON1
log trigrams 4 1.0 0.9977777777777778 0.9988876529477196 3391.0 1.0 1.0 1.0 1.0 "OR(trigrams(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,trigrams(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log exactmatch 4 1.0 0.9511111111111111 0.9749430523917996 1594.0 1.0 0.94 0.9690721649484536 0.0 "exactmatch(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00" PERSON1
best jaccard 4 1.0 0.9977777777777778 0.9988876529477196 1373.0 1.0 1.0 1.0 0.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,jarowinkler 4 0.9911894273127754 1.0 0.9955752212389382 1253.0 1.0 1.0 1.0 502.0 "OR(OR(jarowinkler(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.87,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0,jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00)|0" PERSON1
log jaccard,jaro 4 0.982532751091703 1.0 0.9911894273127753 2858.0 1.0 1.0 1.0 1.0 "OR(jaro(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.90,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,soundex 4 1.0 0.9977777777777778 0.9988876529477196 27944.0 1.0 1.0 1.0 0.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,mongeelkan 4 1.0 0.9977777777777778 0.9988876529477196 1309.0 1.0 1.0 1.0 7.0 "OR(mongeelkan(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,levenstein 4 1.0 0.9977777777777778 0.9988876529477196 1169.0 1.0 1.0 1.0 0.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,ratcliffobershelp 4 0.9933774834437086 1.0 0.9966777408637874 1358.0 1.0 1.0 1.0 501.0 "OR(OR(ratcliffobershelp(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0,jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00)|0" PERSON1
log jaccard,trigrams 4 1.0 0.9977777777777778 0.9988876529477196 2130.0 1.0 1.0 1.0 0.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,exactmatch 4 1.0 0.9977777777777778 0.9988876529477196 1293.0 1.0 1.0 1.0 0.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard 5 1.0 0.9977777777777778 0.9988876529477196 1357.0 1.0 1.0 1.0 1.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jarowinkler 5 0.9868131868131869 0.9977777777777778 0.9922651933701657 1540.0 1.0 1.0 1.0 1001.0 "OR(jarowinkler(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.87,jarowinkler(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.91)|0" PERSON1
log jaro 5 0.9698275862068966 1.0 0.9846827133479212 4856.0 1.0 1.0 1.0 4.0 "OR(jaro(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.90,jaro(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.90)|0" PERSON1
log soundex 5 0.9947780678851175 0.8466666666666667 0.9147659063625451 56804.0 1.0 0.84 0.9130434782608696 1.0 "AND(AND(soundex(x.http://www.okkam.org/ontology_person1.owl#surname,y.http://www.okkam.org/ontology_person2.owl#surname)|1.00,soundex(x.http://www.okkam.org/ontology_person1.owl#given_name,y.http://www.okkam.org/ontology_person2.owl#given_name)|1.00)|0,soundex(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00)|0" PERSON1
log mongeelkan 5 1.0 0.9622222222222222 0.9807474518686298 1621.0 1.0 0.96 0.9795918367346939 6.0 "mongeelkan(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80" PERSON1
log levenstein 5 1.0 0.9977777777777778 0.9988876529477196 1355.0 1.0 1.0 1.0 1.0 "OR(levenstein(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,levenstein(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log ratcliffobershelp 5 0.9911699779249448 0.9977777777777778 0.9944629014396456 1743.0 1.0 1.0 1.0 1001.0 "OR(ratcliffobershelp(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80,ratcliffobershelp(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.90)|0" PERSON1
log trigrams 5 1.0 0.9977777777777778 0.9988876529477196 3307.0 1.0 1.0 1.0 0.0 "OR(trigrams(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,trigrams(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log exactmatch 5 1.0 0.9488888888888889 0.9737742303306728 1594.0 1.0 0.96 0.9795918367346939 0.0 "exactmatch(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00" PERSON1
best jaccard 5 1.0 0.9977777777777778 0.9988876529477196 1357.0 1.0 1.0 1.0 1.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,jarowinkler 5 0.9868421052631579 1.0 0.9933774834437086 1261.0 1.0 1.0 1.0 501.0 "OR(OR(jarowinkler(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.87,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0,jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00)|0" PERSON1
log jaccard,jaro 5 0.9761388286334056 1.0 0.9879253567508233 2809.0 1.0 1.0 1.0 2.0 "OR(jaro(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.90,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,soundex 5 1.0 0.9977777777777778 0.9988876529477196 28660.0 1.0 1.0 1.0 1.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,mongeelkan 5 1.0 0.9977777777777778 0.9988876529477196 1303.0 1.0 1.0 1.0 6.0 "OR(mongeelkan(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,levenstein 5 1.0 0.9977777777777778 0.9988876529477196 1163.0 1.0 1.0 1.0 1.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,ratcliffobershelp 5 0.9911894273127754 1.0 0.9955752212389382 1366.0 1.0 1.0 1.0 1002.0 "OR(OR(ratcliffobershelp(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80,ratcliffobershelp(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.90)|0,jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00)|0" PERSON1
log jaccard,trigrams 5 1.0 0.9977777777777778 0.9988876529477196 2131.0 1.0 1.0 1.0 1.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,exactmatch 5 1.0 0.9977777777777778 0.9988876529477196 1292.0 1.0 1.0 1.0 1.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard 6 1.0 0.9977777777777778 0.9988876529477196 1362.0 1.0 1.0 1.0 0.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jarowinkler 6 0.9846491228070176 0.9977777777777778 0.9911699779249448 1543.0 1.0 1.0 1.0 1001.0 "OR(jarowinkler(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.87,jarowinkler(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.91)|0" PERSON1
log jaro 6 0.9656652360515021 1.0 0.982532751091703 4617.0 1.0 1.0 1.0 3.0 "OR(jaro(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.90,jaro(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.90)|0" PERSON1
log soundex 6 0.9947643979057592 0.8444444444444444 0.9134615384615385 61860.0 1.0 0.86 0.924731182795699 1.0 "AND(AND(soundex(x.http://www.okkam.org/ontology_person1.owl#surname,y.http://www.okkam.org/ontology_person2.owl#surname)|1.00,soundex(x.http://www.okkam.org/ontology_person1.owl#given_name,y.http://www.okkam.org/ontology_person2.owl#given_name)|1.00)|0,soundex(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00)|0" PERSON1
log mongeelkan 6 1.0 0.9622222222222222 0.9807474518686298 1604.0 1.0 0.96 0.9795918367346939 6.0 "mongeelkan(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80" PERSON1
log levenstein 6 1.0 0.9977777777777778 0.9988876529477196 1360.0 1.0 1.0 1.0 1.0 "OR(levenstein(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,levenstein(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log ratcliffobershelp 6 0.9889867841409692 0.9977777777777778 0.993362831858407 1722.0 1.0 1.0 1.0 1001.0 "OR(ratcliffobershelp(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80,ratcliffobershelp(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.90)|0" PERSON1
log trigrams 6 1.0 0.9977777777777778 0.9988876529477196 3353.0 1.0 1.0 1.0 1.0 "OR(trigrams(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,trigrams(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log exactmatch 6 1.0 0.9488888888888889 0.9737742303306728 1591.0 1.0 0.96 0.9795918367346939 0.0 "exactmatch(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00" PERSON1
best jaccard 6 1.0 0.9977777777777778 0.9988876529477196 1362.0 1.0 1.0 1.0 0.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,jarowinkler 6 0.9846827133479212 1.0 0.9922822491730982 1270.0 1.0 1.0 1.0 501.0 "OR(OR(jarowinkler(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.87,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0,jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00)|0" PERSON1
log jaccard,jaro 6 0.9719222462203023 1.0 0.9857612267250822 2805.0 1.0 1.0 1.0 1.0 "OR(jaro(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.90,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,soundex 6 1.0 0.9977777777777778 0.9988876529477196 30791.0 1.0 1.0 1.0 0.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,mongeelkan 6 1.0 0.9977777777777778 0.9988876529477196 1298.0 1.0 1.0 1.0 7.0 "OR(mongeelkan(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,levenstein 6 1.0 0.9977777777777778 0.9988876529477196 1159.0 1.0 1.0 1.0 0.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,ratcliffobershelp 6 0.989010989010989 1.0 0.994475138121547 1352.0 1.0 1.0 1.0 1001.0 "OR(OR(ratcliffobershelp(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80,ratcliffobershelp(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.90)|0,jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00)|0" PERSON1
log jaccard,trigrams 6 1.0 0.9977777777777778 0.9988876529477196 2125.0 1.0 1.0 1.0 0.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,exactmatch 6 1.0 0.9977777777777778 0.9988876529477196 1292.0 1.0 1.0 1.0 0.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard 7 1.0 0.9977777777777778 0.9988876529477196 1366.0 1.0 1.0 1.0 0.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jarowinkler 7 0.9889867841409692 0.9977777777777778 0.993362831858407 1526.0 1.0 1.0 1.0 1001.0 "OR(jarowinkler(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.87,jarowinkler(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.91)|0" PERSON1
log jaro 7 0.967741935483871 1.0 0.9836065573770492 4622.0 1.0 1.0 1.0 4.0 "OR(jaro(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.90,jaro(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.90)|0" PERSON1
log soundex 7 0.994750656167979 0.8422222222222222 0.9121540312876052 56943.0 1.0 0.88 0.9361702127659575 1.0 "AND(AND(soundex(x.http://www.okkam.org/ontology_person1.owl#surname,y.http://www.okkam.org/ontology_person2.owl#surname)|1.00,soundex(x.http://www.okkam.org/ontology_person1.owl#given_name,y.http://www.okkam.org/ontology_person2.owl#given_name)|1.00)|0,soundex(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00)|0" PERSON1
log mongeelkan 7 1.0 0.96 0.9795918367346939 1637.0 1.0 0.98 0.98989898989899 6.0 "mongeelkan(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80" PERSON1
log levenstein 7 1.0 0.9977777777777778 0.9988876529477196 1360.0 1.0 1.0 1.0 1.0 "OR(levenstein(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,levenstein(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log ratcliffobershelp 7 0.9889867841409692 0.9977777777777778 0.993362831858407 1720.0 1.0 1.0 1.0 1001.0 "OR(ratcliffobershelp(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80,ratcliffobershelp(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.90)|0" PERSON1
log trigrams 7 1.0 0.9977777777777778 0.9988876529477196 4252.0 1.0 1.0 1.0 1.0 "OR(trigrams(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,trigrams(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log exactmatch 7 1.0 0.9466666666666667 0.9726027397260273 1618.0 1.0 0.98 0.98989898989899 0.0 "exactmatch(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00" PERSON1
best jaccard 7 1.0 0.9977777777777778 0.9988876529477196 1366.0 1.0 1.0 1.0 0.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,jarowinkler 7 0.989010989010989 1.0 0.994475138121547 1256.0 1.0 1.0 1.0 501.0 "OR(OR(jarowinkler(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.87,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0,jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00)|0" PERSON1
log jaccard,jaro 7 0.9761388286334056 1.0 0.9879253567508233 2808.0 1.0 1.0 1.0 2.0 "OR(jaro(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.90,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,soundex 7 1.0 0.9977777777777778 0.9988876529477196 30429.0 1.0 1.0 1.0 0.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,mongeelkan 7 1.0 0.9977777777777778 0.9988876529477196 1313.0 1.0 1.0 1.0 7.0 "OR(mongeelkan(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,levenstein 7 1.0 0.9977777777777778 0.9988876529477196 1165.0 1.0 1.0 1.0 0.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,ratcliffobershelp 7 0.989010989010989 1.0 0.994475138121547 1353.0 1.0 1.0 1.0 1001.0 "OR(OR(ratcliffobershelp(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80,ratcliffobershelp(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.90)|0,jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00)|0" PERSON1
log jaccard,trigrams 7 1.0 0.9977777777777778 0.9988876529477196 2144.0 1.0 1.0 1.0 0.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,exactmatch 7 1.0 0.9977777777777778 0.9988876529477196 1307.0 1.0 1.0 1.0 0.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard 8 1.0 0.9977777777777778 0.9988876529477196 1365.0 1.0 1.0 1.0 1.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jarowinkler 8 0.9868421052631579 1.0 0.9933774834437086 1534.0 0.9803921568627451 1.0 0.99009900990099 1011.0 "OR(jarowinkler(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.87,jarowinkler(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.91)|0" PERSON1
log jaro 8 0.975929978118162 0.9911111111111112 0.9834619625137817 5541.0 0.9615384615384616 1.0 0.9803921568627451 2.0 "jaro(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.90" PERSON1
log soundex 8 0.9947643979057592 0.8444444444444444 0.9134615384615385 59325.0 1.0 0.86 0.924731182795699 1.0 "AND(AND(soundex(x.http://www.okkam.org/ontology_person1.owl#surname,y.http://www.okkam.org/ontology_person2.owl#surname)|1.00,soundex(x.http://www.okkam.org/ontology_person1.owl#given_name,y.http://www.okkam.org/ontology_person2.owl#given_name)|1.00)|0,soundex(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00)|0" PERSON1
log mongeelkan 8 1.0 0.96 0.9795918367346939 1712.0 1.0 0.98 0.98989898989899 6.0 "mongeelkan(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80" PERSON1
log levenstein 8 1.0 0.9977777777777778 0.9988876529477196 1702.0 1.0 1.0 1.0 1.0 "OR(levenstein(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,levenstein(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log ratcliffobershelp 8 0.9933774834437086 1.0 0.9966777408637874 1756.0 0.9803921568627451 1.0 0.99009900990099 1006.0 "OR(ratcliffobershelp(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80,ratcliffobershelp(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.90)|0" PERSON1
log trigrams 8 1.0 0.9977777777777778 0.9988876529477196 3732.0 1.0 1.0 1.0 1.0 "OR(trigrams(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,trigrams(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log exactmatch 8 1.0 0.9511111111111111 0.9749430523917996 1570.0 1.0 0.94 0.9690721649484536 0.0 "exactmatch(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00" PERSON1
best jaccard 8 1.0 0.9977777777777778 0.9988876529477196 1365.0 1.0 1.0 1.0 1.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,jarowinkler 8 0.9868421052631579 1.0 0.9933774834437086 1313.0 0.9803921568627451 1.0 0.99009900990099 522.0 "OR(jarowinkler(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.87,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,jaro 8 0.9761388286334056 1.0 0.9879253567508233 3052.0 0.9615384615384616 1.0 0.9803921568627451 2.0 "OR(jaro(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.90,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,soundex 8 1.0 0.9977777777777778 0.9988876529477196 30070.0 1.0 1.0 1.0 1.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,mongeelkan 8 1.0 0.9977777777777778 0.9988876529477196 1284.0 1.0 1.0 1.0 6.0 "OR(mongeelkan(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,levenstein 8 1.0 0.9977777777777778 0.9988876529477196 1161.0 1.0 1.0 1.0 1.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,ratcliffobershelp 8 0.9933774834437086 1.0 0.9966777408637874 1349.0 0.9803921568627451 1.0 0.99009900990099 1001.0 "OR(ratcliffobershelp(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80,ratcliffobershelp(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.90)|0" PERSON1
log jaccard,trigrams 8 1.0 0.9977777777777778 0.9988876529477196 2140.0 1.0 1.0 1.0 1.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,exactmatch 8 1.0 0.9977777777777778 0.9988876529477196 1273.0 1.0 1.0 1.0 1.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard 9 1.0 0.9977777777777778 0.9988876529477196 1376.0 1.0 1.0 1.0 0.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jarowinkler 9 0.9889867841409692 0.9977777777777778 0.993362831858407 1547.0 1.0 1.0 1.0 1002.0 "OR(jarowinkler(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.87,jarowinkler(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.91)|0" PERSON1
log jaro 9 0.9698275862068966 1.0 0.9846827133479212 4801.0 1.0 1.0 1.0 4.0 "OR(jaro(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.90,jaro(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.90)|0" PERSON1
log soundex 9 0.994750656167979 0.8422222222222222 0.9121540312876052 59332.0 1.0 0.88 0.9361702127659575 1.0 "AND(AND(soundex(x.http://www.okkam.org/ontology_person1.owl#surname,y.http://www.okkam.org/ontology_person2.owl#surname)|1.00,soundex(x.http://www.okkam.org/ontology_person1.owl#given_name,y.http://www.okkam.org/ontology_person2.owl#given_name)|1.00)|0,soundex(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00)|0" PERSON1
log mongeelkan 9 1.0 0.9644444444444444 0.9819004524886877 1635.0 1.0 0.94 0.9690721649484536 6.0 "mongeelkan(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80" PERSON1
log levenstein 9 1.0 0.9977777777777778 0.9988876529477196 1375.0 1.0 1.0 1.0 1.0 "OR(levenstein(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,levenstein(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log ratcliffobershelp 9 0.9889867841409692 0.9977777777777778 0.993362831858407 1745.0 1.0 1.0 1.0 1001.0 "OR(ratcliffobershelp(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80,ratcliffobershelp(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.90)|0" PERSON1
log trigrams 9 1.0 0.9977777777777778 0.9988876529477196 4854.0 1.0 1.0 1.0 0.0 "OR(trigrams(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,trigrams(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log exactmatch 9 1.0 0.9511111111111111 0.9749430523917996 1597.0 1.0 0.94 0.9690721649484536 0.0 "exactmatch(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00" PERSON1
best jaccard 9 1.0 0.9977777777777778 0.9988876529477196 1376.0 1.0 1.0 1.0 0.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,jarowinkler 9 0.989010989010989 1.0 0.994475138121547 1258.0 1.0 1.0 1.0 501.0 "OR(OR(jarowinkler(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.87,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0,jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00)|0" PERSON1
log jaccard,jaro 9 0.9761388286334056 1.0 0.9879253567508233 2861.0 1.0 1.0 1.0 2.0 "OR(jaro(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.90,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,soundex 9 1.0 0.9977777777777778 0.9988876529477196 30175.0 1.0 1.0 1.0 0.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,mongeelkan 9 1.0 0.9977777777777778 0.9988876529477196 1309.0 1.0 1.0 1.0 6.0 "OR(mongeelkan(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,levenstein 9 1.0 0.9977777777777778 0.9988876529477196 1166.0 1.0 1.0 1.0 0.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,ratcliffobershelp 9 0.989010989010989 1.0 0.994475138121547 1366.0 1.0 1.0 1.0 1001.0 "OR(OR(ratcliffobershelp(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|0.80,ratcliffobershelp(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|0.90)|0,jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00)|0" PERSON1
log jaccard,trigrams 9 1.0 0.9977777777777778 0.9988876529477196 2134.0 1.0 1.0 1.0 0.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard,exactmatch 9 1.0 0.9977777777777778 0.9988876529477196 1295.0 1.0 1.0 1.0 0.0 "OR(jaccard(x.http://www.okkam.org/ontology_person1.owl#soc_sec_id,y.http://www.okkam.org/ontology_person2.owl#soc_sec_id)|1.00,jaccard(x.http://www.okkam.org/ontology_person1.owl#phone_numer,y.http://www.okkam.org/ontology_person2.owl#phone_numer)|1.00)|0" PERSON1
log jaccard 0 1.0 0.8024691358024691 0.8904109589041096 1602.0 1.0 1.0 1.0 1.0 "jaccard(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.60" RESTAURANTS
log jarowinkler 0 0.9523809523809523 0.9876543209876543 0.9696969696969696 1650.0 1.0 1.0 1.0 1002.0 "OR(jarowinkler(x.http://www.okkam.org/ontology_restaurant1.owl#phone_number,y.http://www.okkam.org/ontology_restaurant2.owl#phone_number)|0.83,jarowinkler(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.87)|0" RESTAURANTS
log jaro 0 0.9512195121951219 0.9629629629629629 0.9570552147239264 1724.0 1.0 0.875 0.9333333333333333 1.0 "jaro(x.http://www.okkam.org/ontology_restaurant1.owl#phone_number,y.http://www.okkam.org/ontology_restaurant2.owl#phone_number)|0.80" RESTAURANTS
log soundex 0 1.0 0.8024691358024691 0.8904109589041096 2409.0 1.0 1.0 1.0 0.0 "soundex(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|1.00" RESTAURANTS
log mongeelkan 0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 2.0 "mongeelkan(x.http://www.okkam.org/ontology_restaurant1.owl#has_address,y.http://www.okkam.org/ontology_restaurant2.owl#has_category)|0.80" RESTAURANTS
log levenstein 0 1.0 0.7283950617283951 0.8428571428571429 1445.0 1.0 1.0 1.0 2.0 "levenstein(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|1.00" RESTAURANTS
log ratcliffobershelp 0 0.963855421686747 0.9876543209876543 0.975609756097561 1651.0 1.0 1.0 1.0 1003.0 "OR(ratcliffobershelp(x.http://www.okkam.org/ontology_restaurant1.owl#phone_number,y.http://www.okkam.org/ontology_restaurant2.owl#phone_number)|0.80,ratcliffobershelp(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.70)|0" RESTAURANTS
log trigrams 0 0.987012987012987 0.9382716049382716 0.9620253164556961 1825.0 1.0 1.0 1.0 1.0 "trigrams(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.60" RESTAURANTS
log exactmatch 0 1.0 0.7283950617283951 0.8428571428571429 1425.0 1.0 1.0 1.0 2.0 "exactmatch(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|1.00" RESTAURANTS
best jaccard 0 1.0 0.8024691358024691 0.8904109589041096 1602.0 1.0 1.0 1.0 1.0 "jaccard(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.60" RESTAURANTS
log jaccard,jarowinkler 0 0.9529411764705882 1.0 0.9759036144578312 882.0 1.0 1.0 1.0 1003.0 "OR(OR(jarowinkler(x.http://www.okkam.org/ontology_restaurant1.owl#phone_number,y.http://www.okkam.org/ontology_restaurant2.owl#phone_number)|0.83,jaccard(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.60)|0,jarowinkler(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.87)|0" RESTAURANTS
log jaccard,jaro 0 0.9523809523809523 0.9876543209876543 0.9696969696969696 1043.0 1.0 1.0 1.0 1.0 "OR(jaro(x.http://www.okkam.org/ontology_restaurant1.owl#phone_number,y.http://www.okkam.org/ontology_restaurant2.owl#phone_number)|0.80,jaccard(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.60)|0" RESTAURANTS
log jaccard,soundex 0 1.0 0.8518518518518519 0.92 1267.0 1.0 1.0 1.0 1.0 "OR(jaccard(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.60,soundex(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|1.00)|0" RESTAURANTS
log jaccard,mongeelkan 0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 "mongeelkan(x.http://www.okkam.org/ontology_restaurant1.owl#has_address,y.http://www.okkam.org/ontology_restaurant2.owl#has_category)|0.80" RESTAURANTS
log jaccard,levenstein 0 1.0 0.8024691358024691 0.8904109589041096 818.0 1.0 1.0 1.0 1.0 "jaccard(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.60" RESTAURANTS
log jaccard,ratcliffobershelp 0 0.9642857142857143 1.0 0.9818181818181818 922.0 1.0 1.0 1.0 1003.0 "OR(OR(ratcliffobershelp(x.http://www.okkam.org/ontology_restaurant1.owl#phone_number,y.http://www.okkam.org/ontology_restaurant2.owl#phone_number)|0.80,jaccard(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.60)|0,ratcliffobershelp(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.70)|0" RESTAURANTS
log jaccard,trigrams 0 0.987012987012987 0.9382716049382716 0.9620253164556961 1001.0 1.0 1.0 1.0 0.0 "trigrams(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.60" RESTAURANTS
log jaccard,exactmatch 0 1.0 0.8024691358024691 0.8904109589041096 813.0 1.0 1.0 1.0 1.0 "jaccard(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.60" RESTAURANTS
log jaccard 1 1.0 0.8395061728395061 0.912751677852349 1494.0 1.0 0.625 0.7692307692307693 0.0 "jaccard(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.60" RESTAURANTS
log jarowinkler 1 0.9523809523809523 0.9876543209876543 0.9696969696969696 1549.0 1.0 1.0 1.0 1003.0 "OR(jarowinkler(x.http://www.okkam.org/ontology_restaurant1.owl#phone_number,y.http://www.okkam.org/ontology_restaurant2.owl#phone_number)|0.83,jarowinkler(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.87)|0" RESTAURANTS
log jaro 1 0.9310344827586207 1.0 0.9642857142857143 1726.0 1.0 1.0 1.0 1.0 "AND(OR(jaro(x.http://www.okkam.org/ontology_restaurant1.owl#phone_number,y.http://www.okkam.org/ontology_restaurant2.owl#phone_number)|0.80,jaro(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.80)|0,jaro(x.http://www.okkam.org/ontology_restaurant1.owl#has_address,y.http://www.okkam.org/ontology_restaurant2.owl#has_category)|0.90)|0" RESTAURANTS
log soundex 1 1.0 0.8271604938271605 0.9054054054054054 2442.0 1.0 0.75 0.8571428571428571 0.0 "soundex(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|1.00" RESTAURANTS
log mongeelkan 1 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 "mongeelkan(x.http://www.okkam.org/ontology_restaurant1.owl#has_address,y.http://www.okkam.org/ontology_restaurant2.owl#has_category)|0.80" RESTAURANTS
log levenstein 1 1.0 0.7654320987654321 0.8671328671328672 1432.0 1.0 0.625 0.7692307692307693 1.0 "levenstein(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|1.00" RESTAURANTS
log ratcliffobershelp 1 0.963855421686747 0.9876543209876543 0.975609756097561 1642.0 1.0 1.0 1.0 1002.0 "OR(ratcliffobershelp(x.http://www.okkam.org/ontology_restaurant1.owl#phone_number,y.http://www.okkam.org/ontology_restaurant2.owl#phone_number)|0.80,ratcliffobershelp(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.70)|0" RESTAURANTS
log trigrams 1 0.9873417721518988 0.9629629629629629 0.975 1823.0 1.0 0.75 0.8571428571428571 0.0 "trigrams(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.60" RESTAURANTS
log exactmatch 1 1.0 0.7654320987654321 0.8671328671328672 1428.0 1.0 0.625 0.7692307692307693 1.0 "exactmatch(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|1.00" RESTAURANTS
best jarowinkler 1 0.9523809523809523 0.9876543209876543 0.9696969696969696 1549.0 1.0 1.0 1.0 1003.0 "OR(jarowinkler(x.http://www.okkam.org/ontology_restaurant1.owl#phone_number,y.http://www.okkam.org/ontology_restaurant2.owl#phone_number)|0.83,jarowinkler(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.87)|0" RESTAURANTS
log jarowinkler,jaccard 1 0.9529411764705882 1.0 0.9759036144578312 994.0 1.0 1.0 1.0 1002.0 "OR(OR(jarowinkler(x.http://www.okkam.org/ontology_restaurant1.owl#phone_number,y.http://www.okkam.org/ontology_restaurant2.owl#phone_number)|0.83,jaccard(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.60)|0,jarowinkler(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.87)|0" RESTAURANTS
log jarowinkler,jaro 1 0.9523809523809523 0.9876543209876543 0.9696969696969696 1006.0 1.0 1.0 1.0 1003.0 "OR(jarowinkler(x.http://www.okkam.org/ontology_restaurant1.owl#phone_number,y.http://www.okkam.org/ontology_restaurant2.owl#phone_number)|0.83,jarowinkler(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.87)|0" RESTAURANTS
log jarowinkler,soundex 1 0.9642857142857143 1.0 0.9818181818181818 1333.0 1.0 1.0 1.0 501.0 "OR(jarowinkler(x.http://www.okkam.org/ontology_restaurant1.owl#phone_number,y.http://www.okkam.org/ontology_restaurant2.owl#phone_number)|0.83,soundex(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|1.00)|0" RESTAURANTS
log jarowinkler,mongeelkan 1 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 "mongeelkan(x.http://www.okkam.org/ontology_restaurant1.owl#has_address,y.http://www.okkam.org/ontology_restaurant2.owl#has_category)|0.80" RESTAURANTS
log jarowinkler,levenstein 1 0.9523809523809523 0.9876543209876543 0.9696969696969696 885.0 1.0 1.0 1.0 1003.0 "OR(jarowinkler(x.http://www.okkam.org/ontology_restaurant1.owl#phone_number,y.http://www.okkam.org/ontology_restaurant2.owl#phone_number)|0.83,jarowinkler(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.87)|0" RESTAURANTS
log jarowinkler,ratcliffobershelp 1 0.963855421686747 0.9876543209876543 0.975609756097561 1050.0 1.0 1.0 1.0 1002.0 "OR(ratcliffobershelp(x.http://www.okkam.org/ontology_restaurant1.owl#phone_number,y.http://www.okkam.org/ontology_restaurant2.owl#phone_number)|0.80,jarowinkler(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.87)|0" RESTAURANTS
log jarowinkler,trigrams 1 0.9875 0.9753086419753086 0.9813664596273292 1059.0 1.0 0.875 0.9333333333333333 502.0 "OR(trigrams(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.60,jarowinkler(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.87)|0" RESTAURANTS
log jarowinkler,exactmatch 1 0.9523809523809523 0.9876543209876543 0.9696969696969696 884.0 1.0 1.0 1.0 1003.0 "OR(jarowinkler(x.http://www.okkam.org/ontology_restaurant1.owl#phone_number,y.http://www.okkam.org/ontology_restaurant2.owl#phone_number)|0.83,jarowinkler(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.87)|0" RESTAURANTS
log jaccard 2 1.0 0.8048780487804879 0.8918918918918919 1432.0 1.0 1.0 1.0 0.0 "jaccard(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.60" RESTAURANTS
log jarowinkler 2 0.9529411764705882 0.9878048780487805 0.9700598802395209 1605.0 1.0 1.0 1.0 1502.0 "AND(OR(jarowinkler(x.http://www.okkam.org/ontology_restaurant1.owl#phone_number,y.http://www.okkam.org/ontology_restaurant2.owl#phone_number)|0.83,jarowinkler(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.87)|0,jarowinkler(x.http://www.okkam.org/ontology_restaurant1.owl#has_address,y.http://www.okkam.org/ontology_restaurant2.owl#has_category)|0.94)|0" RESTAURANTS
log jaro 2 0.9318181818181818 1.0 0.9647058823529412 1732.0 1.0 1.0 1.0 1.0 "AND(OR(jaro(x.http://www.okkam.org/ontology_restaurant1.owl#phone_number,y.http://www.okkam.org/ontology_restaurant2.owl#phone_number)|0.80,jaro(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.80)|0,jaro(x.http://www.okkam.org/ontology_restaurant1.owl#has_address,y.http://www.okkam.org/ontology_restaurant2.owl#has_category)|0.90)|0" RESTAURANTS
log soundex 2 1.0 0.8048780487804879 0.8918918918918919 2427.0 1.0 1.0 1.0 1.0 "soundex(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|1.00" RESTAURANTS
log mongeelkan 2 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 "mongeelkan(x.http://www.okkam.org/ontology_restaurant1.owl#has_address,y.http://www.okkam.org/ontology_restaurant2.owl#has_category)|0.80" RESTAURANTS
log levenstein 2 1.0 0.7317073170731707 0.8450704225352113 1452.0 1.0 1.0 1.0 0.0 "levenstein(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|1.00" RESTAURANTS
log ratcliffobershelp 2 0.975 0.9512195121951219 0.9629629629629629 1678.0 1.0 1.0 1.0 500.0 "ratcliffobershelp(x.http://www.okkam.org/ontology_restaurant1.owl#phone_number,y.http://www.okkam.org/ontology_restaurant2.owl#phone_number)|0.80" RESTAURANTS
log trigrams 2 0.9871794871794872 0.9390243902439024 0.9625 1832.0 1.0 1.0 1.0 1.0 "trigrams(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.60" RESTAURANTS
log exactmatch 2 1.0 0.7317073170731707 0.8450704225352113 1425.0 1.0 1.0 1.0 1.0 "exactmatch(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|1.00" RESTAURANTS
best jaccard 2 1.0 0.8048780487804879 0.8918918918918919 1432.0 1.0 1.0 1.0 0.0 "jaccard(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.60" RESTAURANTS
log jaccard,jarowinkler 2 0.9642857142857143 0.9878048780487805 0.9759036144578312 886.0 1.0 1.0 1.0 501.0 "OR(jarowinkler(x.http://www.okkam.org/ontology_restaurant1.owl#phone_number,y.http://www.okkam.org/ontology_restaurant2.owl#phone_number)|0.83,jaccard(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.60)|0" RESTAURANTS
log jaccard,jaro 2 0.9529411764705882 0.9878048780487805 0.9700598802395209 961.0 1.0 1.0 1.0 0.0 "OR(jaro(x.http://www.okkam.org/ontology_restaurant1.owl#phone_number,y.http://www.okkam.org/ontology_restaurant2.owl#phone_number)|0.80,jaccard(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.60)|0" RESTAURANTS
log jaccard,soundex 2 1.0 0.8536585365853658 0.9210526315789475 1369.0 1.0 1.0 1.0 0.0 "OR(jaccard(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.60,soundex(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|1.00)|0" RESTAURANTS
log jaccard,mongeelkan 2 1.0 1.0 1.0 0.0 1.0 1.0 1.0 1.0 "mongeelkan(x.http://www.okkam.org/ontology_restaurant1.owl#has_address,y.http://www.okkam.org/ontology_restaurant2.owl#has_category)|0.80" RESTAURANTS
log jaccard,levenstein 2 1.0 0.8048780487804879 0.8918918918918919 817.0 1.0 1.0 1.0 0.0 "jaccard(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.60" RESTAURANTS
log jaccard,ratcliffobershelp 2 0.9759036144578314 0.9878048780487805 0.9818181818181818 930.0 1.0 1.0 1.0 501.0 "OR(ratcliffobershelp(x.http://www.okkam.org/ontology_restaurant1.owl#phone_number,y.http://www.okkam.org/ontology_restaurant2.owl#phone_number)|0.80,jaccard(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.60)|0" RESTAURANTS
log jaccard,trigrams 2 0.9871794871794872 0.9390243902439024 0.9625 1015.0 1.0 1.0 1.0 1.0 "trigrams(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.60" RESTAURANTS
log jaccard,exactmatch 2 1.0 0.8048780487804879 0.8918918918918919 819.0 1.0 1.0 1.0 0.0 "jaccard(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.60" RESTAURANTS
log jaccard 3 1.0 0.8024691358024691 0.8904109589041096 1449.0 1.0 1.0 1.0 0.0 "jaccard(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.60" RESTAURANTS
log jarowinkler 3 0.9523809523809523 0.9876543209876543 0.9696969696969696 1546.0 1.0 1.0 1.0 1502.0 "AND(OR(jarowinkler(x.http://www.okkam.org/ontology_restaurant1.owl#phone_number,y.http://www.okkam.org/ontology_restaurant2.owl#phone_number)|0.83,jarowinkler(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.87)|0,jarowinkler(x.http://www.okkam.org/ontology_restaurant1.owl#has_address,y.http://www.okkam.org/ontology_restaurant2.owl#has_category)|0.94)|0" RESTAURANTS
log jaro 3 0.9506172839506173 0.9506172839506173 0.9506172839506173 1728.0 1.0 1.0 1.0 0.0 "jaro(x.http://www.okkam.org/ontology_restaurant1.owl#phone_number,y.http://www.okkam.org/ontology_restaurant2.owl#phone_number)|0.80" RESTAURANTS
log soundex 3 1.0 0.8024691358024691 0.8904109589041096 2427.0 1.0 1.0 1.0 0.0 "soundex(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|1.00" RESTAURANTS
log mongeelkan 3 1.0 1.0 1.0 0.0 1.0 1.0 1.0 1.0 "mongeelkan(x.http://www.okkam.org/ontology_restaurant1.owl#has_address,y.http://www.okkam.org/ontology_restaurant2.owl#has_category)|0.80" RESTAURANTS
log levenstein 3 1.0 0.7283950617283951 0.8428571428571429 1426.0 1.0 1.0 1.0 0.0 "levenstein(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|1.00" RESTAURANTS
log ratcliffobershelp 3 0.9523809523809523 0.9876543209876543 0.9696969696969696 1637.0 1.0 1.0 1.0 1002.0 "OR(ratcliffobershelp(x.http://www.okkam.org/ontology_restaurant1.owl#phone_number,y.http://www.okkam.org/ontology_restaurant2.owl#phone_number)|0.80,ratcliffobershelp(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.70)|0" RESTAURANTS
log trigrams 3 0.987012987012987 0.9382716049382716 0.9620253164556961 1824.0 1.0 1.0 1.0 1.0 "trigrams(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.60" RESTAURANTS
log exactmatch 3 1.0 0.7283950617283951 0.8428571428571429 1438.0 1.0 1.0 1.0 0.0 "exactmatch(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|1.00" RESTAURANTS
best jaccard 3 1.0 0.8024691358024691 0.8904109589041096 1449.0 1.0 1.0 1.0 0.0 "jaccard(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.60" RESTAURANTS
log jaccard,jarowinkler 3 0.963855421686747 0.9876543209876543 0.975609756097561 1010.0 1.0 1.0 1.0 500.0 "OR(jarowinkler(x.http://www.okkam.org/ontology_restaurant1.owl#phone_number,y.http://www.okkam.org/ontology_restaurant2.owl#phone_number)|0.83,jaccard(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.60)|0" RESTAURANTS
log jaccard,jaro 3 0.9523809523809523 0.9876543209876543 0.9696969696969696 959.0 1.0 1.0 1.0 1.0 "OR(jaro(x.http://www.okkam.org/ontology_restaurant1.owl#phone_number,y.http://www.okkam.org/ontology_restaurant2.owl#phone_number)|0.80,jaccard(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.60)|0" RESTAURANTS
log jaccard,soundex 3 1.0 0.8518518518518519 0.92 1267.0 1.0 1.0 1.0 1.0 "OR(jaccard(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.60,soundex(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|1.00)|0" RESTAURANTS
log jaccard,mongeelkan 3 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 "mongeelkan(x.http://www.okkam.org/ontology_restaurant1.owl#has_address,y.http://www.okkam.org/ontology_restaurant2.owl#has_category)|0.80" RESTAURANTS
log jaccard,levenstein 3 1.0 0.8024691358024691 0.8904109589041096 818.0 1.0 1.0 1.0 0.0 "jaccard(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.60" RESTAURANTS
log jaccard,ratcliffobershelp 3 0.975609756097561 0.9876543209876543 0.9815950920245398 921.0 1.0 1.0 1.0 501.0 "OR(ratcliffobershelp(x.http://www.okkam.org/ontology_restaurant1.owl#phone_number,y.http://www.okkam.org/ontology_restaurant2.owl#phone_number)|0.80,jaccard(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.60)|0" RESTAURANTS
log jaccard,trigrams 3 0.987012987012987 0.9382716049382716 0.9620253164556961 1016.0 1.0 1.0 1.0 0.0 "trigrams(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.60" RESTAURANTS
log jaccard,exactmatch 3 1.0 0.8024691358024691 0.8904109589041096 817.0 1.0 1.0 1.0 0.0 "jaccard(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.60" RESTAURANTS
log jaccard 4 1.0 0.8395061728395061 0.912751677852349 1435.0 1.0 0.625 0.7692307692307693 0.0 "jaccard(x.http://www.okkam.org/ontology_restaurant1.owl#name,y.http://www.okkam.org/ontology_restaurant2.owl#name)|0.60" RESTAURANTS