-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGRID SEARCH RESULTS
3489 lines (3458 loc) · 702 KB
/
GRID SEARCH RESULTS
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
GRID SEARCH RESULTS
----------------------------
Tuned tuned_parameters : [{'method': ['shortest_path'], 'scale': [False, True], 'gamma': [0.125, 0.25, 0.5, 1, 2, 4, 8, 16], 'normalize_distance': [True], 'alpha': [0.667], 'C': [0.001, 0.01, 0.1, 1, 3.1622776601683795, 5.011872336272722, 7.943282347242816, 10, 19.952623149688797, 25.118864315095795, 31.622776601683793, 100, 316.22776601683796, 501.18723362727246], 'epsilon': [0.07196856730011521], 'features_metric': ['dirac']}]
CV splits : 10
ALL TIME : --- 1626.489224910736 seconds ---
Best params: {'method': 'shortest_path', 'scale': False, 'C': 100, 'gamma': 1, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}
------------GRID----------------
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': False, 'C': 0.001, 'gamma': 2, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.752 (+/-0.214) for "{'method': 'shortest_path', 'scale': True, 'C': 7.943282347242816, 'gamma': 0.5, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.795 (+/-0.185) for "{'method': 'shortest_path', 'scale': False, 'C': 10, 'gamma': 0.25, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.688 (+/-0.164) for "{'method': 'shortest_path', 'scale': True, 'C': 100, 'gamma': 2, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': True, 'C': 0.001, 'gamma': 0.5, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': True, 'C': 0.001, 'gamma': 0.125, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.848 (+/-0.187) for "{'method': 'shortest_path', 'scale': False, 'C': 7.943282347242816, 'gamma': 8, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.698 (+/-0.210) for "{'method': 'shortest_path', 'scale': True, 'C': 0.1, 'gamma': 0.125, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.783 (+/-0.203) for "{'method': 'shortest_path', 'scale': False, 'C': 501.18723362727246, 'gamma': 4, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.783 (+/-0.188) for "{'method': 'shortest_path', 'scale': False, 'C': 1, 'gamma': 2, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.698 (+/-0.210) for "{'method': 'shortest_path', 'scale': True, 'C': 0.1, 'gamma': 2, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.721 (+/-0.183) for "{'method': 'shortest_path', 'scale': True, 'C': 3.1622776601683795, 'gamma': 0.5, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.732 (+/-0.201) for "{'method': 'shortest_path', 'scale': True, 'C': 3.1622776601683795, 'gamma': 1, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': False, 'C': 0.1, 'gamma': 1, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.783 (+/-0.188) for "{'method': 'shortest_path', 'scale': False, 'C': 7.943282347242816, 'gamma': 0.25, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.794 (+/-0.188) for "{'method': 'shortest_path', 'scale': False, 'C': 501.18723362727246, 'gamma': 8, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.661 (+/-0.269) for "{'method': 'shortest_path', 'scale': True, 'C': 316.22776601683796, 'gamma': 0.125, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.754 (+/-0.179) for "{'method': 'shortest_path', 'scale': True, 'C': 3.1622776601683795, 'gamma': 2, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.698 (+/-0.210) for "{'method': 'shortest_path', 'scale': True, 'C': 0.1, 'gamma': 0.5, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.676 (+/-0.137) for "{'method': 'shortest_path', 'scale': True, 'C': 316.22776601683796, 'gamma': 8, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.821 (+/-0.197) for "{'method': 'shortest_path', 'scale': False, 'C': 31.622776601683793, 'gamma': 0.25, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': False, 'C': 1, 'gamma': 0.125, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.704 (+/-0.213) for "{'method': 'shortest_path', 'scale': True, 'C': 31.622776601683793, 'gamma': 0.125, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': False, 'C': 0.01, 'gamma': 0.125, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.831 (+/-0.165) for "{'method': 'shortest_path', 'scale': False, 'C': 7.943282347242816, 'gamma': 4, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.864 (+/-0.182) for "{'method': 'shortest_path', 'scale': False, 'C': 10, 'gamma': 8, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.721 (+/-0.190) for "{'method': 'shortest_path', 'scale': True, 'C': 5.011872336272722, 'gamma': 0.25, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.714 (+/-0.233) for "{'method': 'shortest_path', 'scale': True, 'C': 25.118864315095795, 'gamma': 1, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.795 (+/-0.185) for "{'method': 'shortest_path', 'scale': False, 'C': 5.011872336272722, 'gamma': 0.5, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.842 (+/-0.172) for "{'method': 'shortest_path', 'scale': False, 'C': 25.118864315095795, 'gamma': 2, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': False, 'C': 0.1, 'gamma': 16, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.869 (+/-0.106) for "{'method': 'shortest_path', 'scale': False, 'C': 501.18723362727246, 'gamma': 0.25, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.737 (+/-0.254) for "{'method': 'shortest_path', 'scale': True, 'C': 10, 'gamma': 0.125, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.746 (+/-0.202) for "{'method': 'shortest_path', 'scale': True, 'C': 25.118864315095795, 'gamma': 2, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.794 (+/-0.181) for "{'method': 'shortest_path', 'scale': False, 'C': 316.22776601683796, 'gamma': 4, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.831 (+/-0.210) for "{'method': 'shortest_path', 'scale': False, 'C': 1, 'gamma': 16, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.736 (+/-0.212) for "{'method': 'shortest_path', 'scale': True, 'C': 7.943282347242816, 'gamma': 0.125, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': True, 'C': 0.01, 'gamma': 1, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.661 (+/-0.169) for "{'method': 'shortest_path', 'scale': True, 'C': 1, 'gamma': 0.125, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.768 (+/-0.119) for "{'method': 'shortest_path', 'scale': True, 'C': 3.1622776601683795, 'gamma': 4, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.794 (+/-0.172) for "{'method': 'shortest_path', 'scale': False, 'C': 25.118864315095795, 'gamma': 0.125, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.809 (+/-0.192) for "{'method': 'shortest_path', 'scale': False, 'C': 1, 'gamma': 4, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.721 (+/-0.193) for "{'method': 'shortest_path', 'scale': True, 'C': 31.622776601683793, 'gamma': 2, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.843 (+/-0.189) for "{'method': 'shortest_path', 'scale': False, 'C': 25.118864315095795, 'gamma': 16, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.682 (+/-0.168) for "{'method': 'shortest_path', 'scale': True, 'C': 1, 'gamma': 2, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.874 (+/-0.135) for "{'method': 'shortest_path', 'scale': False, 'C': 316.22776601683796, 'gamma': 0.5, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.874 (+/-0.160) for "{'method': 'shortest_path', 'scale': False, 'C': 31.622776601683793, 'gamma': 4, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.836 (+/-0.203) for "{'method': 'shortest_path', 'scale': False, 'C': 19.952623149688797, 'gamma': 1, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.698 (+/-0.210) for "{'method': 'shortest_path', 'scale': True, 'C': 0.1, 'gamma': 1, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.809 (+/-0.180) for "{'method': 'shortest_path', 'scale': False, 'C': 7.943282347242816, 'gamma': 0.5, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.826 (+/-0.195) for "{'method': 'shortest_path', 'scale': False, 'C': 19.952623149688797, 'gamma': 0.5, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.836 (+/-0.183) for "{'method': 'shortest_path', 'scale': False, 'C': 31.622776601683793, 'gamma': 0.5, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.864 (+/-0.137) for "{'method': 'shortest_path', 'scale': False, 'C': 19.952623149688797, 'gamma': 4, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.822 (+/-0.159) for "{'method': 'shortest_path', 'scale': False, 'C': 501.18723362727246, 'gamma': 1, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': False, 'C': 0.01, 'gamma': 0.5, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.713 (+/-0.183) for "{'method': 'shortest_path', 'scale': True, 'C': 0.1, 'gamma': 8, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.809 (+/-0.199) for "{'method': 'shortest_path', 'scale': False, 'C': 10, 'gamma': 1, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': True, 'C': 0.001, 'gamma': 0.25, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.821 (+/-0.203) for "{'method': 'shortest_path', 'scale': False, 'C': 25.118864315095795, 'gamma': 0.25, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.853 (+/-0.161) for "{'method': 'shortest_path', 'scale': False, 'C': 10, 'gamma': 4, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.842 (+/-0.132) for "{'method': 'shortest_path', 'scale': False, 'C': 501.18723362727246, 'gamma': 0.125, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': False, 'C': 0.01, 'gamma': 0.25, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.682 (+/-0.175) for "{'method': 'shortest_path', 'scale': True, 'C': 100, 'gamma': 8, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.730 (+/-0.105) for "{'method': 'shortest_path', 'scale': True, 'C': 7.943282347242816, 'gamma': 16, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.639 (+/-0.123) for "{'method': 'shortest_path', 'scale': True, 'C': 501.18723362727246, 'gamma': 16, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.831 (+/-0.208) for "{'method': 'shortest_path', 'scale': False, 'C': 100, 'gamma': 16, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': False, 'C': 0.01, 'gamma': 4, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.707 (+/-0.152) for "{'method': 'shortest_path', 'scale': True, 'C': 31.622776601683793, 'gamma': 8, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.831 (+/-0.176) for "{'method': 'shortest_path', 'scale': False, 'C': 100, 'gamma': 8, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.758 (+/-0.165) for "{'method': 'shortest_path', 'scale': True, 'C': 3.1622776601683795, 'gamma': 8, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': False, 'C': 0.1, 'gamma': 0.25, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': False, 'C': 0.01, 'gamma': 8, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.697 (+/-0.209) for "{'method': 'shortest_path', 'scale': True, 'C': 501.18723362727246, 'gamma': 4, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.869 (+/-0.117) for "{'method': 'shortest_path', 'scale': False, 'C': 316.22776601683796, 'gamma': 0.25, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': False, 'C': 0.01, 'gamma': 1, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.731 (+/-0.256) for "{'method': 'shortest_path', 'scale': True, 'C': 25.118864315095795, 'gamma': 0.5, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.741 (+/-0.144) for "{'method': 'shortest_path', 'scale': True, 'C': 25.118864315095795, 'gamma': 16, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': False, 'C': 0.001, 'gamma': 4, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': False, 'C': 0.001, 'gamma': 1, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.826 (+/-0.188) for "{'method': 'shortest_path', 'scale': False, 'C': 7.943282347242816, 'gamma': 2, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.651 (+/-0.065) for "{'method': 'shortest_path', 'scale': False, 'C': 1, 'gamma': 0.5, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.838 (+/-0.202) for "{'method': 'shortest_path', 'scale': False, 'C': 10, 'gamma': 16, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.752 (+/-0.270) for "{'method': 'shortest_path', 'scale': True, 'C': 10, 'gamma': 0.25, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': False, 'C': 0.1, 'gamma': 0.125, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': True, 'C': 0.01, 'gamma': 2, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.719 (+/-0.183) for "{'method': 'shortest_path', 'scale': True, 'C': 100, 'gamma': 4, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.665 (+/-0.188) for "{'method': 'shortest_path', 'scale': True, 'C': 1, 'gamma': 1, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.697 (+/-0.193) for "{'method': 'shortest_path', 'scale': True, 'C': 0.1, 'gamma': 4, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.708 (+/-0.305) for "{'method': 'shortest_path', 'scale': True, 'C': 501.18723362727246, 'gamma': 0.25, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.768 (+/-0.172) for "{'method': 'shortest_path', 'scale': False, 'C': 5.011872336272722, 'gamma': 0.25, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.853 (+/-0.161) for "{'method': 'shortest_path', 'scale': False, 'C': 19.952623149688797, 'gamma': 2, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': True, 'C': 0.01, 'gamma': 0.25, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.768 (+/-0.175) for "{'method': 'shortest_path', 'scale': False, 'C': 7.943282347242816, 'gamma': 0.125, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': True, 'C': 0.001, 'gamma': 2, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.698 (+/-0.210) for "{'method': 'shortest_path', 'scale': True, 'C': 0.1, 'gamma': 0.25, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.836 (+/-0.203) for "{'method': 'shortest_path', 'scale': False, 'C': 5.011872336272722, 'gamma': 4, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.711 (+/-0.239) for "{'method': 'shortest_path', 'scale': True, 'C': 100, 'gamma': 1, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.742 (+/-0.142) for "{'method': 'shortest_path', 'scale': False, 'C': 3.1622776601683795, 'gamma': 0.25, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.708 (+/-0.194) for "{'method': 'shortest_path', 'scale': True, 'C': 316.22776601683796, 'gamma': 4, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': True, 'C': 0.01, 'gamma': 0.5, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.821 (+/-0.209) for "{'method': 'shortest_path', 'scale': False, 'C': 3.1622776601683795, 'gamma': 4, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.753 (+/-0.187) for "{'method': 'shortest_path', 'scale': True, 'C': 5.011872336272722, 'gamma': 4, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.682 (+/-0.308) for "{'method': 'shortest_path', 'scale': True, 'C': 501.18723362727246, 'gamma': 1, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': True, 'C': 0.01, 'gamma': 16, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.725 (+/-0.114) for "{'method': 'shortest_path', 'scale': True, 'C': 10, 'gamma': 16, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.870 (+/-0.125) for "{'method': 'shortest_path', 'scale': False, 'C': 25.118864315095795, 'gamma': 4, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.722 (+/-0.252) for "{'method': 'shortest_path', 'scale': True, 'C': 31.622776601683793, 'gamma': 4, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.837 (+/-0.180) for "{'method': 'shortest_path', 'scale': False, 'C': 19.952623149688797, 'gamma': 16, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.726 (+/-0.189) for "{'method': 'shortest_path', 'scale': True, 'C': 0.1, 'gamma': 16, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.788 (+/-0.169) for "{'method': 'shortest_path', 'scale': False, 'C': 501.18723362727246, 'gamma': 2, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.848 (+/-0.180) for "{'method': 'shortest_path', 'scale': False, 'C': 316.22776601683796, 'gamma': 1, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.843 (+/-0.195) for "{'method': 'shortest_path', 'scale': False, 'C': 7.943282347242816, 'gamma': 16, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.806 (+/-0.166) for "{'method': 'shortest_path', 'scale': False, 'C': 3.1622776601683795, 'gamma': 1, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': True, 'C': 0.001, 'gamma': 16, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': False, 'C': 0.001, 'gamma': 0.5, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.852 (+/-0.169) for "{'method': 'shortest_path', 'scale': False, 'C': 25.118864315095795, 'gamma': 1, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.853 (+/-0.175) for "{'method': 'shortest_path', 'scale': False, 'C': 19.952623149688797, 'gamma': 8, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.762 (+/-0.183) for "{'method': 'shortest_path', 'scale': True, 'C': 7.943282347242816, 'gamma': 4, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.826 (+/-0.201) for "{'method': 'shortest_path', 'scale': False, 'C': 7.943282347242816, 'gamma': 1, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.758 (+/-0.249) for "{'method': 'shortest_path', 'scale': True, 'C': 19.952623149688797, 'gamma': 1, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': False, 'C': 0.1, 'gamma': 2, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.848 (+/-0.197) for "{'method': 'shortest_path', 'scale': False, 'C': 3.1622776601683795, 'gamma': 16, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.795 (+/-0.185) for "{'method': 'shortest_path', 'scale': False, 'C': 19.952623149688797, 'gamma': 0.125, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.682 (+/-0.244) for "{'method': 'shortest_path', 'scale': True, 'C': 19.952623149688797, 'gamma': 0.125, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.826 (+/-0.202) for "{'method': 'shortest_path', 'scale': False, 'C': 100, 'gamma': 0.125, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.809 (+/-0.180) for "{'method': 'shortest_path', 'scale': False, 'C': 5.011872336272722, 'gamma': 1, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.726 (+/-0.180) for "{'method': 'shortest_path', 'scale': True, 'C': 3.1622776601683795, 'gamma': 0.125, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.672 (+/-0.091) for "{'method': 'shortest_path', 'scale': True, 'C': 501.18723362727246, 'gamma': 8, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': False, 'C': 0.001, 'gamma': 0.125, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.793 (+/-0.164) for "{'method': 'shortest_path', 'scale': False, 'C': 316.22776601683796, 'gamma': 8, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.758 (+/-0.241) for "{'method': 'shortest_path', 'scale': True, 'C': 10, 'gamma': 0.5, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': False, 'C': 0.1, 'gamma': 8, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.721 (+/-0.189) for "{'method': 'shortest_path', 'scale': True, 'C': 31.622776601683793, 'gamma': 0.25, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': True, 'C': 0.01, 'gamma': 4, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.656 (+/-0.143) for "{'method': 'shortest_path', 'scale': True, 'C': 100, 'gamma': 16, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.752 (+/-0.169) for "{'method': 'shortest_path', 'scale': True, 'C': 5.011872336272722, 'gamma': 2, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': False, 'C': 0.1, 'gamma': 0.5, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': False, 'C': 0.01, 'gamma': 16, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.768 (+/-0.175) for "{'method': 'shortest_path', 'scale': False, 'C': 1, 'gamma': 1, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.842 (+/-0.132) for "{'method': 'shortest_path', 'scale': False, 'C': 100, 'gamma': 0.5, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.853 (+/-0.145) for "{'method': 'shortest_path', 'scale': False, 'C': 31.622776601683793, 'gamma': 2, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.698 (+/-0.269) for "{'method': 'shortest_path', 'scale': True, 'C': 19.952623149688797, 'gamma': 0.25, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.683 (+/-0.122) for "{'method': 'shortest_path', 'scale': False, 'C': 5.011872336272722, 'gamma': 0.125, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.695 (+/-0.231) for "{'method': 'shortest_path', 'scale': True, 'C': 31.622776601683793, 'gamma': 0.5, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.842 (+/-0.182) for "{'method': 'shortest_path', 'scale': False, 'C': 31.622776601683793, 'gamma': 8, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': True, 'C': 0.001, 'gamma': 4, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.743 (+/-0.141) for "{'method': 'shortest_path', 'scale': True, 'C': 3.1622776601683795, 'gamma': 16, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.726 (+/-0.234) for "{'method': 'shortest_path', 'scale': True, 'C': 10, 'gamma': 2, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.761 (+/-0.173) for "{'method': 'shortest_path', 'scale': True, 'C': 10, 'gamma': 8, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.858 (+/-0.137) for "{'method': 'shortest_path', 'scale': False, 'C': 316.22776601683796, 'gamma': 0.125, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.715 (+/-0.165) for "{'method': 'shortest_path', 'scale': True, 'C': 1, 'gamma': 16, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.814 (+/-0.176) for "{'method': 'shortest_path', 'scale': False, 'C': 316.22776601683796, 'gamma': 16, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.639 (+/-0.123) for "{'method': 'shortest_path', 'scale': True, 'C': 316.22776601683796, 'gamma': 16, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.836 (+/-0.203) for "{'method': 'shortest_path', 'scale': False, 'C': 10, 'gamma': 2, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.809 (+/-0.180) for "{'method': 'shortest_path', 'scale': False, 'C': 19.952623149688797, 'gamma': 0.25, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.842 (+/-0.205) for "{'method': 'shortest_path', 'scale': False, 'C': 3.1622776601683795, 'gamma': 8, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.713 (+/-0.150) for "{'method': 'shortest_path', 'scale': True, 'C': 25.118864315095795, 'gamma': 8, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.708 (+/-0.325) for "{'method': 'shortest_path', 'scale': True, 'C': 501.18723362727246, 'gamma': 0.5, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.741 (+/-0.231) for "{'method': 'shortest_path', 'scale': True, 'C': 19.952623149688797, 'gamma': 2, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.715 (+/-0.278) for "{'method': 'shortest_path', 'scale': True, 'C': 100, 'gamma': 0.25, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.730 (+/-0.130) for "{'method': 'shortest_path', 'scale': True, 'C': 5.011872336272722, 'gamma': 16, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.726 (+/-0.180) for "{'method': 'shortest_path', 'scale': True, 'C': 5.011872336272722, 'gamma': 1, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.880 (+/-0.150) for "{'method': 'shortest_path', 'scale': False, 'C': 100, 'gamma': 2, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.724 (+/-0.316) for "{'method': 'shortest_path', 'scale': True, 'C': 316.22776601683796, 'gamma': 0.5, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.842 (+/-0.178) for "{'method': 'shortest_path', 'scale': False, 'C': 5.011872336272722, 'gamma': 8, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.852 (+/-0.145) for "{'method': 'shortest_path', 'scale': False, 'C': 100, 'gamma': 0.25, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.742 (+/-0.244) for "{'method': 'shortest_path', 'scale': True, 'C': 19.952623149688797, 'gamma': 0.5, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.720 (+/-0.261) for "{'method': 'shortest_path', 'scale': True, 'C': 25.118864315095795, 'gamma': 0.25, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.665 (+/-0.174) for "{'method': 'shortest_path', 'scale': True, 'C': 1, 'gamma': 0.5, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.717 (+/-0.176) for "{'method': 'shortest_path', 'scale': True, 'C': 31.622776601683793, 'gamma': 1, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': True, 'C': 0.01, 'gamma': 8, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.843 (+/-0.189) for "{'method': 'shortest_path', 'scale': False, 'C': 31.622776601683793, 'gamma': 16, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.726 (+/-0.180) for "{'method': 'shortest_path', 'scale': True, 'C': 3.1622776601683795, 'gamma': 0.25, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.809 (+/-0.180) for "{'method': 'shortest_path', 'scale': False, 'C': 31.622776601683793, 'gamma': 0.125, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.847 (+/-0.166) for "{'method': 'shortest_path', 'scale': False, 'C': 100, 'gamma': 4, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.736 (+/-0.143) for "{'method': 'shortest_path', 'scale': True, 'C': 1, 'gamma': 8, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.758 (+/-0.141) for "{'method': 'shortest_path', 'scale': True, 'C': 5.011872336272722, 'gamma': 8, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.747 (+/-0.191) for "{'method': 'shortest_path', 'scale': True, 'C': 7.943282347242816, 'gamma': 0.25, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': True, 'C': 0.001, 'gamma': 1, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.821 (+/-0.166) for "{'method': 'shortest_path', 'scale': False, 'C': 316.22776601683796, 'gamma': 2, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.815 (+/-0.205) for "{'method': 'shortest_path', 'scale': False, 'C': 25.118864315095795, 'gamma': 0.5, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.714 (+/-0.207) for "{'method': 'shortest_path', 'scale': True, 'C': 1, 'gamma': 4, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.752 (+/-0.176) for "{'method': 'shortest_path', 'scale': True, 'C': 10, 'gamma': 4, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.698 (+/-0.292) for "{'method': 'shortest_path', 'scale': True, 'C': 316.22776601683796, 'gamma': 1, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.852 (+/-0.161) for "{'method': 'shortest_path', 'scale': False, 'C': 31.622776601683793, 'gamma': 1, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.815 (+/-0.205) for "{'method': 'shortest_path', 'scale': False, 'C': 5.011872336272722, 'gamma': 2, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.756 (+/-0.166) for "{'method': 'shortest_path', 'scale': True, 'C': 7.943282347242816, 'gamma': 8, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.815 (+/-0.205) for "{'method': 'shortest_path', 'scale': False, 'C': 3.1622776601683795, 'gamma': 2, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': False, 'C': 0.1, 'gamma': 4, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.814 (+/-0.222) for "{'method': 'shortest_path', 'scale': False, 'C': 1, 'gamma': 8, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.758 (+/-0.153) for "{'method': 'shortest_path', 'scale': True, 'C': 7.943282347242816, 'gamma': 2, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.863 (+/-0.146) for "{'method': 'shortest_path', 'scale': False, 'C': 501.18723362727246, 'gamma': 0.5, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.727 (+/-0.202) for "{'method': 'shortest_path', 'scale': True, 'C': 5.011872336272722, 'gamma': 0.125, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': False, 'C': 0.001, 'gamma': 8, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.693 (+/-0.270) for "{'method': 'shortest_path', 'scale': True, 'C': 100, 'gamma': 0.125, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': False, 'C': 0.001, 'gamma': 0.25, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.682 (+/-0.173) for "{'method': 'shortest_path', 'scale': True, 'C': 501.18723362727246, 'gamma': 2, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.768 (+/-0.172) for "{'method': 'shortest_path', 'scale': False, 'C': 10, 'gamma': 0.125, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.661 (+/-0.289) for "{'method': 'shortest_path', 'scale': True, 'C': 501.18723362727246, 'gamma': 0.125, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.655 (+/-0.165) for "{'method': 'shortest_path', 'scale': True, 'C': 1, 'gamma': 0.25, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.688 (+/-0.227) for "{'method': 'shortest_path', 'scale': True, 'C': 25.118864315095795, 'gamma': 0.125, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': True, 'C': 0.001, 'gamma': 8, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.880 (+/-0.123) for "{'method': 'shortest_path', 'scale': False, 'C': 100, 'gamma': 1, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': False, 'C': 1, 'gamma': 0.25, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': True, 'C': 0.01, 'gamma': 0.125, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.714 (+/-0.214) for "{'method': 'shortest_path', 'scale': True, 'C': 316.22776601683796, 'gamma': 2, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.736 (+/-0.151) for "{'method': 'shortest_path', 'scale': True, 'C': 31.622776601683793, 'gamma': 16, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.673 (+/-0.289) for "{'method': 'shortest_path', 'scale': True, 'C': 100, 'gamma': 0.5, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.809 (+/-0.180) for "{'method': 'shortest_path', 'scale': False, 'C': 10, 'gamma': 0.5, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.719 (+/-0.186) for "{'method': 'shortest_path', 'scale': True, 'C': 19.952623149688797, 'gamma': 8, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': False, 'C': 3.1622776601683795, 'gamma': 0.125, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.848 (+/-0.170) for "{'method': 'shortest_path', 'scale': False, 'C': 25.118864315095795, 'gamma': 8, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.721 (+/-0.190) for "{'method': 'shortest_path', 'scale': True, 'C': 5.011872336272722, 'gamma': 0.5, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.753 (+/-0.202) for "{'method': 'shortest_path', 'scale': True, 'C': 10, 'gamma': 1, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.686 (+/-0.292) for "{'method': 'shortest_path', 'scale': True, 'C': 316.22776601683796, 'gamma': 0.25, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': False, 'C': 0.001, 'gamma': 16, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.778 (+/-0.183) for "{'method': 'shortest_path', 'scale': False, 'C': 3.1622776601683795, 'gamma': 0.5, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.853 (+/-0.188) for "{'method': 'shortest_path', 'scale': False, 'C': 5.011872336272722, 'gamma': 16, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.735 (+/-0.152) for "{'method': 'shortest_path', 'scale': True, 'C': 19.952623149688797, 'gamma': 16, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.714 (+/-0.213) for "{'method': 'shortest_path', 'scale': True, 'C': 19.952623149688797, 'gamma': 4, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.725 (+/-0.240) for "{'method': 'shortest_path', 'scale': True, 'C': 25.118864315095795, 'gamma': 4, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.662 (+/-0.015) for "{'method': 'shortest_path', 'scale': False, 'C': 0.01, 'gamma': 2, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.804 (+/-0.166) for "{'method': 'shortest_path', 'scale': False, 'C': 501.18723362727246, 'gamma': 16, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
0.763 (+/-0.218) for "{'method': 'shortest_path', 'scale': True, 'C': 7.943282347242816, 'gamma': 1, 'normalize_distance': True, 'alpha': 0.667, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac'}"
GRID SEARCH RESULTS
----------------------------
Tuned tuned_parameters : [{'features_metric': ['dirac'], 'normalize_distance': [True], 'epsilon': [0.07196856730011521], 'alpha': [0.889], 'method': ['shortest_path'], 'gamma': [0.125, 0.25, 0.5, 1, 2, 4, 8, 16], 'scale': [False, True], 'C': [0.001, 0.01, 0.1, 1, 3.1622776601683795, 5.011872336272722, 7.943282347242816, 10, 19.952623149688797, 25.118864315095795, 31.622776601683793, 100, 316.22776601683796, 501.18723362727246]}]
CV splits : 10
ALL TIME : --- 1487.0183124542236 seconds ---
Best params: {'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 16, 'scale': False, 'C': 501.18723362727246}
------------GRID----------------
0.689 (+/-0.280) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 4, 'scale': True, 'C': 19.952623149688797}"
0.684 (+/-0.189) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.125, 'scale': True, 'C': 3.1622776601683795}"
0.673 (+/-0.221) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.125, 'scale': True, 'C': 25.118864315095795}"
0.779 (+/-0.224) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 2, 'scale': False, 'C': 10}"
0.763 (+/-0.149) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 8, 'scale': True, 'C': 0.1}"
0.807 (+/-0.133) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 16, 'scale': False, 'C': 1}"
0.807 (+/-0.192) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.25, 'scale': False, 'C': 19.952623149688797}"
0.716 (+/-0.231) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 4, 'scale': True, 'C': 316.22776601683796}"
0.651 (+/-0.042) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.25, 'scale': False, 'C': 3.1622776601683795}"
0.679 (+/-0.255) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 4, 'scale': True, 'C': 7.943282347242816}"
0.774 (+/-0.188) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 8, 'scale': False, 'C': 7.943282347242816}"
0.725 (+/-0.125) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 16, 'scale': True, 'C': 10}"
0.688 (+/-0.178) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 2, 'scale': True, 'C': 7.943282347242816}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 8, 'scale': False, 'C': 0.1}"
0.797 (+/-0.193) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.125, 'scale': False, 'C': 31.622776601683793}"
0.709 (+/-0.221) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.25, 'scale': True, 'C': 1}"
0.679 (+/-0.207) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.125, 'scale': True, 'C': 5.011872336272722}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.5, 'scale': True, 'C': 0.01}"
0.774 (+/-0.217) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.125, 'scale': False, 'C': 100}"
0.791 (+/-0.175) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 2, 'scale': False, 'C': 3.1622776601683795}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.125, 'scale': True, 'C': 0.001}"
0.768 (+/-0.126) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 4, 'scale': True, 'C': 0.1}"
0.736 (+/-0.135) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.125, 'scale': False, 'C': 10}"
0.774 (+/-0.209) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 1, 'scale': False, 'C': 10}"
0.749 (+/-0.177) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 16, 'scale': True, 'C': 1}"
0.716 (+/-0.253) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.125, 'scale': False, 'C': 501.18723362727246}"
0.759 (+/-0.243) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.25, 'scale': False, 'C': 100}"
0.706 (+/-0.186) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 8, 'scale': True, 'C': 3.1622776601683795}"
0.699 (+/-0.235) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 4, 'scale': True, 'C': 501.18723362727246}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 4, 'scale': True, 'C': 0.001}"
0.748 (+/-0.259) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 2, 'scale': False, 'C': 19.952623149688797}"
0.808 (+/-0.120) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 16, 'scale': False, 'C': 501.18723362727246}"
0.791 (+/-0.175) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.5, 'scale': False, 'C': 5.011872336272722}"
0.774 (+/-0.152) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.125, 'scale': True, 'C': 0.1}"
0.699 (+/-0.249) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 1, 'scale': False, 'C': 501.18723362727246}"
0.716 (+/-0.210) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 8, 'scale': True, 'C': 100}"
0.657 (+/-0.210) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 2, 'scale': True, 'C': 100}"
0.663 (+/-0.223) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 1, 'scale': True, 'C': 3.1622776601683795}"
0.668 (+/-0.195) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.5, 'scale': True, 'C': 316.22776601683796}"
0.758 (+/-0.194) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 4, 'scale': False, 'C': 7.943282347242816}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.25, 'scale': True, 'C': 0.01}"
0.699 (+/-0.235) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 4, 'scale': True, 'C': 25.118864315095795}"
0.721 (+/-0.244) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.125, 'scale': True, 'C': 1}"
0.693 (+/-0.068) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.125, 'scale': False, 'C': 7.943282347242816}"
0.679 (+/-0.235) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.5, 'scale': True, 'C': 31.622776601683793}"
0.720 (+/-0.261) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 4, 'scale': True, 'C': 1}"
0.722 (+/-0.226) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 4, 'scale': True, 'C': 31.622776601683793}"
0.736 (+/-0.135) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.25, 'scale': False, 'C': 5.011872336272722}"
0.679 (+/-0.248) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 2, 'scale': True, 'C': 5.011872336272722}"
0.695 (+/-0.211) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.5, 'scale': True, 'C': 3.1622776601683795}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.5, 'scale': False, 'C': 0.1}"
0.642 (+/-0.200) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.125, 'scale': True, 'C': 501.18723362727246}"
0.673 (+/-0.178) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.5, 'scale': True, 'C': 501.18723362727246}"
0.747 (+/-0.220) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 1, 'scale': False, 'C': 31.622776601683793}"
0.679 (+/-0.185) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.125, 'scale': True, 'C': 7.943282347242816}"
0.694 (+/-0.170) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 1, 'scale': False, 'C': 316.22776601683796}"
0.711 (+/-0.247) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 1, 'scale': True, 'C': 1}"
0.711 (+/-0.244) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 8, 'scale': True, 'C': 25.118864315095795}"
0.774 (+/-0.221) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.5, 'scale': False, 'C': 31.622776601683793}"
0.683 (+/-0.225) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.5, 'scale': True, 'C': 19.952623149688797}"
0.711 (+/-0.174) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.5, 'scale': True, 'C': 100}"
0.679 (+/-0.211) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 1, 'scale': True, 'C': 100}"
0.732 (+/-0.164) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 16, 'scale': True, 'C': 316.22776601683796}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 1, 'scale': False, 'C': 0.001}"
0.716 (+/-0.175) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 8, 'scale': True, 'C': 1}"
0.773 (+/-0.194) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 8, 'scale': False, 'C': 10}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 8, 'scale': False, 'C': 0.01}"
0.779 (+/-0.224) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 1, 'scale': False, 'C': 19.952623149688797}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.25, 'scale': False, 'C': 0.1}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.5, 'scale': False, 'C': 1}"
0.705 (+/-0.229) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 4, 'scale': False, 'C': 501.18723362727246}"
0.786 (+/-0.176) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 1, 'scale': False, 'C': 3.1622776601683795}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 2, 'scale': False, 'C': 0.1}"
0.774 (+/-0.147) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 8, 'scale': False, 'C': 100}"
0.737 (+/-0.231) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 2, 'scale': False, 'C': 25.118864315095795}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 1, 'scale': True, 'C': 0.001}"
0.668 (+/-0.214) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 2, 'scale': True, 'C': 10}"
0.646 (+/-0.275) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.125, 'scale': True, 'C': 316.22776601683796}"
0.693 (+/-0.068) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 1, 'scale': False, 'C': 1}"
0.721 (+/-0.265) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.25, 'scale': False, 'C': 501.18723362727246}"
0.658 (+/-0.247) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.25, 'scale': True, 'C': 501.18723362727246}"
0.684 (+/-0.207) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 1, 'scale': True, 'C': 501.18723362727246}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 16, 'scale': False, 'C': 0.01}"
0.679 (+/-0.185) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.25, 'scale': True, 'C': 7.943282347242816}"
0.716 (+/-0.226) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 4, 'scale': True, 'C': 3.1622776601683795}"
0.697 (+/-0.209) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.25, 'scale': True, 'C': 316.22776601683796}"
0.796 (+/-0.181) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 1, 'scale': False, 'C': 7.943282347242816}"
0.663 (+/-0.238) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.125, 'scale': True, 'C': 100}"
0.721 (+/-0.182) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 8, 'scale': True, 'C': 7.943282347242816}"
0.779 (+/-0.148) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 16, 'scale': True, 'C': 0.1}"
0.768 (+/-0.147) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.5, 'scale': False, 'C': 3.1622776601683795}"
0.779 (+/-0.145) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.5, 'scale': True, 'C': 0.1}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.25, 'scale': True, 'C': 0.001}"
0.785 (+/-0.256) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 16, 'scale': False, 'C': 7.943282347242816}"
0.774 (+/-0.178) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.5, 'scale': False, 'C': 19.952623149688797}"
0.658 (+/-0.226) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 2, 'scale': True, 'C': 3.1622776601683795}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.5, 'scale': True, 'C': 0.001}"
0.669 (+/-0.208) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 1, 'scale': True, 'C': 7.943282347242816}"
0.791 (+/-0.205) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 2, 'scale': False, 'C': 5.011872336272722}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 2, 'scale': False, 'C': 0.001}"
0.727 (+/-0.164) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 16, 'scale': True, 'C': 31.622776601683793}"
0.721 (+/-0.207) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 8, 'scale': True, 'C': 5.011872336272722}"
0.802 (+/-0.156) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 8, 'scale': False, 'C': 1}"
0.753 (+/-0.138) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 8, 'scale': False, 'C': 31.622776601683793}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.125, 'scale': False, 'C': 5.011872336272722}"
0.694 (+/-0.178) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 16, 'scale': True, 'C': 5.011872336272722}"
0.721 (+/-0.214) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.5, 'scale': False, 'C': 501.18723362727246}"
0.709 (+/-0.232) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.5, 'scale': True, 'C': 1}"
0.779 (+/-0.145) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.25, 'scale': True, 'C': 0.1}"
0.730 (+/-0.232) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 4, 'scale': False, 'C': 316.22776601683796}"
0.791 (+/-0.141) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 8, 'scale': False, 'C': 19.952623149688797}"
0.747 (+/-0.280) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 8, 'scale': False, 'C': 316.22776601683796}"
0.733 (+/-0.193) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 16, 'scale': True, 'C': 3.1622776601683795}"
0.763 (+/-0.171) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.25, 'scale': False, 'C': 7.943282347242816}"
0.758 (+/-0.248) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 8, 'scale': False, 'C': 25.118864315095795}"
0.797 (+/-0.193) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.5, 'scale': False, 'C': 7.943282347242816}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 4, 'scale': False, 'C': 0.01}"
0.647 (+/-0.207) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.5, 'scale': True, 'C': 5.011872336272722}"
0.652 (+/-0.173) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 1, 'scale': True, 'C': 5.011872336272722}"
0.785 (+/-0.203) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 4, 'scale': False, 'C': 5.011872336272722}"
0.785 (+/-0.197) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 16, 'scale': False, 'C': 19.952623149688797}"
0.679 (+/-0.213) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.5, 'scale': True, 'C': 25.118864315095795}"
0.727 (+/-0.258) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 1, 'scale': False, 'C': 100}"
0.774 (+/-0.142) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 2, 'scale': False, 'C': 1}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.125, 'scale': False, 'C': 1}"
0.736 (+/-0.212) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 8, 'scale': True, 'C': 31.622776601683793}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.125, 'scale': False, 'C': 0.1}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 1, 'scale': False, 'C': 0.1}"
0.662 (+/-0.206) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.25, 'scale': True, 'C': 5.011872336272722}"
0.711 (+/-0.275) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.5, 'scale': False, 'C': 316.22776601683796}"
0.699 (+/-0.178) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 2, 'scale': True, 'C': 19.952623149688797}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.5, 'scale': False, 'C': 0.01}"
0.674 (+/-0.228) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 1, 'scale': True, 'C': 31.622776601683793}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 4, 'scale': False, 'C': 0.1}"
0.732 (+/-0.187) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 8, 'scale': True, 'C': 19.952623149688797}"
0.668 (+/-0.193) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.25, 'scale': True, 'C': 10}"
0.652 (+/-0.203) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 1, 'scale': True, 'C': 25.118864315095795}"
0.796 (+/-0.167) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 16, 'scale': False, 'C': 5.011872336272722}"
0.668 (+/-0.200) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.125, 'scale': True, 'C': 19.952623149688797}"
0.688 (+/-0.213) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 2, 'scale': True, 'C': 501.18723362727246}"
0.791 (+/-0.175) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.25, 'scale': False, 'C': 10}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.5, 'scale': False, 'C': 0.001}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 2, 'scale': True, 'C': 0.001}"
0.737 (+/-0.167) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 16, 'scale': True, 'C': 501.18723362727246}"
0.657 (+/-0.194) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.25, 'scale': True, 'C': 19.952623149688797}"
0.791 (+/-0.175) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 4, 'scale': False, 'C': 1}"
0.758 (+/-0.275) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 8, 'scale': False, 'C': 501.18723362727246}"
0.737 (+/-0.252) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 2, 'scale': False, 'C': 31.622776601683793}"
0.722 (+/-0.218) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 8, 'scale': True, 'C': 10}"
0.693 (+/-0.244) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 2, 'scale': False, 'C': 316.22776601683796}"
0.726 (+/-0.238) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.5, 'scale': False, 'C': 100}"
0.807 (+/-0.192) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.5, 'scale': False, 'C': 10}"
0.733 (+/-0.218) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 8, 'scale': True, 'C': 501.18723362727246}"
0.790 (+/-0.168) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 2, 'scale': False, 'C': 7.943282347242816}"
0.662 (+/-0.196) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 2, 'scale': True, 'C': 31.622776601683793}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 16, 'scale': False, 'C': 0.001}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 1, 'scale': True, 'C': 0.01}"
0.725 (+/-0.250) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 2, 'scale': True, 'C': 1}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 2, 'scale': False, 'C': 0.01}"
0.685 (+/-0.197) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.5, 'scale': True, 'C': 7.943282347242816}"
0.679 (+/-0.188) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 2, 'scale': True, 'C': 316.22776601683796}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.125, 'scale': False, 'C': 0.001}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 8, 'scale': True, 'C': 0.001}"
0.695 (+/-0.217) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 1, 'scale': True, 'C': 316.22776601683796}"
0.802 (+/-0.098) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 16, 'scale': False, 'C': 316.22776601683796}"
0.791 (+/-0.175) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.125, 'scale': False, 'C': 19.952623149688797}"
0.743 (+/-0.156) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 16, 'scale': True, 'C': 19.952623149688797}"
0.773 (+/-0.122) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 2, 'scale': True, 'C': 0.1}"
0.694 (+/-0.244) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 2, 'scale': False, 'C': 100}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 8, 'scale': True, 'C': 0.01}"
0.716 (+/-0.086) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 16, 'scale': True, 'C': 7.943282347242816}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.25, 'scale': False, 'C': 0.01}"
0.737 (+/-0.210) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 4, 'scale': False, 'C': 25.118864315095795}"
0.668 (+/-0.226) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.25, 'scale': True, 'C': 100}"
0.769 (+/-0.170) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 16, 'scale': False, 'C': 25.118864315095795}"
0.736 (+/-0.207) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.125, 'scale': False, 'C': 316.22776601683796}"
0.784 (+/-0.186) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 16, 'scale': False, 'C': 31.622776601683793}"
0.702 (+/-0.247) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.125, 'scale': True, 'C': 31.622776601683793}"
0.785 (+/-0.197) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.25, 'scale': False, 'C': 31.622776601683793}"
0.726 (+/-0.250) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 4, 'scale': False, 'C': 19.952623149688797}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 16, 'scale': True, 'C': 0.001}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.25, 'scale': False, 'C': 1}"
0.726 (+/-0.181) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 16, 'scale': True, 'C': 25.118864315095795}"
0.732 (+/-0.221) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 4, 'scale': False, 'C': 31.622776601683793}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.125, 'scale': False, 'C': 3.1622776601683795}"
0.764 (+/-0.203) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 4, 'scale': False, 'C': 10}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 16, 'scale': True, 'C': 0.01}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.125, 'scale': False, 'C': 0.01}"
0.792 (+/-0.185) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.125, 'scale': False, 'C': 25.118864315095795}"
0.689 (+/-0.193) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.25, 'scale': True, 'C': 3.1622776601683795}"
0.677 (+/-0.207) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 4, 'scale': True, 'C': 5.011872336272722}"
0.727 (+/-0.222) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 8, 'scale': True, 'C': 316.22776601683796}"
0.796 (+/-0.153) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 16, 'scale': False, 'C': 3.1622776601683795}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 4, 'scale': False, 'C': 0.001}"
0.683 (+/-0.214) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 1, 'scale': True, 'C': 19.952623149688797}"
0.759 (+/-0.248) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 1, 'scale': False, 'C': 25.118864315095795}"
0.807 (+/-0.192) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 1, 'scale': False, 'C': 5.011872336272722}"
0.721 (+/-0.260) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.25, 'scale': False, 'C': 316.22776601683796}"
0.796 (+/-0.159) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 4, 'scale': False, 'C': 3.1622776601683795}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 2, 'scale': True, 'C': 0.01}"
0.796 (+/-0.138) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 8, 'scale': False, 'C': 3.1622776601683795}"
0.673 (+/-0.221) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.25, 'scale': True, 'C': 25.118864315095795}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.125, 'scale': True, 'C': 0.01}"
0.691 (+/-0.231) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 1, 'scale': True, 'C': 10}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.25, 'scale': False, 'C': 0.001}"
0.748 (+/-0.164) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 16, 'scale': True, 'C': 100}"
0.769 (+/-0.184) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 8, 'scale': False, 'C': 5.011872336272722}"
0.668 (+/-0.236) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.25, 'scale': True, 'C': 31.622776601683793}"
0.689 (+/-0.228) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 2, 'scale': True, 'C': 25.118864315095795}"
0.779 (+/-0.145) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 1, 'scale': True, 'C': 0.1}"
0.716 (+/-0.205) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 4, 'scale': True, 'C': 10}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 1, 'scale': False, 'C': 0.01}"
0.774 (+/-0.217) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.5, 'scale': False, 'C': 25.118864315095795}"
0.791 (+/-0.190) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.25, 'scale': False, 'C': 25.118864315095795}"
0.678 (+/-0.223) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.5, 'scale': True, 'C': 10}"
0.694 (+/-0.233) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 2, 'scale': False, 'C': 501.18723362727246}"
0.769 (+/-0.186) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 16, 'scale': False, 'C': 10}"
0.714 (+/-0.246) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 4, 'scale': False, 'C': 100}"
0.775 (+/-0.185) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 16, 'scale': False, 'C': 100}"
0.652 (+/-0.187) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 0.125, 'scale': True, 'C': 10}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 4, 'scale': True, 'C': 0.01}"
0.651 (+/-0.042) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 16, 'scale': False, 'C': 0.1}"
0.662 (+/-0.015) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 8, 'scale': False, 'C': 0.001}"
0.700 (+/-0.263) for "{'features_metric': 'dirac', 'normalize_distance': True, 'epsilon': 0.07196856730011521, 'alpha': 0.889, 'method': 'shortest_path', 'gamma': 4, 'scale': True, 'C': 100}"
GRID SEARCH RESULTS
----------------------------
Tuned tuned_parameters : [{'alpha': [0.778], 'epsilon': [0.07196856730011521], 'scale': [False, True], 'gamma': [0.125, 0.25, 0.5, 1, 2, 4, 8, 16], 'normalize_distance': [True], 'features_metric': ['dirac'], 'C': [0.001, 0.01, 0.1, 1, 3.1622776601683795, 5.011872336272722, 7.943282347242816, 10, 19.952623149688797, 25.118864315095795, 31.622776601683793, 100, 316.22776601683796, 501.18723362727246], 'method': ['shortest_path']}]
CV splits : 10
ALL TIME : --- 1564.157347202301 seconds ---
Best params: {'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 5.011872336272722, 'gamma': 16, 'normalize_distance': True}
------------GRID----------------
0.742 (+/-0.190) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 1, 'gamma': 0.125, 'normalize_distance': True}"
0.784 (+/-0.261) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 501.18723362727246, 'gamma': 0.5, 'normalize_distance': True}"
0.810 (+/-0.154) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 7.943282347242816, 'gamma': 2, 'normalize_distance': True}"
0.788 (+/-0.212) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 19.952623149688797, 'gamma': 0.125, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.1, 'gamma': 0.5, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.001, 'gamma': 4, 'normalize_distance': True}"
0.751 (+/-0.294) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 3.1622776601683795, 'gamma': 1, 'normalize_distance': True}"
0.720 (+/-0.195) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 501.18723362727246, 'gamma': 0.25, 'normalize_distance': True}"
0.704 (+/-0.158) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 7.943282347242816, 'gamma': 8, 'normalize_distance': True}"
0.805 (+/-0.146) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 3.1622776601683795, 'gamma': 2, 'normalize_distance': True}"
0.753 (+/-0.169) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 501.18723362727246, 'gamma': 16, 'normalize_distance': True}"
0.859 (+/-0.160) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 316.22776601683796, 'gamma': 0.125, 'normalize_distance': True}"
0.810 (+/-0.140) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 3.1622776601683795, 'gamma': 4, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.001, 'gamma': 2, 'normalize_distance': True}"
0.854 (+/-0.148) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 31.622776601683793, 'gamma': 4, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.001, 'gamma': 2, 'normalize_distance': True}"
0.828 (+/-0.169) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 100, 'gamma': 2, 'normalize_distance': True}"
0.869 (+/-0.152) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 10, 'gamma': 8, 'normalize_distance': True}"
0.709 (+/-0.232) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 19.952623149688797, 'gamma': 0.25, 'normalize_distance': True}"
0.692 (+/-0.279) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 7.943282347242816, 'gamma': 0.5, 'normalize_distance': True}"
0.751 (+/-0.171) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 10, 'gamma': 0.125, 'normalize_distance': True}"
0.865 (+/-0.131) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 10, 'gamma': 16, 'normalize_distance': True}"
0.784 (+/-0.158) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 100, 'gamma': 0.125, 'normalize_distance': True}"
0.843 (+/-0.156) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 3.1622776601683795, 'gamma': 8, 'normalize_distance': True}"
0.716 (+/-0.313) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 3.1622776601683795, 'gamma': 4, 'normalize_distance': True}"
0.799 (+/-0.178) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 3.1622776601683795, 'gamma': 1, 'normalize_distance': True}"
0.788 (+/-0.212) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 10, 'gamma': 0.25, 'normalize_distance': True}"
0.799 (+/-0.146) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 31.622776601683793, 'gamma': 0.125, 'normalize_distance': True}"
0.709 (+/-0.254) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 19.952623149688797, 'gamma': 0.5, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.01, 'gamma': 0.5, 'normalize_distance': True}"
0.800 (+/-0.134) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 5.011872336272722, 'gamma': 2, 'normalize_distance': True}"
0.740 (+/-0.203) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 501.18723362727246, 'gamma': 0.125, 'normalize_distance': True}"
0.672 (+/-0.166) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 25.118864315095795, 'gamma': 8, 'normalize_distance': True}"
0.751 (+/-0.171) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 5.011872336272722, 'gamma': 0.25, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.001, 'gamma': 1, 'normalize_distance': True}"
0.773 (+/-0.105) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.1, 'gamma': 2, 'normalize_distance': True}"
0.738 (+/-0.304) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 25.118864315095795, 'gamma': 1, 'normalize_distance': True}"
0.725 (+/-0.247) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 5.011872336272722, 'gamma': 0.5, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.001, 'gamma': 16, 'normalize_distance': True}"
0.799 (+/-0.146) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 7.943282347242816, 'gamma': 0.5, 'normalize_distance': True}"
0.714 (+/-0.216) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 100, 'gamma': 0.5, 'normalize_distance': True}"
0.714 (+/-0.248) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 31.622776601683793, 'gamma': 0.25, 'normalize_distance': True}"
0.767 (+/-0.097) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.1, 'gamma': 0.125, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.001, 'gamma': 0.125, 'normalize_distance': True}"
0.729 (+/-0.306) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 5.011872336272722, 'gamma': 0.125, 'normalize_distance': True}"
0.654 (+/-0.140) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 316.22776601683796, 'gamma': 16, 'normalize_distance': True}"
0.839 (+/-0.144) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 316.22776601683796, 'gamma': 0.5, 'normalize_distance': True}"
0.671 (+/-0.151) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 31.622776601683793, 'gamma': 16, 'normalize_distance': True}"
0.744 (+/-0.244) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 501.18723362727246, 'gamma': 1, 'normalize_distance': True}"
0.773 (+/-0.147) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 501.18723362727246, 'gamma': 8, 'normalize_distance': True}"
0.746 (+/-0.146) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.1, 'gamma': 16, 'normalize_distance': True}"
0.850 (+/-0.172) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 25.118864315095795, 'gamma': 16, 'normalize_distance': True}"
0.698 (+/-0.241) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 10, 'gamma': 0.5, 'normalize_distance': True}"
0.865 (+/-0.122) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 501.18723362727246, 'gamma': 0.125, 'normalize_distance': True}"
0.848 (+/-0.158) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 19.952623149688797, 'gamma': 4, 'normalize_distance': True}"
0.769 (+/-0.222) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 501.18723362727246, 'gamma': 1, 'normalize_distance': True}"
0.656 (+/-0.033) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 1, 'gamma': 0.5, 'normalize_distance': True}"
0.740 (+/-0.203) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 316.22776601683796, 'gamma': 0.125, 'normalize_distance': True}"
0.676 (+/-0.148) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 25.118864315095795, 'gamma': 16, 'normalize_distance': True}"
0.681 (+/-0.235) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 316.22776601683796, 'gamma': 4, 'normalize_distance': True}"
0.657 (+/-0.293) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 501.18723362727246, 'gamma': 2, 'normalize_distance': True}"
0.719 (+/-0.194) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 10, 'gamma': 16, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.01, 'gamma': 4, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.1, 'gamma': 1, 'normalize_distance': True}"
0.796 (+/-0.240) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 501.18723362727246, 'gamma': 2, 'normalize_distance': True}"
0.854 (+/-0.200) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 31.622776601683793, 'gamma': 8, 'normalize_distance': True}"
0.703 (+/-0.287) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 7.943282347242816, 'gamma': 0.25, 'normalize_distance': True}"
0.853 (+/-0.187) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 5.011872336272722, 'gamma': 4, 'normalize_distance': True}"
0.667 (+/-0.064) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 5.011872336272722, 'gamma': 0.125, 'normalize_distance': True}"
0.739 (+/-0.263) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 1, 'gamma': 8, 'normalize_distance': True}"
0.695 (+/-0.325) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 19.952623149688797, 'gamma': 2, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 1, 'gamma': 0.125, 'normalize_distance': True}"
0.746 (+/-0.241) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 19.952623149688797, 'gamma': 1, 'normalize_distance': True}"
0.794 (+/-0.142) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 19.952623149688797, 'gamma': 0.5, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.1, 'gamma': 8, 'normalize_distance': True}"
0.686 (+/-0.141) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 19.952623149688797, 'gamma': 16, 'normalize_distance': True}"
0.709 (+/-0.264) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 10, 'gamma': 0.25, 'normalize_distance': True}"
0.832 (+/-0.186) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 19.952623149688797, 'gamma': 2, 'normalize_distance': True}"
0.859 (+/-0.179) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 7.943282347242816, 'gamma': 4, 'normalize_distance': True}"
0.874 (+/-0.159) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 5.011872336272722, 'gamma': 16, 'normalize_distance': True}"
0.832 (+/-0.156) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 100, 'gamma': 0.25, 'normalize_distance': True}"
0.713 (+/-0.303) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 5.011872336272722, 'gamma': 2, 'normalize_distance': True}"
0.848 (+/-0.187) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 19.952623149688797, 'gamma': 1, 'normalize_distance': True}"
0.838 (+/-0.161) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 100, 'gamma': 0.5, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.1, 'gamma': 0.125, 'normalize_distance': True}"
0.717 (+/-0.301) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 7.943282347242816, 'gamma': 2, 'normalize_distance': True}"
0.681 (+/-0.235) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 501.18723362727246, 'gamma': 4, 'normalize_distance': True}"
0.800 (+/-0.134) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 31.622776601683793, 'gamma': 0.25, 'normalize_distance': True}"
0.744 (+/-0.254) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 1, 'gamma': 16, 'normalize_distance': True}"
0.837 (+/-0.183) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 10, 'gamma': 4, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 3.1622776601683795, 'gamma': 0.125, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.001, 'gamma': 0.5, 'normalize_distance': True}"
0.778 (+/-0.192) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 3.1622776601683795, 'gamma': 0.5, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.1, 'gamma': 2, 'normalize_distance': True}"
0.758 (+/-0.228) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 501.18723362727246, 'gamma': 4, 'normalize_distance': True}"
0.778 (+/-0.173) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 316.22776601683796, 'gamma': 8, 'normalize_distance': True}"
0.664 (+/-0.269) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 31.622776601683793, 'gamma': 4, 'normalize_distance': True}"
0.740 (+/-0.197) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.1, 'gamma': 4, 'normalize_distance': True}"
0.729 (+/-0.242) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 5.011872336272722, 'gamma': 0.25, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.001, 'gamma': 0.25, 'normalize_distance': True}"
0.721 (+/-0.223) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 5.011872336272722, 'gamma': 16, 'normalize_distance': True}"
0.767 (+/-0.097) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.1, 'gamma': 0.25, 'normalize_distance': True}"
0.747 (+/-0.239) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 1, 'gamma': 2, 'normalize_distance': True}"
0.682 (+/-0.195) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 100, 'gamma': 8, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.001, 'gamma': 4, 'normalize_distance': True}"
0.741 (+/-0.235) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 3.1622776601683795, 'gamma': 0.125, 'normalize_distance': True}"
0.709 (+/-0.148) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 10, 'gamma': 8, 'normalize_distance': True}"
0.739 (+/-0.273) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 10, 'gamma': 1, 'normalize_distance': True}"
0.832 (+/-0.169) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 25.118864315095795, 'gamma': 1, 'normalize_distance': True}"
0.715 (+/-0.219) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 25.118864315095795, 'gamma': 0.125, 'normalize_distance': True}"
0.856 (+/-0.163) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 19.952623149688797, 'gamma': 16, 'normalize_distance': True}"
0.724 (+/-0.251) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 3.1622776601683795, 'gamma': 16, 'normalize_distance': True}"
0.700 (+/-0.334) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 316.22776601683796, 'gamma': 2, 'normalize_distance': True}"
0.828 (+/-0.189) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 100, 'gamma': 16, 'normalize_distance': True}"
0.726 (+/-0.204) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 316.22776601683796, 'gamma': 0.5, 'normalize_distance': True}"
0.738 (+/-0.316) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 3.1622776601683795, 'gamma': 2, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.01, 'gamma': 1, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.01, 'gamma': 16, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.001, 'gamma': 0.125, 'normalize_distance': True}"
0.717 (+/-0.250) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 19.952623149688797, 'gamma': 4, 'normalize_distance': True}"
0.843 (+/-0.185) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 25.118864315095795, 'gamma': 2, 'normalize_distance': True}"
0.723 (+/-0.272) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 10, 'gamma': 4, 'normalize_distance': True}"
0.839 (+/-0.165) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 501.18723362727246, 'gamma': 0.25, 'normalize_distance': True}"
0.804 (+/-0.179) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 25.118864315095795, 'gamma': 0.125, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.01, 'gamma': 2, 'normalize_distance': True}"
0.696 (+/-0.294) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 100, 'gamma': 2, 'normalize_distance': True}"
0.649 (+/-0.129) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 501.18723362727246, 'gamma': 16, 'normalize_distance': True}"
0.783 (+/-0.221) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 7.943282347242816, 'gamma': 0.25, 'normalize_distance': True}"
0.801 (+/-0.165) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 100, 'gamma': 8, 'normalize_distance': True}"
0.686 (+/-0.276) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 25.118864315095795, 'gamma': 2, 'normalize_distance': True}"
0.839 (+/-0.175) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 100, 'gamma': 1, 'normalize_distance': True}"
0.714 (+/-0.216) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 100, 'gamma': 0.25, 'normalize_distance': True}"
0.805 (+/-0.146) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 5.011872336272722, 'gamma': 1, 'normalize_distance': True}"
0.799 (+/-0.146) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 31.622776601683793, 'gamma': 0.5, 'normalize_distance': True}"
0.726 (+/-0.188) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 7.943282347242816, 'gamma': 16, 'normalize_distance': True}"
0.714 (+/-0.216) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 316.22776601683796, 'gamma': 0.25, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.001, 'gamma': 8, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.01, 'gamma': 4, 'normalize_distance': True}"
0.730 (+/-0.219) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 316.22776601683796, 'gamma': 1, 'normalize_distance': True}"
0.703 (+/-0.245) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 100, 'gamma': 0.125, 'normalize_distance': True}"
0.778 (+/-0.162) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 25.118864315095795, 'gamma': 0.5, 'normalize_distance': True}"
0.734 (+/-0.268) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 25.118864315095795, 'gamma': 0.5, 'normalize_distance': True}"
0.735 (+/-0.228) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 31.622776601683793, 'gamma': 0.125, 'normalize_distance': True}"
0.858 (+/-0.153) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 31.622776601683793, 'gamma': 2, 'normalize_distance': True}"
0.783 (+/-0.221) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 1, 'gamma': 2, 'normalize_distance': True}"
0.718 (+/-0.212) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.1, 'gamma': 8, 'normalize_distance': True}"
0.747 (+/-0.197) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 1, 'gamma': 0.5, 'normalize_distance': True}"
0.703 (+/-0.308) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 7.943282347242816, 'gamma': 0.125, 'normalize_distance': True}"
0.870 (+/-0.148) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 7.943282347242816, 'gamma': 8, 'normalize_distance': True}"
0.682 (+/-0.210) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 316.22776601683796, 'gamma': 8, 'normalize_distance': True}"
0.800 (+/-0.134) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 7.943282347242816, 'gamma': 1, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.01, 'gamma': 0.25, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.01, 'gamma': 1, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.01, 'gamma': 0.5, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.01, 'gamma': 2, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.01, 'gamma': 8, 'normalize_distance': True}"
0.736 (+/-0.221) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 1, 'gamma': 1, 'normalize_distance': True}"
0.702 (+/-0.339) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 25.118864315095795, 'gamma': 0.25, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.01, 'gamma': 0.125, 'normalize_distance': True}"
0.746 (+/-0.138) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 7.943282347242816, 'gamma': 0.125, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.01, 'gamma': 0.125, 'normalize_distance': True}"
0.805 (+/-0.146) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 25.118864315095795, 'gamma': 0.25, 'normalize_distance': True}"
0.678 (+/-0.352) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 10, 'gamma': 2, 'normalize_distance': True}"
0.746 (+/-0.215) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 31.622776601683793, 'gamma': 1, 'normalize_distance': True}"
0.843 (+/-0.175) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 31.622776601683793, 'gamma': 1, 'normalize_distance': True}"
0.671 (+/-0.188) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 501.18723362727246, 'gamma': 8, 'normalize_distance': True}"
0.685 (+/-0.301) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 5.011872336272722, 'gamma': 4, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.001, 'gamma': 1, 'normalize_distance': True}"
0.846 (+/-0.185) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 31.622776601683793, 'gamma': 16, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.01, 'gamma': 0.25, 'normalize_distance': True}"
0.812 (+/-0.186) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 316.22776601683796, 'gamma': 2, 'normalize_distance': True}"
0.827 (+/-0.117) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 316.22776601683796, 'gamma': 0.25, 'normalize_distance': True}"
0.709 (+/-0.204) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 19.952623149688797, 'gamma': 0.125, 'normalize_distance': True}"
0.697 (+/-0.234) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 5.011872336272722, 'gamma': 8, 'normalize_distance': True}"
0.741 (+/-0.133) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 1, 'gamma': 1, 'normalize_distance': True}"
0.781 (+/-0.196) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 316.22776601683796, 'gamma': 16, 'normalize_distance': True}"
0.865 (+/-0.131) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 7.943282347242816, 'gamma': 16, 'normalize_distance': True}"
0.722 (+/-0.351) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 5.011872336272722, 'gamma': 1, 'normalize_distance': True}"
0.822 (+/-0.215) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 100, 'gamma': 4, 'normalize_distance': True}"
0.848 (+/-0.164) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 19.952623149688797, 'gamma': 8, 'normalize_distance': True}"
0.773 (+/-0.105) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.1, 'gamma': 1, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.01, 'gamma': 16, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 1, 'gamma': 0.25, 'normalize_distance': True}"
0.812 (+/-0.260) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 316.22776601683796, 'gamma': 1, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.01, 'gamma': 8, 'normalize_distance': True}"
0.742 (+/-0.208) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 1, 'gamma': 0.25, 'normalize_distance': True}"
0.707 (+/-0.262) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 31.622776601683793, 'gamma': 2, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.1, 'gamma': 0.25, 'normalize_distance': True}"
0.745 (+/-0.245) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 1, 'gamma': 4, 'normalize_distance': True}"
0.672 (+/-0.166) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 19.952623149688797, 'gamma': 8, 'normalize_distance': True}"
0.847 (+/-0.176) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 3.1622776601683795, 'gamma': 16, 'normalize_distance': True}"
0.843 (+/-0.184) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 25.118864315095795, 'gamma': 8, 'normalize_distance': True}"
0.805 (+/-0.146) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 10, 'gamma': 0.5, 'normalize_distance': True}"
0.688 (+/-0.206) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 100, 'gamma': 4, 'normalize_distance': True}"
0.764 (+/-0.216) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 316.22776601683796, 'gamma': 4, 'normalize_distance': True}"
0.727 (+/-0.313) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 7.943282347242816, 'gamma': 4, 'normalize_distance': True}"
0.827 (+/-0.181) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 10, 'gamma': 2, 'normalize_distance': True}"
0.643 (+/-0.132) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 100, 'gamma': 16, 'normalize_distance': True}"
0.703 (+/-0.096) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 3.1622776601683795, 'gamma': 0.25, 'normalize_distance': True}"
0.805 (+/-0.154) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 1, 'gamma': 4, 'normalize_distance': True}"
0.859 (+/-0.165) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 5.011872336272722, 'gamma': 8, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.001, 'gamma': 0.5, 'normalize_distance': True}"
0.656 (+/-0.033) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.1, 'gamma': 16, 'normalize_distance': True}"
0.810 (+/-0.157) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 1, 'gamma': 16, 'normalize_distance': True}"
0.677 (+/-0.178) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 31.622776601683793, 'gamma': 8, 'normalize_distance': True}"
0.724 (+/-0.268) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 31.622776601683793, 'gamma': 0.5, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.001, 'gamma': 16, 'normalize_distance': True}"
0.849 (+/-0.142) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 25.118864315095795, 'gamma': 4, 'normalize_distance': True}"
0.740 (+/-0.231) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 100, 'gamma': 1, 'normalize_distance': True}"
0.751 (+/-0.244) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 3.1622776601683795, 'gamma': 0.25, 'normalize_distance': True}"
0.805 (+/-0.146) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 19.952623149688797, 'gamma': 0.25, 'normalize_distance': True}"
0.692 (+/-0.262) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 25.118864315095795, 'gamma': 4, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.001, 'gamma': 0.25, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.001, 'gamma': 8, 'normalize_distance': True}"
0.767 (+/-0.097) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.1, 'gamma': 0.5, 'normalize_distance': True}"
0.788 (+/-0.212) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 5.011872336272722, 'gamma': 0.5, 'normalize_distance': True}"
0.800 (+/-0.134) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 10, 'gamma': 1, 'normalize_distance': True}"
0.756 (+/-0.269) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 3.1622776601683795, 'gamma': 0.5, 'normalize_distance': True}"
0.714 (+/-0.272) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 10, 'gamma': 0.125, 'normalize_distance': True}"
0.746 (+/-0.210) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 501.18723362727246, 'gamma': 0.5, 'normalize_distance': True}"
0.686 (+/-0.235) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 3.1622776601683795, 'gamma': 8, 'normalize_distance': True}"
0.733 (+/-0.314) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': True, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 7.943282347242816, 'gamma': 1, 'normalize_distance': True}"
0.805 (+/-0.137) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 1, 'gamma': 8, 'normalize_distance': True}"
0.662 (+/-0.015) for "{'alpha': 0.778, 'epsilon': 0.07196856730011521, 'scale': False, 'method': 'shortest_path', 'features_metric': 'dirac', 'C': 0.1, 'gamma': 4, 'normalize_distance': True}"
GRID SEARCH RESULTS
----------------------------
Tuned tuned_parameters : [{'C': [0.001, 0.01, 0.1, 1, 3.1622776601683795, 5.011872336272722, 7.943282347242816, 10, 19.952623149688797, 25.118864315095795, 31.622776601683793, 100, 316.22776601683796, 501.18723362727246], 'epsilon': [0.07196856730011521], 'method': ['shortest_path'], 'gamma': [0.125, 0.25, 0.5, 1, 2, 4, 8, 16], 'scale': [False, True], 'features_metric': ['dirac'], 'normalize_distance': [True], 'alpha': [0.0]}]
CV splits : 10
ALL TIME : --- 1473.3179819583893 seconds ---
Best params: {'C': 3.1622776601683795, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 8, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}
------------GRID----------------
0.589 (+/-0.145) for "{'C': 100, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.5, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.807 (+/-0.119) for "{'C': 7.943282347242816, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 4, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.806 (+/-0.109) for "{'C': 25.118864315095795, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 1, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.01, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 8, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.1, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.25, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.607 (+/-0.106) for "{'C': 7.943282347242816, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 2, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.789 (+/-0.135) for "{'C': 316.22776601683796, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.125, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.613 (+/-0.104) for "{'C': 100, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 2, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.001, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 16, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.807 (+/-0.165) for "{'C': 10, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 8, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.547 (+/-0.118) for "{'C': 7.943282347242816, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.25, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.01, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.125, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.807 (+/-0.119) for "{'C': 10, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 4, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.737 (+/-0.128) for "{'C': 7.943282347242816, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.125, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.807 (+/-0.165) for "{'C': 7.943282347242816, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 8, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.801 (+/-0.147) for "{'C': 316.22776601683796, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.25, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.1, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 4, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.770 (+/-0.159) for "{'C': 25.118864315095795, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.5, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.801 (+/-0.147) for "{'C': 501.18723362727246, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.25, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.573 (+/-0.130) for "{'C': 10, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 1, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.001, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.125, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 1, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.25, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.589 (+/-0.136) for "{'C': 5.011872336272722, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 1, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.807 (+/-0.165) for "{'C': 501.18723362727246, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 16, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.647 (+/-0.167) for "{'C': 316.22776601683796, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 4, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.01, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.25, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.589 (+/-0.136) for "{'C': 3.1622776601683795, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 1, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.701 (+/-0.212) for "{'C': 316.22776601683796, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 16, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.578 (+/-0.140) for "{'C': 7.943282347242816, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 1, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.722 (+/-0.178) for "{'C': 3.1622776601683795, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 16, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.801 (+/-0.120) for "{'C': 316.22776601683796, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.5, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 1, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.125, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.563 (+/-0.139) for "{'C': 19.952623149688797, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.25, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.01, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 1, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.573 (+/-0.148) for "{'C': 316.22776601683796, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.125, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.641 (+/-0.133) for "{'C': 25.118864315095795, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 4, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.001, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 2, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.723 (+/-0.205) for "{'C': 31.622776601683793, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 16, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.567 (+/-0.154) for "{'C': 5.011872336272722, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.5, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.801 (+/-0.120) for "{'C': 316.22776601683796, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 1, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.641 (+/-0.133) for "{'C': 7.943282347242816, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 4, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.01, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.125, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.709 (+/-0.128) for "{'C': 3.1622776601683795, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.125, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.684 (+/-0.165) for "{'C': 501.18723362727246, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 16, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.801 (+/-0.120) for "{'C': 100, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.5, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.584 (+/-0.132) for "{'C': 316.22776601683796, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.25, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.829 (+/-0.167) for "{'C': 3.1622776601683795, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 8, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.641 (+/-0.133) for "{'C': 10, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 4, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.551 (+/-0.167) for "{'C': 5.011872336272722, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.25, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.562 (+/-0.151) for "{'C': 25.118864315095795, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.125, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.717 (+/-0.179) for "{'C': 10, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 8, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.001, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.25, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.812 (+/-0.129) for "{'C': 31.622776601683793, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 4, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.748 (+/-0.134) for "{'C': 5.011872336272722, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.5, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.530 (+/-0.178) for "{'C': 7.943282347242816, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.125, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.717 (+/-0.195) for "{'C': 100, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 16, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.759 (+/-0.158) for "{'C': 31.622776601683793, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.125, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.759 (+/-0.145) for "{'C': 3.1622776601683795, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 1, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.807 (+/-0.165) for "{'C': 25.118864315095795, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 8, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.716 (+/-0.158) for "{'C': 100, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 8, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.613 (+/-0.104) for "{'C': 25.118864315095795, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 2, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.562 (+/-0.151) for "{'C': 100, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.125, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.589 (+/-0.126) for "{'C': 19.952623149688797, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 1, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.001, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 8, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.666 (+/-0.208) for "{'C': 0.1, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 1, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.802 (+/-0.157) for "{'C': 100, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 8, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.807 (+/-0.165) for "{'C': 316.22776601683796, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 16, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.802 (+/-0.131) for "{'C': 501.18723362727246, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 4, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.001, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.125, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.711 (+/-0.174) for "{'C': 25.118864315095795, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 8, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.584 (+/-0.157) for "{'C': 501.18723362727246, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.125, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.001, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 1, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.557 (+/-0.104) for "{'C': 1, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.125, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.769 (+/-0.145) for "{'C': 100, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.25, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.596 (+/-0.123) for "{'C': 1, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.5, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.807 (+/-0.165) for "{'C': 19.952623149688797, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 8, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.541 (+/-0.110) for "{'C': 10, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.25, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.641 (+/-0.207) for "{'C': 0.1, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.125, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.001, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 4, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.695 (+/-0.151) for "{'C': 316.22776601683796, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 8, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.641 (+/-0.133) for "{'C': 19.952623149688797, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 4, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.663 (+/-0.161) for "{'C': 501.18723362727246, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 4, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.01, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.5, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.723 (+/-0.149) for "{'C': 7.943282347242816, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 8, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.563 (+/-0.139) for "{'C': 31.622776601683793, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.25, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.806 (+/-0.109) for "{'C': 501.18723362727246, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 2, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.578 (+/-0.122) for "{'C': 316.22776601683796, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.5, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.584 (+/-0.120) for "{'C': 316.22776601683796, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 1, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.630 (+/-0.159) for "{'C': 100, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 4, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.796 (+/-0.141) for "{'C': 7.943282347242816, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 2, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.701 (+/-0.231) for "{'C': 0.1, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 16, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.01, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.5, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.552 (+/-0.171) for "{'C': 5.011872336272722, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.125, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.807 (+/-0.165) for "{'C': 5.011872336272722, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 8, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.579 (+/-0.125) for "{'C': 501.18723362727246, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.5, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.722 (+/-0.178) for "{'C': 5.011872336272722, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 16, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.1, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 2, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.737 (+/-0.128) for "{'C': 5.011872336272722, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.25, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.589 (+/-0.126) for "{'C': 25.118864315095795, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 1, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.764 (+/-0.140) for "{'C': 25.118864315095795, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.125, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.1, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.5, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.1, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 8, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.723 (+/-0.205) for "{'C': 25.118864315095795, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 16, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.801 (+/-0.120) for "{'C': 31.622776601683793, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 1, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.764 (+/-0.145) for "{'C': 31.622776601683793, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.5, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.722 (+/-0.178) for "{'C': 10, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 16, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.812 (+/-0.129) for "{'C': 31.622776601683793, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 2, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.717 (+/-0.189) for "{'C': 1, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 8, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.807 (+/-0.165) for "{'C': 19.952623149688797, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 16, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.589 (+/-0.126) for "{'C': 100, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 1, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.722 (+/-0.178) for "{'C': 7.943282347242816, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 16, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.568 (+/-0.123) for "{'C': 100, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.25, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.801 (+/-0.147) for "{'C': 501.18723362727246, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.125, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.801 (+/-0.120) for "{'C': 501.18723362727246, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 1, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.802 (+/-0.157) for "{'C': 501.18723362727246, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 8, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.812 (+/-0.129) for "{'C': 100, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 2, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.01, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 16, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.732 (+/-0.138) for "{'C': 3.1622776601683795, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.25, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.726 (+/-0.126) for "{'C': 5.011872336272722, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.125, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.568 (+/-0.113) for "{'C': 1, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.25, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.1, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.125, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.001, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 16, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.001, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 4, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.812 (+/-0.129) for "{'C': 19.952623149688797, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 2, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.562 (+/-0.151) for "{'C': 31.622776601683793, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.125, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.753 (+/-0.132) for "{'C': 1, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 2, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.552 (+/-0.148) for "{'C': 3.1622776601683795, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.125, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.770 (+/-0.161) for "{'C': 31.622776601683793, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.25, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.651 (+/-0.217) for "{'C': 0.1, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.5, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.765 (+/-0.176) for "{'C': 7.943282347242816, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 1, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.001, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 2, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.563 (+/-0.139) for "{'C': 25.118864315095795, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.25, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.589 (+/-0.145) for "{'C': 25.118864315095795, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.5, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.807 (+/-0.165) for "{'C': 7.943282347242816, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 16, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.787 (+/-0.164) for "{'C': 1, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 4, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.812 (+/-0.129) for "{'C': 25.118864315095795, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 2, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.01, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 8, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.567 (+/-0.154) for "{'C': 3.1622776601683795, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.5, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.608 (+/-0.109) for "{'C': 10, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 2, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.770 (+/-0.136) for "{'C': 19.952623149688797, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.25, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.728 (+/-0.195) for "{'C': 1, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 16, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.589 (+/-0.145) for "{'C': 31.622776601683793, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.5, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.589 (+/-0.145) for "{'C': 19.952623149688797, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.5, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.812 (+/-0.129) for "{'C': 25.118864315095795, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 4, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.737 (+/-0.128) for "{'C': 10, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.125, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.807 (+/-0.165) for "{'C': 100, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 16, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.753 (+/-0.125) for "{'C': 19.952623149688797, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.125, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.578 (+/-0.140) for "{'C': 10, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.5, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.01, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 2, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.769 (+/-0.155) for "{'C': 25.118864315095795, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.25, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.608 (+/-0.131) for "{'C': 316.22776601683796, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 2, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.806 (+/-0.109) for "{'C': 316.22776601683796, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 2, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.1, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 16, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.1, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 1, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.001, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.5, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.765 (+/-0.176) for "{'C': 10, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 1, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.573 (+/-0.171) for "{'C': 3.1622776601683795, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.25, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.712 (+/-0.147) for "{'C': 3.1622776601683795, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 8, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.791 (+/-0.139) for "{'C': 19.952623149688797, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 1, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.792 (+/-0.194) for "{'C': 1, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 8, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.01, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.25, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.01, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 4, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.742 (+/-0.139) for "{'C': 1, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 1, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.801 (+/-0.120) for "{'C': 501.18723362727246, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.5, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.765 (+/-0.176) for "{'C': 19.952623149688797, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.5, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.683 (+/-0.174) for "{'C': 0.1, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 4, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.807 (+/-0.165) for "{'C': 3.1622776601683795, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 16, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.770 (+/-0.159) for "{'C': 100, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.125, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.758 (+/-0.133) for "{'C': 10, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.25, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.710 (+/-0.176) for "{'C': 0.1, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 8, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.01, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 4, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.001, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 1, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.672 (+/-0.192) for "{'C': 0.1, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 2, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.589 (+/-0.120) for "{'C': 501.18723362727246, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 1, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.589 (+/-0.126) for "{'C': 31.622776601683793, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 1, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.578 (+/-0.140) for "{'C': 7.943282347242816, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.5, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.562 (+/-0.151) for "{'C': 19.952623149688797, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.125, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.802 (+/-0.131) for "{'C': 100, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 4, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.802 (+/-0.157) for "{'C': 316.22776601683796, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 8, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.801 (+/-0.120) for "{'C': 100, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 1, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.818 (+/-0.140) for "{'C': 5.011872336272722, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 4, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.737 (+/-0.112) for "{'C': 1, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.5, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.812 (+/-0.129) for "{'C': 19.952623149688797, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 4, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.812 (+/-0.096) for "{'C': 10, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 2, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.01, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 16, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.612 (+/-0.119) for "{'C': 3.1622776601683795, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 2, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.657 (+/-0.137) for "{'C': 1, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 4, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.596 (+/-0.121) for "{'C': 1, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 1, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.764 (+/-0.147) for "{'C': 5.011872336272722, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 1, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.001, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.5, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.807 (+/-0.165) for "{'C': 31.622776601683793, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 16, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.764 (+/-0.147) for "{'C': 7.943282347242816, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.5, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.613 (+/-0.104) for "{'C': 31.622776601683793, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 2, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.623 (+/-0.138) for "{'C': 1, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 2, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.742 (+/-0.133) for "{'C': 7.943282347242816, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.25, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.802 (+/-0.157) for "{'C': 31.622776601683793, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 8, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.823 (+/-0.137) for "{'C': 1, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 16, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.001, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.25, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.641 (+/-0.133) for "{'C': 31.622776601683793, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 4, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.001, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 8, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.602 (+/-0.099) for "{'C': 5.011872336272722, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 2, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.613 (+/-0.104) for "{'C': 19.952623149688797, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 2, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.536 (+/-0.177) for "{'C': 10, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.125, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.807 (+/-0.165) for "{'C': 5.011872336272722, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 16, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.781 (+/-0.193) for "{'C': 5.011872336272722, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 2, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.641 (+/-0.133) for "{'C': 5.011872336272722, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 4, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.802 (+/-0.131) for "{'C': 316.22776601683796, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 4, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.807 (+/-0.165) for "{'C': 25.118864315095795, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 16, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.747 (+/-0.143) for "{'C': 3.1622776601683795, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.5, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.01, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 2, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.807 (+/-0.165) for "{'C': 10, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 16, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.780 (+/-0.153) for "{'C': 3.1622776601683795, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 2, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.717 (+/-0.179) for "{'C': 19.952623149688797, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 8, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.711 (+/-0.174) for "{'C': 31.622776601683793, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 8, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.636 (+/-0.135) for "{'C': 3.1622776601683795, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 4, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.718 (+/-0.155) for "{'C': 5.011872336272722, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 8, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.690 (+/-0.203) for "{'C': 501.18723362727246, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 8, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.662 (+/-0.015) for "{'C': 0.01, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 1, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.802 (+/-0.180) for "{'C': 3.1622776601683795, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 4, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.764 (+/-0.147) for "{'C': 10, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.5, 'scale': False, 'normalize_distance': True, 'alpha': 0.0}"
0.641 (+/-0.207) for "{'C': 0.1, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.25, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.619 (+/-0.119) for "{'C': 501.18723362727246, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 2, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.569 (+/-0.116) for "{'C': 501.18723362727246, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 0.25, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
0.717 (+/-0.189) for "{'C': 19.952623149688797, 'epsilon': 0.07196856730011521, 'features_metric': 'dirac', 'method': 'shortest_path', 'gamma': 16, 'scale': True, 'normalize_distance': True, 'alpha': 0.0}"
GRID SEARCH RESULTS
----------------------------
Tuned tuned_parameters : [{'method': ['shortest_path'], 'normalize_distance': [True], 'scale': [False, True], 'gamma': [0.125, 0.25, 0.5, 1, 2, 4, 8, 16], 'alpha': [1.0], 'epsilon': [0.0372759372031494], 'features_metric': ['dirac'], 'C': [0.001, 0.01, 0.1, 1, 3.1622776601683795, 5.011872336272722, 7.943282347242816, 10, 19.952623149688797, 25.118864315095795, 31.622776601683793, 100, 316.22776601683796, 501.18723362727246]}]
CV splits : 10
ALL TIME : --- 1545.5691132545471 seconds ---
Best params: {'normalize_distance': True, 'method': 'shortest_path', 'scale': False, 'gamma': 0.5, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 100}
------------GRID----------------
0.640 (+/-0.186) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': False, 'gamma': 4, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 501.18723362727246}"
0.608 (+/-0.122) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': True, 'gamma': 16, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 25.118864315095795}"
0.662 (+/-0.015) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': False, 'gamma': 0.125, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 10}"
0.673 (+/-0.199) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': False, 'gamma': 8, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 316.22776601683796}"
0.683 (+/-0.145) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': False, 'gamma': 8, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 19.952623149688797}"
0.704 (+/-0.074) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': False, 'gamma': 16, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 1}"
0.679 (+/-0.102) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': False, 'gamma': 0.25, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 25.118864315095795}"
0.657 (+/-0.197) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': False, 'gamma': 2, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 501.18723362727246}"
0.608 (+/-0.123) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': True, 'gamma': 16, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 19.952623149688797}"
0.660 (+/-0.191) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': False, 'gamma': 2, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 316.22776601683796}"
0.662 (+/-0.015) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': True, 'gamma': 16, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 0.01}"
0.689 (+/-0.209) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': False, 'gamma': 4, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 100}"
0.695 (+/-0.154) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': False, 'gamma': 2, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 19.952623149688797}"
0.577 (+/-0.266) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': True, 'gamma': 0.125, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 10}"
0.662 (+/-0.015) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': False, 'gamma': 16, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 0.001}"
0.662 (+/-0.015) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': False, 'gamma': 0.125, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 7.943282347242816}"
0.581 (+/-0.143) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': True, 'gamma': 16, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 31.622776601683793}"
0.584 (+/-0.236) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': True, 'gamma': 0.5, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 19.952623149688797}"
0.604 (+/-0.249) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': True, 'gamma': 2, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 1}"
0.688 (+/-0.095) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': False, 'gamma': 0.5, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 25.118864315095795}"
0.576 (+/-0.145) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': True, 'gamma': 1, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 316.22776601683796}"
0.667 (+/-0.040) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': False, 'gamma': 0.125, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 25.118864315095795}"
0.662 (+/-0.015) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': False, 'gamma': 0.125, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 0.01}"
0.667 (+/-0.225) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': False, 'gamma': 0.125, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 501.18723362727246}"
0.588 (+/-0.157) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': True, 'gamma': 2, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 316.22776601683796}"
0.624 (+/-0.190) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': True, 'gamma': 16, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 7.943282347242816}"
0.677 (+/-0.147) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': False, 'gamma': 16, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 31.622776601683793}"
0.677 (+/-0.170) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': False, 'gamma': 1, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 316.22776601683796}"
0.615 (+/-0.254) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': True, 'gamma': 1, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 1}"
0.594 (+/-0.242) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': True, 'gamma': 1, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 3.1622776601683795}"
0.556 (+/-0.229) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': True, 'gamma': 8, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 1}"
0.560 (+/-0.160) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': True, 'gamma': 16, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 1}"
0.576 (+/-0.233) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': True, 'gamma': 0.5, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 316.22776601683796}"
0.603 (+/-0.196) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': True, 'gamma': 0.125, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 1}"
0.662 (+/-0.015) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': False, 'gamma': 0.5, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 0.1}"
0.683 (+/-0.211) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': False, 'gamma': 0.5, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 316.22776601683796}"
0.586 (+/-0.121) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': True, 'gamma': 16, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 316.22776601683796}"
0.662 (+/-0.015) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': False, 'gamma': 0.25, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 3.1622776601683795}"
0.662 (+/-0.015) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': False, 'gamma': 8, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 0.01}"
0.564 (+/-0.184) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': True, 'gamma': 4, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 501.18723362727246}"
0.667 (+/-0.060) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': False, 'gamma': 0.5, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 7.943282347242816}"
0.662 (+/-0.015) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': False, 'gamma': 1, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 0.001}"
0.596 (+/-0.255) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': True, 'gamma': 0.25, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 7.943282347242816}"
0.705 (+/-0.157) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': False, 'gamma': 0.125, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 316.22776601683796}"
0.699 (+/-0.149) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': False, 'gamma': 0.25, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 100}"
0.684 (+/-0.100) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': False, 'gamma': 8, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 1}"
0.616 (+/-0.231) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': True, 'gamma': 0.125, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 3.1622776601683795}"
0.645 (+/-0.173) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': True, 'gamma': 0.125, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 0.1}"
0.560 (+/-0.215) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': True, 'gamma': 8, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 316.22776601683796}"
0.689 (+/-0.060) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': False, 'gamma': 1, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 7.943282347242816}"
0.668 (+/-0.092) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': False, 'gamma': 0.25, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 19.952623149688797}"
0.662 (+/-0.015) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': False, 'gamma': 0.125, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 19.952623149688797}"
0.662 (+/-0.015) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': False, 'gamma': 2, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 1}"
0.597 (+/-0.106) for "{'normalize_distance': True, 'method': 'shortest_path', 'scale': True, 'gamma': 16, 'alpha': 1.0, 'epsilon': 0.0372759372031494, 'features_metric': 'dirac', 'C': 100}"