-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyoutbkp
1050 lines (1050 loc) · 213 KB
/
pyoutbkp
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
{'Precision': 0.2857142857142857, 'DetectionRate': 175.02094240837695, 'Threshold': '10', 'tp': 6, 'Accuracy': 0.8938547486033519, 'tn': 154, 'Recall': 0.6, 'Fscore': 0.3870967741935483, 'Name': 'adspy', 'fn': 4, 'fp': 15}
{'Precision': 0.8421052631578947, 'DetectionRate': 178.00523560209425, 'Threshold': '10', 'tp': 16, 'Accuracy': 0.9776536312849162, 'tn': 159, 'Recall': 0.9411764705882353, 'Fscore': 0.8888888888888888, 'Name': 'tr-dldr-swizzor', 'fn': 1, 'fp': 3}
{'Precision': 0.5, 'DetectionRate': 178.00523560209425, 'Threshold': '10', 'tp': 5, 'Accuracy': 0.9664804469273743, 'tn': 168, 'Recall': 0.8333333333333334, 'Fscore': 0.625, 'Name': 'dial', 'fn': 1, 'fp': 5}
{'Precision': 0.4666666666666667, 'DetectionRate': 176.01570680628274, 'Threshold': '10', 'tp': 14, 'Accuracy': 0.8938547486033519, 'tn': 146, 'Recall': 0.8235294117647058, 'Fscore': 0.5957446808510638, 'Name': 'w32-virut', 'fn': 3, 'fp': 16}
{'Precision': 0.6666666666666666, 'DetectionRate': 178.00523560209425, 'Threshold': '10', 'tp': 2, 'Accuracy': 0.9888268156424581, 'tn': 175, 'Recall': 0.6666666666666666, 'Fscore': 0.6666666666666666, 'Name': 'game-casino', 'fn': 1, 'fp': 1}
{'Precision': 0.7894736842105263, 'DetectionRate': 179.0, 'Threshold': '10', 'tp': 15, 'Accuracy': 0.9776536312849162, 'tn': 160, 'Recall': 1.0, 'Fscore': 0.8823529411764706, 'Name': 'game-dldr-fenomen', 'fn': 0, 'fp': 4}
{'Precision': 0.7142857142857143, 'DetectionRate': 166.06806282722513, 'Threshold': '10', 'tp': 10, 'Accuracy': 0.9050279329608939, 'tn': 152, 'Recall': 0.43478260869565216, 'Fscore': 0.5405405405405405, 'Name': 'game-dldr-trymedia', 'fn': 13, 'fp': 4}
{'Precision': 0.8666666666666667, 'DetectionRate': 179.0, 'Threshold': '10', 'tp': 13, 'Accuracy': 0.9888268156424581, 'tn': 164, 'Recall': 1.0, 'Fscore': 0.9285714285714286, 'Name': 'bds-udr', 'fn': 0, 'fp': 2}
{'Precision': 0.9, 'DetectionRate': 164.07853403141362, 'Threshold': '10', 'tp': 27, 'Accuracy': 0.8994413407821229, 'tn': 134, 'Recall': 0.6428571428571429, 'Fscore': 0.75, 'Name': 'worm-allaple', 'fn': 15, 'fp': 3}
{'Precision': 0.6666666666666666, 'DetectionRate': 175.02094240837695, 'Threshold': '10', 'tp': 2, 'Accuracy': 0.9720670391061452, 'tn': 172, 'Recall': 0.3333333333333333, 'Fscore': 0.4444444444444444, 'Name': 'tr-drop-', 'fn': 4, 'fp': 1}
{'Precision': 1.0, 'DetectionRate': 178.00523560209425, 'Threshold': '10', 'tp': 6, 'Accuracy': 0.994413407821229, 'tn': 172, 'Recall': 0.8571428571428571, 'Fscore': 0.923076923076923, 'Name': 'bds-hupigon', 'fn': 1, 'fp': 0}
{'Precision': 0.6666666666666666, 'DetectionRate': 165.07329842931938, 'Threshold': '10', 'tp': 6, 'Accuracy': 0.9050279329608939, 'tn': 156, 'Recall': 0.3, 'Fscore': 0.41379310344827586, 'Name': 'tr-dropper-gen', 'fn': 14, 'fp': 3}
{'tp': 15, 'Threshold': '11', 'Accuracy': 0.9776536312849162, 'Recall': 1.0, 'fp': 4, 'Name': 'game-dldr-fenomen', 'DetectionRate': 179.0, 'Precision': 0.7894736842105263, 'fn': 0, 'tn': 160, 'Fscore': 0.8823529411764706}
{'tp': 14, 'Threshold': '11', 'Accuracy': 0.8938547486033519, 'Recall': 0.8235294117647058, 'fp': 16, 'Name': 'w32-virut', 'DetectionRate': 176.01570680628274, 'Precision': 0.4666666666666667, 'fn': 3, 'tn': 146, 'Fscore': 0.5957446808510638}
{'tp': 27, 'Threshold': '11', 'Accuracy': 0.8994413407821229, 'Recall': 0.6428571428571429, 'fp': 3, 'Name': 'worm-allaple', 'DetectionRate': 164.07853403141362, 'Precision': 0.9, 'fn': 15, 'tn': 134, 'Fscore': 0.75}
{'tp': 5, 'Threshold': '11', 'Accuracy': 0.9664804469273743, 'Recall': 0.8333333333333334, 'fp': 5, 'Name': 'dial', 'DetectionRate': 178.00523560209425, 'Precision': 0.5, 'fn': 1, 'tn': 168, 'Fscore': 0.625}
{'tp': 6, 'Threshold': '11', 'Accuracy': 0.8938547486033519, 'Recall': 0.6, 'fp': 15, 'Name': 'adspy', 'DetectionRate': 175.02094240837695, 'Precision': 0.2857142857142857, 'fn': 4, 'tn': 154, 'Fscore': 0.3870967741935483}
{'tp': 2, 'Threshold': '11', 'Accuracy': 0.9888268156424581, 'Recall': 0.6666666666666666, 'fp': 1, 'Name': 'game-casino', 'DetectionRate': 178.00523560209425, 'Precision': 0.6666666666666666, 'fn': 1, 'tn': 175, 'Fscore': 0.6666666666666666}
{'tp': 6, 'Threshold': '11', 'Accuracy': 0.9050279329608939, 'Recall': 0.3, 'fp': 3, 'Name': 'tr-dropper-gen', 'DetectionRate': 165.07329842931938, 'Precision': 0.6666666666666666, 'fn': 14, 'tn': 156, 'Fscore': 0.41379310344827586}
{'tp': 16, 'Threshold': '11', 'Accuracy': 0.9776536312849162, 'Recall': 0.9411764705882353, 'fp': 3, 'Name': 'tr-dldr-swizzor', 'DetectionRate': 178.00523560209425, 'Precision': 0.8421052631578947, 'fn': 1, 'tn': 159, 'Fscore': 0.8888888888888888}
{'tp': 13, 'Threshold': '11', 'Accuracy': 0.9888268156424581, 'Recall': 1.0, 'fp': 2, 'Name': 'bds-udr', 'DetectionRate': 179.0, 'Precision': 0.8666666666666667, 'fn': 0, 'tn': 164, 'Fscore': 0.9285714285714286}
{'tp': 6, 'Threshold': '11', 'Accuracy': 0.994413407821229, 'Recall': 0.8571428571428571, 'fp': 0, 'Name': 'bds-hupigon', 'DetectionRate': 178.00523560209425, 'Precision': 1.0, 'fn': 1, 'tn': 172, 'Fscore': 0.923076923076923}
{'tp': 10, 'Threshold': '11', 'Accuracy': 0.9050279329608939, 'Recall': 0.43478260869565216, 'fp': 4, 'Name': 'game-dldr-trymedia', 'DetectionRate': 166.06806282722513, 'Precision': 0.7142857142857143, 'fn': 13, 'tn': 152, 'Fscore': 0.5405405405405405}
{'tp': 2, 'Threshold': '11', 'Accuracy': 0.9720670391061452, 'Recall': 0.3333333333333333, 'fp': 1, 'Name': 'tr-drop-', 'DetectionRate': 175.02094240837695, 'Precision': 0.6666666666666666, 'fn': 4, 'tn': 172, 'Fscore': 0.4444444444444444}
{'tp': 6, 'tn': 155, 'DetectionRate': 164.07329842931938, 'fp': 3, 'Threshold': '12', 'Fscore': 0.41379310344827586, 'Name': 'tr-dropper-gen', 'Accuracy': 0.9044943820224719, 'fn': 14, 'Precision': 0.6666666666666666, 'Recall': 0.3}
{'tp': 6, 'tn': 171, 'DetectionRate': 177.00523560209425, 'fp': 0, 'Threshold': '12', 'Fscore': 0.923076923076923, 'Name': 'bds-hupigon', 'Accuracy': 0.9943820224719101, 'fn': 1, 'Precision': 1.0, 'Recall': 0.8571428571428571}
{'tp': 15, 'tn': 159, 'DetectionRate': 178.0, 'fp': 4, 'Threshold': '12', 'Fscore': 0.8823529411764706, 'Name': 'game-dldr-fenomen', 'Accuracy': 0.9775280898876404, 'fn': 0, 'Precision': 0.7894736842105263, 'Recall': 1.0}
{'tp': 10, 'tn': 152, 'DetectionRate': 165.06806282722513, 'fp': 3, 'Threshold': '12', 'Fscore': 0.5555555555555555, 'Name': 'game-dldr-trymedia', 'Accuracy': 0.9101123595505618, 'fn': 13, 'Precision': 0.7692307692307693, 'Recall': 0.43478260869565216}
{'tp': 5, 'tn': 167, 'DetectionRate': 177.00523560209425, 'fp': 5, 'Threshold': '12', 'Fscore': 0.625, 'Name': 'dial', 'Accuracy': 0.9662921348314607, 'fn': 1, 'Precision': 0.5, 'Recall': 0.8333333333333334}
{'tp': 2, 'tn': 171, 'DetectionRate': 174.02094240837695, 'fp': 1, 'Threshold': '12', 'Fscore': 0.4444444444444444, 'Name': 'tr-drop-', 'Accuracy': 0.9719101123595506, 'fn': 4, 'Precision': 0.6666666666666666, 'Recall': 0.3333333333333333}
{'tp': 16, 'tn': 159, 'DetectionRate': 178.0, 'fp': 3, 'Threshold': '12', 'Fscore': 0.9142857142857143, 'Name': 'tr-dldr-swizzor', 'Accuracy': 0.9831460674157303, 'fn': 0, 'Precision': 0.8421052631578947, 'Recall': 1.0}
{'tp': 2, 'tn': 174, 'DetectionRate': 177.00523560209425, 'fp': 1, 'Threshold': '12', 'Fscore': 0.6666666666666666, 'Name': 'game-casino', 'Accuracy': 0.9887640449438202, 'fn': 1, 'Precision': 0.6666666666666666, 'Recall': 0.6666666666666666}
{'tp': 6, 'tn': 153, 'DetectionRate': 174.02094240837695, 'fp': 15, 'Threshold': '12', 'Fscore': 0.3870967741935483, 'Name': 'adspy', 'Accuracy': 0.8932584269662921, 'fn': 4, 'Precision': 0.2857142857142857, 'Recall': 0.6}
{'tp': 13, 'tn': 163, 'DetectionRate': 178.0, 'fp': 2, 'Threshold': '12', 'Fscore': 0.9285714285714286, 'Name': 'bds-udr', 'Accuracy': 0.9887640449438202, 'fn': 0, 'Precision': 0.8666666666666667, 'Recall': 1.0}
{'tp': 27, 'tn': 133, 'DetectionRate': 163.07853403141362, 'fp': 3, 'Threshold': '12', 'Fscore': 0.75, 'Name': 'worm-allaple', 'Accuracy': 0.898876404494382, 'fn': 15, 'Precision': 0.9, 'Recall': 0.6428571428571429}
{'tp': 14, 'tn': 145, 'DetectionRate': 175.01570680628274, 'fp': 16, 'Threshold': '12', 'Fscore': 0.5957446808510638, 'Name': 'w32-virut', 'Accuracy': 0.8932584269662921, 'fn': 3, 'Precision': 0.4666666666666667, 'Recall': 0.8235294117647058}
{'Recall': 1.0, 'tn': 163, 'fp': 2, 'Accuracy': 0.9887640449438202, 'Name': 'bds-udr', 'fn': 0, 'tp': 13, 'Precision': 0.8666666666666667, 'DetectionRate': 178.0, 'Threshold': '13', 'Fscore': 0.9285714285714286}
{'Recall': 0.3, 'tn': 155, 'fp': 3, 'Accuracy': 0.9044943820224719, 'Name': 'tr-dropper-gen', 'fn': 14, 'tp': 6, 'Precision': 0.6666666666666666, 'DetectionRate': 164.07329842931938, 'Threshold': '13', 'Fscore': 0.41379310344827586}
{'Recall': 0.6666666666666666, 'tn': 174, 'fp': 1, 'Accuracy': 0.9887640449438202, 'Name': 'game-casino', 'fn': 1, 'tp': 2, 'Precision': 0.6666666666666666, 'DetectionRate': 177.00523560209425, 'Threshold': '13', 'Fscore': 0.6666666666666666}
{'Recall': 0.6428571428571429, 'tn': 133, 'fp': 3, 'Accuracy': 0.898876404494382, 'Name': 'worm-allaple', 'fn': 15, 'tp': 27, 'Precision': 0.9, 'DetectionRate': 163.07853403141362, 'Threshold': '13', 'Fscore': 0.75}
{'Recall': 0.43478260869565216, 'tn': 152, 'fp': 3, 'Accuracy': 0.9101123595505618, 'Name': 'game-dldr-trymedia', 'fn': 13, 'tp': 10, 'Precision': 0.7692307692307693, 'DetectionRate': 165.06806282722513, 'Threshold': '13', 'Fscore': 0.5555555555555555}
{'Recall': 1.0, 'tn': 159, 'fp': 3, 'Accuracy': 0.9831460674157303, 'Name': 'tr-dldr-swizzor', 'fn': 0, 'tp': 16, 'Precision': 0.8421052631578947, 'DetectionRate': 178.0, 'Threshold': '13', 'Fscore': 0.9142857142857143}
{'Recall': 0.8571428571428571, 'tn': 171, 'fp': 0, 'Accuracy': 0.9943820224719101, 'Name': 'bds-hupigon', 'fn': 1, 'tp': 6, 'Precision': 1.0, 'DetectionRate': 177.00523560209425, 'Threshold': '13', 'Fscore': 0.923076923076923}
{'Recall': 0.3333333333333333, 'tn': 171, 'fp': 1, 'Accuracy': 0.9719101123595506, 'Name': 'tr-drop-', 'fn': 4, 'tp': 2, 'Precision': 0.6666666666666666, 'DetectionRate': 174.02094240837695, 'Threshold': '13', 'Fscore': 0.4444444444444444}
{'Recall': 0.8333333333333334, 'tn': 167, 'fp': 5, 'Accuracy': 0.9662921348314607, 'Name': 'dial', 'fn': 1, 'tp': 5, 'Precision': 0.5, 'DetectionRate': 177.00523560209425, 'Threshold': '13', 'Fscore': 0.625}
{'Recall': 1.0, 'tn': 159, 'fp': 4, 'Accuracy': 0.9775280898876404, 'Name': 'game-dldr-fenomen', 'fn': 0, 'tp': 15, 'Precision': 0.7894736842105263, 'DetectionRate': 178.0, 'Threshold': '13', 'Fscore': 0.8823529411764706}
{'Recall': 0.6, 'tn': 153, 'fp': 15, 'Accuracy': 0.8932584269662921, 'Name': 'adspy', 'fn': 4, 'tp': 6, 'Precision': 0.2857142857142857, 'DetectionRate': 174.02094240837695, 'Threshold': '13', 'Fscore': 0.3870967741935483}
{'Recall': 0.8235294117647058, 'tn': 145, 'fp': 16, 'Accuracy': 0.8932584269662921, 'Name': 'w32-virut', 'fn': 3, 'tp': 14, 'Precision': 0.4666666666666667, 'DetectionRate': 175.01570680628274, 'Threshold': '13', 'Fscore': 0.5957446808510638}
{'fp': 1, 'Name': 'game-casino', 'fn': 1, 'Threshold': '14', 'Accuracy': 0.9887640449438202, 'tp': 2, 'Fscore': 0.6666666666666666, 'Recall': 0.6666666666666666, 'tn': 174, 'DetectionRate': 177.00523560209425, 'Precision': 0.6666666666666666}
{'fp': 3, 'Name': 'worm-allaple', 'fn': 15, 'Threshold': '14', 'Accuracy': 0.898876404494382, 'tp': 27, 'Fscore': 0.75, 'Recall': 0.6428571428571429, 'tn': 133, 'DetectionRate': 163.07853403141362, 'Precision': 0.9}
{'fp': 2, 'Name': 'bds-udr', 'fn': 0, 'Threshold': '14', 'Accuracy': 0.9887640449438202, 'tp': 13, 'Fscore': 0.9285714285714286, 'Recall': 1.0, 'tn': 163, 'DetectionRate': 178.0, 'Precision': 0.8666666666666667}
{'fp': 5, 'Name': 'dial', 'fn': 1, 'Threshold': '14', 'Accuracy': 0.9662921348314607, 'tp': 5, 'Fscore': 0.625, 'Recall': 0.8333333333333334, 'tn': 167, 'DetectionRate': 177.00523560209425, 'Precision': 0.5}
{'fp': 3, 'Name': 'game-dldr-trymedia', 'fn': 13, 'Threshold': '14', 'Accuracy': 0.9101123595505618, 'tp': 10, 'Fscore': 0.5555555555555555, 'Recall': 0.43478260869565216, 'tn': 152, 'DetectionRate': 165.06806282722513, 'Precision': 0.7692307692307693}
{'fp': 1, 'Name': 'tr-drop-', 'fn': 4, 'Threshold': '14', 'Accuracy': 0.9719101123595506, 'tp': 2, 'Fscore': 0.4444444444444444, 'Recall': 0.3333333333333333, 'tn': 171, 'DetectionRate': 174.02094240837695, 'Precision': 0.6666666666666666}
{'fp': 4, 'Name': 'game-dldr-fenomen', 'fn': 0, 'Threshold': '14', 'Accuracy': 0.9775280898876404, 'tp': 15, 'Fscore': 0.8823529411764706, 'Recall': 1.0, 'tn': 159, 'DetectionRate': 178.0, 'Precision': 0.7894736842105263}
{'fp': 0, 'Name': 'bds-hupigon', 'fn': 1, 'Threshold': '14', 'Accuracy': 0.9943820224719101, 'tp': 6, 'Fscore': 0.923076923076923, 'Recall': 0.8571428571428571, 'tn': 171, 'DetectionRate': 177.00523560209425, 'Precision': 1.0}
{'fp': 15, 'Name': 'adspy', 'fn': 4, 'Threshold': '14', 'Accuracy': 0.8932584269662921, 'tp': 6, 'Fscore': 0.3870967741935483, 'Recall': 0.6, 'tn': 153, 'DetectionRate': 174.02094240837695, 'Precision': 0.2857142857142857}
{'fp': 3, 'Name': 'tr-dldr-swizzor', 'fn': 0, 'Threshold': '14', 'Accuracy': 0.9831460674157303, 'tp': 16, 'Fscore': 0.9142857142857143, 'Recall': 1.0, 'tn': 159, 'DetectionRate': 178.0, 'Precision': 0.8421052631578947}
{'fp': 16, 'Name': 'w32-virut', 'fn': 3, 'Threshold': '14', 'Accuracy': 0.8932584269662921, 'tp': 14, 'Fscore': 0.5957446808510638, 'Recall': 0.8235294117647058, 'tn': 145, 'DetectionRate': 175.01570680628274, 'Precision': 0.4666666666666667}
{'fp': 3, 'Name': 'tr-dropper-gen', 'fn': 14, 'Threshold': '14', 'Accuracy': 0.9044943820224719, 'tp': 6, 'Fscore': 0.41379310344827586, 'Recall': 0.3, 'tn': 155, 'DetectionRate': 164.07329842931938, 'Precision': 0.6666666666666666}
{'Name': 'game-casino', 'Accuracy': 0.9887005649717514, 'Threshold': '15', 'tp': 2, 'fp': 1, 'DetectionRate': 176.00523560209425, 'Precision': 0.6666666666666666, 'Fscore': 0.6666666666666666, 'tn': 173, 'fn': 1, 'Recall': 0.6666666666666666}
{'Name': 'worm-allaple', 'Accuracy': 0.8983050847457628, 'Threshold': '15', 'tp': 27, 'fp': 3, 'DetectionRate': 162.07853403141362, 'Precision': 0.9, 'Fscore': 0.75, 'tn': 132, 'fn': 15, 'Recall': 0.6428571428571429}
{'Name': 'w32-virut', 'Accuracy': 0.8926553672316384, 'Threshold': '15', 'tp': 14, 'fp': 16, 'DetectionRate': 174.01570680628274, 'Precision': 0.4666666666666667, 'Fscore': 0.5957446808510638, 'tn': 144, 'fn': 3, 'Recall': 0.8235294117647058}
{'Name': 'tr-dldr-swizzor', 'Accuracy': 0.9887005649717514, 'Threshold': '15', 'tp': 16, 'fp': 2, 'DetectionRate': 177.0, 'Precision': 0.8888888888888888, 'Fscore': 0.9411764705882353, 'tn': 159, 'fn': 0, 'Recall': 1.0}
{'Name': 'tr-drop-', 'Accuracy': 0.9717514124293786, 'Threshold': '15', 'tp': 2, 'fp': 1, 'DetectionRate': 173.02094240837695, 'Precision': 0.6666666666666666, 'Fscore': 0.4444444444444444, 'tn': 170, 'fn': 4, 'Recall': 0.3333333333333333}
{'Name': 'game-dldr-fenomen', 'Accuracy': 0.9774011299435028, 'Threshold': '15', 'tp': 15, 'fp': 4, 'DetectionRate': 177.0, 'Precision': 0.7894736842105263, 'Fscore': 0.8823529411764706, 'tn': 158, 'fn': 0, 'Recall': 1.0}
{'Name': 'game-dldr-trymedia', 'Accuracy': 0.9096045197740112, 'Threshold': '15', 'tp': 10, 'fp': 3, 'DetectionRate': 164.06806282722513, 'Precision': 0.7692307692307693, 'Fscore': 0.5555555555555555, 'tn': 151, 'fn': 13, 'Recall': 0.43478260869565216}
{'Name': 'bds-hupigon', 'Accuracy': 0.9943502824858758, 'Threshold': '15', 'tp': 6, 'fp': 0, 'DetectionRate': 176.00523560209425, 'Precision': 1.0, 'Fscore': 0.923076923076923, 'tn': 170, 'fn': 1, 'Recall': 0.8571428571428571}
{'Name': 'adspy', 'Accuracy': 0.8926553672316384, 'Threshold': '15', 'tp': 6, 'fp': 15, 'DetectionRate': 173.02094240837695, 'Precision': 0.2857142857142857, 'Fscore': 0.3870967741935483, 'tn': 152, 'fn': 4, 'Recall': 0.6}
{'Name': 'dial', 'Accuracy': 0.9661016949152542, 'Threshold': '15', 'tp': 5, 'fp': 5, 'DetectionRate': 176.00523560209425, 'Precision': 0.5, 'Fscore': 0.625, 'tn': 166, 'fn': 1, 'Recall': 0.8333333333333334}
{'Name': 'tr-dropper-gen', 'Accuracy': 0.9096045197740112, 'Threshold': '15', 'tp': 6, 'fp': 3, 'DetectionRate': 164.06806282722513, 'Precision': 0.6666666666666666, 'Fscore': 0.42857142857142855, 'tn': 155, 'fn': 13, 'Recall': 0.3157894736842105}
{'Name': 'bds-udr', 'Accuracy': 0.9887005649717514, 'Threshold': '15', 'tp': 13, 'fp': 2, 'DetectionRate': 177.0, 'Precision': 0.8666666666666667, 'Fscore': 0.9285714285714286, 'tn': 162, 'fn': 0, 'Recall': 1.0}
{'Precision': 1.0, 'Name': 'bds-hupigon', 'Threshold': '16', 'Fscore': 0.923076923076923, 'tp': 6, 'fp': 0, 'tn': 168, 'Accuracy': 0.9942857142857143, 'fn': 1, 'DetectionRate': 174.00523560209425, 'Recall': 0.8571428571428571}
{'Precision': 0.7894736842105263, 'Name': 'game-dldr-fenomen', 'Threshold': '16', 'Fscore': 0.8823529411764706, 'tp': 15, 'fp': 4, 'tn': 156, 'Accuracy': 0.9771428571428571, 'fn': 0, 'DetectionRate': 175.0, 'Recall': 1.0}
{'Precision': 0.5, 'Name': 'dial', 'Threshold': '16', 'Fscore': 0.625, 'tp': 5, 'fp': 5, 'tn': 164, 'Accuracy': 0.9657142857142857, 'fn': 1, 'DetectionRate': 174.00523560209425, 'Recall': 0.8333333333333334}
{'Precision': 0.8666666666666667, 'Name': 'bds-udr', 'Threshold': '16', 'Fscore': 0.9285714285714286, 'tp': 13, 'fp': 2, 'tn': 160, 'Accuracy': 0.9885714285714285, 'fn': 0, 'DetectionRate': 175.0, 'Recall': 1.0}
{'Precision': 0.9, 'Name': 'worm-allaple', 'Threshold': '16', 'Fscore': 0.75, 'tp': 27, 'fp': 3, 'tn': 130, 'Accuracy': 0.8971428571428571, 'fn': 15, 'DetectionRate': 160.07853403141362, 'Recall': 0.6428571428571429}
{'Precision': 0.8333333333333334, 'Name': 'game-dldr-trymedia', 'Threshold': '16', 'Fscore': 0.5714285714285714, 'tp': 10, 'fp': 2, 'tn': 150, 'Accuracy': 0.9142857142857143, 'fn': 13, 'DetectionRate': 162.06806282722513, 'Recall': 0.43478260869565216}
{'Precision': 0.4666666666666667, 'Name': 'w32-virut', 'Threshold': '16', 'Fscore': 0.5957446808510638, 'tp': 14, 'fp': 16, 'tn': 142, 'Accuracy': 0.8914285714285715, 'fn': 3, 'DetectionRate': 172.01570680628274, 'Recall': 0.8235294117647058}
{'Precision': 0.8823529411764706, 'Name': 'tr-dldr-swizzor', 'Threshold': '16', 'Fscore': 0.9375, 'tp': 15, 'fp': 2, 'tn': 158, 'Accuracy': 0.9885714285714285, 'fn': 0, 'DetectionRate': 175.0, 'Recall': 1.0}
{'Precision': 0.6666666666666666, 'Name': 'tr-drop-', 'Threshold': '16', 'Fscore': 0.4444444444444444, 'tp': 2, 'fp': 1, 'tn': 168, 'Accuracy': 0.9714285714285714, 'fn': 4, 'DetectionRate': 171.02094240837695, 'Recall': 0.3333333333333333}
{'Precision': 0.6666666666666666, 'Name': 'tr-dropper-gen', 'Threshold': '16', 'Fscore': 0.4444444444444444, 'tp': 6, 'fp': 3, 'tn': 154, 'Accuracy': 0.9142857142857143, 'fn': 12, 'DetectionRate': 163.0628272251309, 'Recall': 0.3333333333333333}
{'Precision': 0.2857142857142857, 'Name': 'adspy', 'Threshold': '16', 'Fscore': 0.3870967741935483, 'tp': 6, 'fp': 15, 'tn': 150, 'Accuracy': 0.8914285714285715, 'fn': 4, 'DetectionRate': 171.02094240837695, 'Recall': 0.6}
{'Precision': 0.6666666666666666, 'Name': 'game-casino', 'Threshold': '16', 'Fscore': 0.6666666666666666, 'tp': 2, 'fp': 1, 'tn': 171, 'Accuracy': 0.9885714285714285, 'fn': 1, 'DetectionRate': 174.00523560209425, 'Recall': 0.6666666666666666}
{'Accuracy': 0.9655172413793104, 'Precision': 0.5, 'tp': 5, 'Recall': 0.8333333333333334, 'Threshold': '17', 'DetectionRate': 173.00523560209425, 'fn': 1, 'Name': 'dial', 'tn': 163, 'fp': 5, 'Fscore': 0.625}
{'Accuracy': 0.9885057471264368, 'Precision': 0.8666666666666667, 'tp': 13, 'Recall': 1.0, 'Threshold': '17', 'DetectionRate': 174.0, 'fn': 0, 'Name': 'bds-udr', 'tn': 159, 'fp': 2, 'Fscore': 0.9285714285714286}
{'Accuracy': 0.9885057471264368, 'Precision': 0.6666666666666666, 'tp': 2, 'Recall': 0.6666666666666666, 'Threshold': '17', 'DetectionRate': 173.00523560209425, 'fn': 1, 'Name': 'game-casino', 'tn': 170, 'fp': 1, 'Fscore': 0.6666666666666666}
{'Accuracy': 0.8908045977011494, 'Precision': 0.4666666666666667, 'tp': 14, 'Recall': 0.8235294117647058, 'Threshold': '17', 'DetectionRate': 171.01570680628274, 'fn': 3, 'Name': 'w32-virut', 'tn': 141, 'fp': 16, 'Fscore': 0.5957446808510638}
{'Accuracy': 0.9942528735632183, 'Precision': 1.0, 'tp': 6, 'Recall': 0.8571428571428571, 'Threshold': '17', 'DetectionRate': 173.00523560209425, 'fn': 1, 'Name': 'bds-hupigon', 'tn': 167, 'fp': 0, 'Fscore': 0.923076923076923}
{'Accuracy': 0.9885057471264368, 'Precision': 0.8823529411764706, 'tp': 15, 'Recall': 1.0, 'Threshold': '17', 'DetectionRate': 174.0, 'fn': 0, 'Name': 'tr-dldr-swizzor', 'tn': 157, 'fp': 2, 'Fscore': 0.9375}
{'Accuracy': 0.9770114942528736, 'Precision': 0.7894736842105263, 'tp': 15, 'Recall': 1.0, 'Threshold': '17', 'DetectionRate': 174.0, 'fn': 0, 'Name': 'game-dldr-fenomen', 'tn': 155, 'fp': 4, 'Fscore': 0.8823529411764706}
{'Accuracy': 0.9195402298850575, 'Precision': 0.6666666666666666, 'tp': 6, 'Recall': 0.35294117647058826, 'Threshold': '17', 'DetectionRate': 163.05759162303664, 'fn': 11, 'Name': 'tr-dropper-gen', 'tn': 154, 'fp': 3, 'Fscore': 0.46153846153846156}
{'Accuracy': 0.9770114942528736, 'Precision': 1.0, 'tp': 2, 'Recall': 0.3333333333333333, 'Threshold': '17', 'DetectionRate': 170.02094240837695, 'fn': 4, 'Name': 'tr-drop-', 'tn': 168, 'fp': 0, 'Fscore': 0.5}
{'Accuracy': 0.9137931034482759, 'Precision': 0.8333333333333334, 'tp': 10, 'Recall': 0.43478260869565216, 'Threshold': '17', 'DetectionRate': 161.06806282722513, 'fn': 13, 'Name': 'game-dldr-trymedia', 'tn': 149, 'fp': 2, 'Fscore': 0.5714285714285714}
{'Accuracy': 0.896551724137931, 'Precision': 0.9, 'tp': 27, 'Recall': 0.6428571428571429, 'Threshold': '17', 'DetectionRate': 159.07853403141362, 'fn': 15, 'Name': 'worm-allaple', 'tn': 129, 'fp': 3, 'Fscore': 0.75}
{'Accuracy': 0.8908045977011494, 'Precision': 0.2857142857142857, 'tp': 6, 'Recall': 0.6, 'Threshold': '17', 'DetectionRate': 170.02094240837695, 'fn': 4, 'Name': 'adspy', 'tn': 149, 'fp': 15, 'Fscore': 0.3870967741935483}
{'Precision': 1.0, 'fn': 1, 'fp': 0, 'DetectionRate': 171.00523560209425, 'tn': 165, 'tp': 6, 'Threshold': '18', 'Name': 'bds-hupigon', 'Fscore': 0.923076923076923, 'Accuracy': 0.9941860465116279, 'Recall': 0.8571428571428571}
{'Precision': 0.8333333333333334, 'fn': 13, 'fp': 2, 'DetectionRate': 159.06806282722513, 'tn': 147, 'tp': 10, 'Threshold': '18', 'Name': 'game-dldr-trymedia', 'Fscore': 0.5714285714285714, 'Accuracy': 0.9127906976744186, 'Recall': 0.43478260869565216}
{'Precision': 0.8666666666666667, 'fn': 0, 'fp': 2, 'DetectionRate': 172.0, 'tn': 157, 'tp': 13, 'Threshold': '18', 'Name': 'bds-udr', 'Fscore': 0.9285714285714286, 'Accuracy': 0.9883720930232558, 'Recall': 1.0}
{'Precision': 0.9, 'fn': 15, 'fp': 3, 'DetectionRate': 157.07853403141362, 'tn': 127, 'tp': 27, 'Threshold': '18', 'Name': 'worm-allaple', 'Fscore': 0.75, 'Accuracy': 0.8953488372093024, 'Recall': 0.6428571428571429}
{'Precision': 0.7894736842105263, 'fn': 0, 'fp': 4, 'DetectionRate': 172.0, 'tn': 153, 'tp': 15, 'Threshold': '18', 'Name': 'game-dldr-fenomen', 'Fscore': 0.8823529411764706, 'Accuracy': 0.9767441860465116, 'Recall': 1.0}
{'Precision': 0.6666666666666666, 'fn': 10, 'fp': 3, 'DetectionRate': 162.0523560209424, 'tn': 153, 'tp': 6, 'Threshold': '18', 'Name': 'tr-dropper-gen', 'Fscore': 0.4800000000000001, 'Accuracy': 0.9244186046511628, 'Recall': 0.375}
{'Precision': 0.2857142857142857, 'fn': 4, 'fp': 15, 'DetectionRate': 168.02094240837695, 'tn': 147, 'tp': 6, 'Threshold': '18', 'Name': 'adspy', 'Fscore': 0.3870967741935483, 'Accuracy': 0.8895348837209303, 'Recall': 0.6}
{'Precision': 1.0, 'fn': 4, 'fp': 0, 'DetectionRate': 168.02094240837695, 'tn': 166, 'tp': 2, 'Threshold': '18', 'Name': 'tr-drop-', 'Fscore': 0.5, 'Accuracy': 0.9767441860465116, 'Recall': 0.3333333333333333}
{'Precision': 0.8823529411764706, 'fn': 0, 'fp': 2, 'DetectionRate': 172.0, 'tn': 155, 'tp': 15, 'Threshold': '18', 'Name': 'tr-dldr-swizzor', 'Fscore': 0.9375, 'Accuracy': 0.9883720930232558, 'Recall': 1.0}
{'Precision': 0.5, 'fn': 1, 'fp': 4, 'DetectionRate': 171.00523560209425, 'tn': 163, 'tp': 4, 'Threshold': '18', 'Name': 'dial', 'Fscore': 0.6153846153846154, 'Accuracy': 0.9709302325581395, 'Recall': 0.8}
{'Precision': 0.6666666666666666, 'fn': 1, 'fp': 1, 'DetectionRate': 171.00523560209425, 'tn': 168, 'tp': 2, 'Threshold': '18', 'Name': 'game-casino', 'Fscore': 0.6666666666666666, 'Accuracy': 0.9883720930232558, 'Recall': 0.6666666666666666}
{'Precision': 0.4666666666666667, 'fn': 3, 'fp': 16, 'DetectionRate': 169.01570680628274, 'tn': 139, 'tp': 14, 'Threshold': '18', 'Name': 'w32-virut', 'Fscore': 0.5957446808510638, 'Accuracy': 0.8895348837209303, 'Recall': 0.8235294117647058}
{'Name': 'game-casino', 'Fscore': 0.6666666666666666, 'fp': 1, 'fn': 1, 'tn': 168, 'Accuracy': 0.9883720930232558, 'Recall': 0.6666666666666666, 'Threshold': '19', 'tp': 2, 'Precision': 0.6666666666666666, 'DetectionRate': 171.00523560209425}
{'Name': 'game-dldr-trymedia', 'Fscore': 0.5714285714285714, 'fp': 2, 'fn': 13, 'tn': 147, 'Accuracy': 0.9127906976744186, 'Recall': 0.43478260869565216, 'Threshold': '19', 'tp': 10, 'Precision': 0.8333333333333334, 'DetectionRate': 159.06806282722513}
{'Name': 'worm-allaple', 'Fscore': 0.75, 'fp': 3, 'fn': 15, 'tn': 127, 'Accuracy': 0.8953488372093024, 'Recall': 0.6428571428571429, 'Threshold': '19', 'tp': 27, 'Precision': 0.9, 'DetectionRate': 157.07853403141362}
{'Name': 'bds-hupigon', 'Fscore': 0.923076923076923, 'fp': 0, 'fn': 1, 'tn': 165, 'Accuracy': 0.9941860465116279, 'Recall': 0.8571428571428571, 'Threshold': '19', 'tp': 6, 'Precision': 1.0, 'DetectionRate': 171.00523560209425}
{'Name': 'adspy', 'Fscore': 0.3870967741935483, 'fp': 15, 'fn': 4, 'tn': 147, 'Accuracy': 0.8895348837209303, 'Recall': 0.6, 'Threshold': '19', 'tp': 6, 'Precision': 0.2857142857142857, 'DetectionRate': 168.02094240837695}
{'Name': 'tr-dropper-gen', 'Fscore': 0.4800000000000001, 'fp': 3, 'fn': 10, 'tn': 153, 'Accuracy': 0.9244186046511628, 'Recall': 0.375, 'Threshold': '19', 'tp': 6, 'Precision': 0.6666666666666666, 'DetectionRate': 162.0523560209424}
{'Name': 'tr-dldr-swizzor', 'Fscore': 0.9375, 'fp': 2, 'fn': 0, 'tn': 155, 'Accuracy': 0.9883720930232558, 'Recall': 1.0, 'Threshold': '19', 'tp': 15, 'Precision': 0.8823529411764706, 'DetectionRate': 172.0}
{'Name': 'dial', 'Fscore': 0.6153846153846154, 'fp': 4, 'fn': 1, 'tn': 163, 'Accuracy': 0.9709302325581395, 'Recall': 0.8, 'Threshold': '19', 'tp': 4, 'Precision': 0.5, 'DetectionRate': 171.00523560209425}
{'Name': 'w32-virut', 'Fscore': 0.5957446808510638, 'fp': 16, 'fn': 3, 'tn': 139, 'Accuracy': 0.8895348837209303, 'Recall': 0.8235294117647058, 'Threshold': '19', 'tp': 14, 'Precision': 0.4666666666666667, 'DetectionRate': 169.01570680628274}
{'Name': 'game-dldr-fenomen', 'Fscore': 0.8823529411764706, 'fp': 4, 'fn': 0, 'tn': 153, 'Accuracy': 0.9767441860465116, 'Recall': 1.0, 'Threshold': '19', 'tp': 15, 'Precision': 0.7894736842105263, 'DetectionRate': 172.0}
{'Name': 'bds-udr', 'Fscore': 0.9285714285714286, 'fp': 2, 'fn': 0, 'tn': 157, 'Accuracy': 0.9883720930232558, 'Recall': 1.0, 'Threshold': '19', 'tp': 13, 'Precision': 0.8666666666666667, 'DetectionRate': 172.0}
{'Name': 'tr-drop-', 'Fscore': 0.5, 'fp': 0, 'fn': 4, 'tn': 166, 'Accuracy': 0.9767441860465116, 'Recall': 0.3333333333333333, 'Threshold': '19', 'tp': 2, 'Precision': 1.0, 'DetectionRate': 168.02094240837695}
{'Recall': 0.6428571428571429, 'fn': 15, 'tp': 27, 'fp': 2, 'DetectionRate': 154.07853403141362, 'Fscore': 0.7605633802816901, 'tn': 125, 'Precision': 0.9310344827586207, 'Threshold': '20', 'Accuracy': 0.8994082840236687, 'Name': 'worm-allaple'}
{'Recall': 1.0, 'fn': 0, 'tp': 13, 'fp': 2, 'DetectionRate': 169.0, 'Fscore': 0.9285714285714286, 'tn': 154, 'Precision': 0.8666666666666667, 'Threshold': '20', 'Accuracy': 0.9881656804733728, 'Name': 'bds-udr'}
{'Recall': 0.625, 'fn': 3, 'tp': 5, 'fp': 15, 'DetectionRate': 166.01570680628274, 'Fscore': 0.35714285714285715, 'tn': 146, 'Precision': 0.25, 'Threshold': '20', 'Accuracy': 0.893491124260355, 'Name': 'adspy'}
{'Recall': 0.8, 'fn': 1, 'tp': 4, 'fp': 3, 'DetectionRate': 168.00523560209425, 'Fscore': 0.6666666666666666, 'tn': 161, 'Precision': 0.5714285714285714, 'Threshold': '20', 'Accuracy': 0.9763313609467456, 'Name': 'dial'}
{'Recall': 0.8571428571428571, 'fn': 1, 'tp': 6, 'fp': 0, 'DetectionRate': 168.00523560209425, 'Fscore': 0.923076923076923, 'tn': 162, 'Precision': 1.0, 'Threshold': '20', 'Accuracy': 0.9940828402366864, 'Name': 'bds-hupigon'}
{'Recall': 1.0, 'fn': 0, 'tp': 15, 'fp': 4, 'DetectionRate': 169.0, 'Fscore': 0.8823529411764706, 'tn': 150, 'Precision': 0.7894736842105263, 'Threshold': '20', 'Accuracy': 0.9763313609467456, 'Name': 'game-dldr-fenomen'}
{'Recall': 0.4, 'fn': 9, 'tp': 6, 'fp': 3, 'DetectionRate': 160.04712041884818, 'Fscore': 0.5, 'tn': 151, 'Precision': 0.6666666666666666, 'Threshold': '20', 'Accuracy': 0.9289940828402367, 'Name': 'tr-dropper-gen'}
{'Recall': 0.6666666666666666, 'fn': 1, 'tp': 2, 'fp': 1, 'DetectionRate': 168.00523560209425, 'Fscore': 0.6666666666666666, 'tn': 165, 'Precision': 0.6666666666666666, 'Threshold': '20', 'Accuracy': 0.9881656804733728, 'Name': 'game-casino'}
{'Recall': 0.3333333333333333, 'fn': 4, 'tp': 2, 'fp': 0, 'DetectionRate': 165.02094240837695, 'Fscore': 0.5, 'tn': 163, 'Precision': 1.0, 'Threshold': '20', 'Accuracy': 0.9763313609467456, 'Name': 'tr-drop-'}
{'Recall': 0.8235294117647058, 'fn': 3, 'tp': 14, 'fp': 16, 'DetectionRate': 166.01570680628274, 'Fscore': 0.5957446808510638, 'tn': 136, 'Precision': 0.4666666666666667, 'Threshold': '20', 'Accuracy': 0.8875739644970414, 'Name': 'w32-virut'}
{'Recall': 1.0, 'fn': 0, 'tp': 15, 'fp': 2, 'DetectionRate': 169.0, 'Fscore': 0.9375, 'tn': 152, 'Precision': 0.8823529411764706, 'Threshold': '20', 'Accuracy': 0.9881656804733728, 'Name': 'tr-dldr-swizzor'}
{'Recall': 0.43478260869565216, 'fn': 13, 'tp': 10, 'fp': 2, 'DetectionRate': 156.06806282722513, 'Fscore': 0.5714285714285714, 'tn': 144, 'Precision': 0.8333333333333334, 'Threshold': '20', 'Accuracy': 0.9112426035502958, 'Name': 'game-dldr-trymedia'}
{'Precision': 0.7894736842105263, 'Threshold': '21', 'Name': 'game-dldr-fenomen', 'Recall': 1.0, 'tn': 148, 'Accuracy': 0.9760479041916168, 'Fscore': 0.8823529411764706, 'tp': 15, 'fn': 0, 'DetectionRate': 167.0, 'fp': 4}
{'Precision': 0.6666666666666666, 'Threshold': '21', 'Name': 'game-casino', 'Recall': 0.6666666666666666, 'tn': 163, 'Accuracy': 0.9880239520958084, 'Fscore': 0.6666666666666666, 'tp': 2, 'fn': 1, 'DetectionRate': 166.00523560209425, 'fp': 1}
{'Precision': 0.4666666666666667, 'Threshold': '21', 'Name': 'w32-virut', 'Recall': 0.8235294117647058, 'tn': 134, 'Accuracy': 0.8862275449101796, 'Fscore': 0.5957446808510638, 'tp': 14, 'fn': 3, 'DetectionRate': 164.01570680628274, 'fp': 16}
{'Precision': 0.8333333333333334, 'Threshold': '21', 'Name': 'game-dldr-trymedia', 'Recall': 0.43478260869565216, 'tn': 142, 'Accuracy': 0.9101796407185628, 'Fscore': 0.5714285714285714, 'tp': 10, 'fn': 13, 'DetectionRate': 154.06806282722513, 'fp': 2}
{'Precision': 1.0, 'Threshold': '21', 'Name': 'tr-drop-', 'Recall': 0.3333333333333333, 'tn': 161, 'Accuracy': 0.9760479041916168, 'Fscore': 0.5, 'tp': 2, 'fn': 4, 'DetectionRate': 163.02094240837695, 'fp': 0}
{'Precision': 0.9310344827586207, 'Threshold': '21', 'Name': 'worm-allaple', 'Recall': 0.6428571428571429, 'tn': 123, 'Accuracy': 0.8982035928143712, 'Fscore': 0.7605633802816901, 'tp': 27, 'fn': 15, 'DetectionRate': 152.07853403141362, 'fp': 2}
{'Precision': 0.6666666666666666, 'Threshold': '21', 'Name': 'dial', 'Recall': 0.8, 'tn': 160, 'Accuracy': 0.9820359281437125, 'Fscore': 0.7272727272727272, 'tp': 4, 'fn': 1, 'DetectionRate': 166.00523560209425, 'fp': 2}
{'Precision': 1.0, 'Threshold': '21', 'Name': 'bds-hupigon', 'Recall': 0.8571428571428571, 'tn': 160, 'Accuracy': 0.9940119760479041, 'Fscore': 0.923076923076923, 'tp': 6, 'fn': 1, 'DetectionRate': 166.00523560209425, 'fp': 0}
{'Precision': 0.8666666666666667, 'Threshold': '21', 'Name': 'bds-udr', 'Recall': 1.0, 'tn': 152, 'Accuracy': 0.9880239520958084, 'Fscore': 0.9285714285714286, 'tp': 13, 'fn': 0, 'DetectionRate': 167.0, 'fp': 2}
{'Precision': 0.25, 'Threshold': '21', 'Name': 'adspy', 'Recall': 0.7142857142857143, 'tn': 145, 'Accuracy': 0.8982035928143712, 'Fscore': 0.37037037037037035, 'tp': 5, 'fn': 2, 'DetectionRate': 165.0104712041885, 'fp': 15}
{'Precision': 0.625, 'Threshold': '21', 'Name': 'tr-dropper-gen', 'Recall': 0.35714285714285715, 'tn': 150, 'Accuracy': 0.9281437125748503, 'Fscore': 0.45454545454545453, 'tp': 5, 'fn': 9, 'DetectionRate': 158.04712041884818, 'fp': 3}
{'Precision': 0.8823529411764706, 'Threshold': '21', 'Name': 'tr-dldr-swizzor', 'Recall': 1.0, 'tn': 150, 'Accuracy': 0.9880239520958084, 'Fscore': 0.9375, 'tp': 15, 'fn': 0, 'DetectionRate': 167.0, 'fp': 2}
{'tn': 133, 'Threshold': '22', 'Name': 'w32-virut', 'Precision': 0.4666666666666667, 'tp': 14, 'Fscore': 0.5957446808510638, 'DetectionRate': 163.01570680628274, 'fn': 3, 'Accuracy': 0.8855421686746988, 'fp': 16, 'Recall': 0.8235294117647058}
{'tn': 147, 'Threshold': '22', 'Name': 'game-dldr-fenomen', 'Precision': 0.7894736842105263, 'tp': 15, 'Fscore': 0.8823529411764706, 'DetectionRate': 166.0, 'fn': 0, 'Accuracy': 0.9759036144578314, 'fp': 4, 'Recall': 1.0}
{'tn': 160, 'Threshold': '22', 'Name': 'dial', 'Precision': 0.8, 'tp': 4, 'Fscore': 0.8000000000000002, 'DetectionRate': 165.00523560209425, 'fn': 1, 'Accuracy': 0.9879518072289156, 'fp': 1, 'Recall': 0.8}
{'tn': 149, 'Threshold': '22', 'Name': 'tr-dropper-gen', 'Precision': 0.625, 'tp': 5, 'Fscore': 0.45454545454545453, 'DetectionRate': 157.04712041884818, 'fn': 9, 'Accuracy': 0.927710843373494, 'fp': 3, 'Recall': 0.35714285714285715}
{'tn': 159, 'Threshold': '22', 'Name': 'bds-hupigon', 'Precision': 1.0, 'tp': 6, 'Fscore': 0.923076923076923, 'DetectionRate': 165.00523560209425, 'fn': 1, 'Accuracy': 0.9939759036144579, 'fp': 0, 'Recall': 0.8571428571428571}
{'tn': 122, 'Threshold': '22', 'Name': 'worm-allaple', 'Precision': 0.9310344827586207, 'tp': 27, 'Fscore': 0.7605633802816901, 'DetectionRate': 151.07853403141362, 'fn': 15, 'Accuracy': 0.8975903614457831, 'fp': 2, 'Recall': 0.6428571428571429}
{'tn': 144, 'Threshold': '22', 'Name': 'adspy', 'Precision': 0.25, 'tp': 5, 'Fscore': 0.37037037037037035, 'DetectionRate': 164.0104712041885, 'fn': 2, 'Accuracy': 0.8975903614457831, 'fp': 15, 'Recall': 0.7142857142857143}
{'tn': 141, 'Threshold': '22', 'Name': 'game-dldr-trymedia', 'Precision': 0.8333333333333334, 'tp': 10, 'Fscore': 0.5714285714285714, 'DetectionRate': 153.06806282722513, 'fn': 13, 'Accuracy': 0.9096385542168675, 'fp': 2, 'Recall': 0.43478260869565216}
{'tn': 149, 'Threshold': '22', 'Name': 'tr-dldr-swizzor', 'Precision': 0.8823529411764706, 'tp': 15, 'Fscore': 0.9375, 'DetectionRate': 166.0, 'fn': 0, 'Accuracy': 0.9879518072289156, 'fp': 2, 'Recall': 1.0}
{'tn': 160, 'Threshold': '22', 'Name': 'tr-drop-', 'Precision': 1.0, 'tp': 2, 'Fscore': 0.5, 'DetectionRate': 162.02094240837695, 'fn': 4, 'Accuracy': 0.9759036144578314, 'fp': 0, 'Recall': 0.3333333333333333}
{'tn': 151, 'Threshold': '22', 'Name': 'bds-udr', 'Precision': 0.8666666666666667, 'tp': 13, 'Fscore': 0.9285714285714286, 'DetectionRate': 166.0, 'fn': 0, 'Accuracy': 0.9879518072289156, 'fp': 2, 'Recall': 1.0}
{'tn': 163, 'Threshold': '22', 'Name': 'game-casino', 'Precision': 0.6666666666666666, 'tp': 2, 'Fscore': 0.8, 'DetectionRate': 166.0, 'fn': 0, 'Accuracy': 0.9939759036144579, 'fp': 1, 'Recall': 1.0}
{'tp': 10, 'fp': 2, 'tn': 140, 'Recall': 0.43478260869565216, 'DetectionRate': 152.06806282722513, 'Threshold': '23', 'Precision': 0.8333333333333334, 'Fscore': 0.5714285714285714, 'fn': 13, 'Name': 'game-dldr-trymedia', 'Accuracy': 0.9090909090909091}
{'tp': 27, 'fp': 2, 'tn': 121, 'Recall': 0.6428571428571429, 'DetectionRate': 150.07853403141362, 'Threshold': '23', 'Precision': 0.9310344827586207, 'Fscore': 0.7605633802816901, 'fn': 15, 'Name': 'worm-allaple', 'Accuracy': 0.896969696969697}
{'tp': 15, 'fp': 2, 'tn': 148, 'Recall': 1.0, 'DetectionRate': 165.0, 'Threshold': '23', 'Precision': 0.8823529411764706, 'Fscore': 0.9375, 'fn': 0, 'Name': 'tr-dldr-swizzor', 'Accuracy': 0.9878787878787879}
{'tp': 6, 'fp': 0, 'tn': 158, 'Recall': 0.8571428571428571, 'DetectionRate': 164.00523560209425, 'Threshold': '23', 'Precision': 1.0, 'Fscore': 0.923076923076923, 'fn': 1, 'Name': 'bds-hupigon', 'Accuracy': 0.9939393939393939}
{'tp': 2, 'fp': 0, 'tn': 159, 'Recall': 0.3333333333333333, 'DetectionRate': 161.02094240837695, 'Threshold': '23', 'Precision': 1.0, 'Fscore': 0.5, 'fn': 4, 'Name': 'tr-drop-', 'Accuracy': 0.9757575757575757}
{'tp': 5, 'fp': 15, 'tn': 143, 'Recall': 0.7142857142857143, 'DetectionRate': 163.0104712041885, 'Threshold': '23', 'Precision': 0.25, 'Fscore': 0.37037037037037035, 'fn': 2, 'Name': 'adspy', 'Accuracy': 0.896969696969697}
{'tp': 13, 'fp': 1, 'tn': 151, 'Recall': 1.0, 'DetectionRate': 165.0, 'Threshold': '23', 'Precision': 0.9285714285714286, 'Fscore': 0.962962962962963, 'fn': 0, 'Name': 'bds-udr', 'Accuracy': 0.9939393939393939}
{'tp': 4, 'fp': 1, 'tn': 159, 'Recall': 0.8, 'DetectionRate': 164.00523560209425, 'Threshold': '23', 'Precision': 0.8, 'Fscore': 0.8000000000000002, 'fn': 1, 'Name': 'dial', 'Accuracy': 0.9878787878787879}
{'tp': 15, 'fp': 4, 'tn': 146, 'Recall': 1.0, 'DetectionRate': 165.0, 'Threshold': '23', 'Precision': 0.7894736842105263, 'Fscore': 0.8823529411764706, 'fn': 0, 'Name': 'game-dldr-fenomen', 'Accuracy': 0.9757575757575757}
{'tp': 14, 'fp': 16, 'tn': 132, 'Recall': 0.8235294117647058, 'DetectionRate': 162.01570680628274, 'Threshold': '23', 'Precision': 0.4666666666666667, 'Fscore': 0.5957446808510638, 'fn': 3, 'Name': 'w32-virut', 'Accuracy': 0.8848484848484849}
{'tp': 2, 'fp': 1, 'tn': 162, 'Recall': 1.0, 'DetectionRate': 165.0, 'Threshold': '23', 'Precision': 0.6666666666666666, 'Fscore': 0.8, 'fn': 0, 'Name': 'game-casino', 'Accuracy': 0.9939393939393939}
{'tp': 5, 'fp': 3, 'tn': 149, 'Recall': 0.38461538461538464, 'DetectionRate': 157.04188481675394, 'Threshold': '23', 'Precision': 0.625, 'Fscore': 0.4761904761904762, 'fn': 8, 'Name': 'tr-dropper-gen', 'Accuracy': 0.9333333333333333}
{'fp': 2, 'Name': 'game-dldr-trymedia', 'tp': 10, 'Threshold': '24', 'fn': 13, 'Fscore': 0.5714285714285714, 'DetectionRate': 150.06806282722513, 'Precision': 0.8333333333333334, 'Recall': 0.43478260869565216, 'tn': 138, 'Accuracy': 0.9079754601226994}
{'fp': 2, 'Name': 'tr-dldr-swizzor', 'tp': 15, 'Threshold': '24', 'fn': 0, 'Fscore': 0.9375, 'DetectionRate': 163.0, 'Precision': 0.8823529411764706, 'Recall': 1.0, 'tn': 146, 'Accuracy': 0.9877300613496932}
{'fp': 2, 'Name': 'worm-allaple', 'tp': 27, 'Threshold': '24', 'fn': 15, 'Fscore': 0.7605633802816901, 'DetectionRate': 148.07853403141362, 'Precision': 0.9310344827586207, 'Recall': 0.6428571428571429, 'tn': 119, 'Accuracy': 0.8957055214723927}
{'fp': 16, 'Name': 'w32-virut', 'tp': 14, 'Threshold': '24', 'fn': 3, 'Fscore': 0.5957446808510638, 'DetectionRate': 160.01570680628274, 'Precision': 0.4666666666666667, 'Recall': 0.8235294117647058, 'tn': 130, 'Accuracy': 0.8834355828220859}
{'fp': 0, 'Name': 'tr-drop-', 'tp': 2, 'Threshold': '24', 'fn': 4, 'Fscore': 0.5, 'DetectionRate': 159.02094240837695, 'Precision': 1.0, 'Recall': 0.3333333333333333, 'tn': 157, 'Accuracy': 0.9754601226993865}
{'fp': 4, 'Name': 'game-dldr-fenomen', 'tp': 15, 'Threshold': '24', 'fn': 0, 'Fscore': 0.8823529411764706, 'DetectionRate': 163.0, 'Precision': 0.7894736842105263, 'Recall': 1.0, 'tn': 144, 'Accuracy': 0.9754601226993865}
{'fp': 1, 'Name': 'game-casino', 'tp': 2, 'Threshold': '24', 'fn': 0, 'Fscore': 0.8, 'DetectionRate': 163.0, 'Precision': 0.6666666666666666, 'Recall': 1.0, 'tn': 160, 'Accuracy': 0.9938650306748467}
{'fp': 0, 'Name': 'bds-hupigon', 'tp': 6, 'Threshold': '24', 'fn': 1, 'Fscore': 0.923076923076923, 'DetectionRate': 162.00523560209425, 'Precision': 1.0, 'Recall': 0.8571428571428571, 'tn': 156, 'Accuracy': 0.9938650306748467}
{'fp': 3, 'Name': 'tr-dropper-gen', 'tp': 5, 'Threshold': '24', 'fn': 7, 'Fscore': 0.5, 'DetectionRate': 156.0366492146597, 'Precision': 0.625, 'Recall': 0.4166666666666667, 'tn': 148, 'Accuracy': 0.9386503067484663}
{'fp': 0, 'Name': 'bds-udr', 'tp': 13, 'Threshold': '24', 'fn': 0, 'Fscore': 1.0, 'DetectionRate': 163.0, 'Precision': 1.0, 'Recall': 1.0, 'tn': 150, 'Accuracy': 1.0}
{'fp': 1, 'Name': 'dial', 'tp': 4, 'Threshold': '24', 'fn': 1, 'Fscore': 0.8000000000000002, 'DetectionRate': 162.00523560209425, 'Precision': 0.8, 'Recall': 0.8, 'tn': 157, 'Accuracy': 0.9877300613496932}
{'fp': 15, 'Name': 'adspy', 'tp': 4, 'Threshold': '24', 'fn': 2, 'Fscore': 0.32, 'DetectionRate': 161.0104712041885, 'Precision': 0.21052631578947367, 'Recall': 0.6666666666666666, 'tn': 142, 'Accuracy': 0.8957055214723927}
{'tp': 6, 'Threshold': '25', 'Precision': 1.0, 'Accuracy': 0.9938271604938271, 'DetectionRate': 161.00523560209425, 'fp': 0, 'Name': 'bds-hupigon', 'tn': 155, 'fn': 1, 'Fscore': 0.923076923076923, 'Recall': 0.8571428571428571}
{'tp': 2, 'Threshold': '25', 'Precision': 1.0, 'Accuracy': 0.9753086419753086, 'DetectionRate': 158.02094240837695, 'fp': 0, 'Name': 'tr-drop-', 'tn': 156, 'fn': 4, 'Fscore': 0.5, 'Recall': 0.3333333333333333}
{'tp': 2, 'Threshold': '25', 'Precision': 0.6666666666666666, 'Accuracy': 0.9938271604938271, 'DetectionRate': 162.0, 'fp': 1, 'Name': 'game-casino', 'tn': 159, 'fn': 0, 'Fscore': 0.8, 'Recall': 1.0}
{'tp': 13, 'Threshold': '25', 'Precision': 1.0, 'Accuracy': 1.0, 'DetectionRate': 162.0, 'fp': 0, 'Name': 'bds-udr', 'tn': 149, 'fn': 0, 'Fscore': 1.0, 'Recall': 1.0}
{'tp': 14, 'Threshold': '25', 'Precision': 0.4666666666666667, 'Accuracy': 0.8827160493827161, 'DetectionRate': 159.01570680628274, 'fp': 16, 'Name': 'w32-virut', 'tn': 129, 'fn': 3, 'Fscore': 0.5957446808510638, 'Recall': 0.8235294117647058}
{'tp': 15, 'Threshold': '25', 'Precision': 0.8823529411764706, 'Accuracy': 0.9876543209876543, 'DetectionRate': 162.0, 'fp': 2, 'Name': 'tr-dldr-swizzor', 'tn': 145, 'fn': 0, 'Fscore': 0.9375, 'Recall': 1.0}
{'tp': 27, 'Threshold': '25', 'Precision': 0.9310344827586207, 'Accuracy': 0.8950617283950617, 'DetectionRate': 147.07853403141362, 'fp': 2, 'Name': 'worm-allaple', 'tn': 118, 'fn': 15, 'Fscore': 0.7605633802816901, 'Recall': 0.6428571428571429}
{'tp': 15, 'Threshold': '25', 'Precision': 0.7894736842105263, 'Accuracy': 0.9753086419753086, 'DetectionRate': 162.0, 'fp': 4, 'Name': 'game-dldr-fenomen', 'tn': 143, 'fn': 0, 'Fscore': 0.8823529411764706, 'Recall': 1.0}
{'tp': 4, 'Threshold': '25', 'Precision': 0.8, 'Accuracy': 0.9876543209876543, 'DetectionRate': 161.00523560209425, 'fp': 1, 'Name': 'dial', 'tn': 156, 'fn': 1, 'Fscore': 0.8000000000000002, 'Recall': 0.8}
{'tp': 5, 'Threshold': '25', 'Precision': 0.625, 'Accuracy': 0.9382716049382716, 'DetectionRate': 155.0366492146597, 'fp': 3, 'Name': 'tr-dropper-gen', 'tn': 147, 'fn': 7, 'Fscore': 0.5, 'Recall': 0.4166666666666667}
{'tp': 10, 'Threshold': '25', 'Precision': 0.9090909090909091, 'Accuracy': 0.9135802469135802, 'DetectionRate': 149.06806282722513, 'fp': 1, 'Name': 'game-dldr-trymedia', 'tn': 138, 'fn': 13, 'Fscore': 0.5882352941176471, 'Recall': 0.43478260869565216}
{'tp': 4, 'Threshold': '25', 'Precision': 0.21052631578947367, 'Accuracy': 0.9012345679012346, 'DetectionRate': 161.00523560209425, 'fp': 15, 'Name': 'adspy', 'tn': 142, 'fn': 1, 'Fscore': 0.3333333333333333, 'Recall': 0.8}
{'tn': 147, 'Threshold': '26', 'DetectionRate': 154.0366492146597, 'Accuracy': 0.937888198757764, 'tp': 4, 'Recall': 0.36363636363636365, 'Fscore': 0.4444444444444444, 'fn': 7, 'Name': 'tr-dropper-gen', 'Precision': 0.5714285714285714, 'fp': 3}
{'tn': 144, 'Threshold': '26', 'DetectionRate': 161.0, 'Accuracy': 0.9875776397515528, 'tp': 15, 'Recall': 1.0, 'Fscore': 0.9375, 'fn': 0, 'Name': 'tr-dldr-swizzor', 'Precision': 0.8823529411764706, 'fp': 2}
{'tn': 128, 'Threshold': '26', 'DetectionRate': 158.01570680628274, 'Accuracy': 0.8819875776397516, 'tp': 14, 'Recall': 0.8235294117647058, 'Fscore': 0.5957446808510638, 'fn': 3, 'Name': 'w32-virut', 'Precision': 0.4666666666666667, 'fp': 16}
{'tn': 148, 'Threshold': '26', 'DetectionRate': 161.0, 'Accuracy': 1.0, 'tp': 13, 'Recall': 1.0, 'Fscore': 1.0, 'fn': 0, 'Name': 'bds-udr', 'Precision': 1.0, 'fp': 0}
{'tn': 117, 'Threshold': '26', 'DetectionRate': 146.07853403141362, 'Accuracy': 0.8944099378881988, 'tp': 27, 'Recall': 0.6428571428571429, 'Fscore': 0.7605633802816901, 'fn': 15, 'Name': 'worm-allaple', 'Precision': 0.9310344827586207, 'fp': 2}
{'tn': 158, 'Threshold': '26', 'DetectionRate': 161.0, 'Accuracy': 0.9937888198757764, 'tp': 2, 'Recall': 1.0, 'Fscore': 0.8, 'fn': 0, 'Name': 'game-casino', 'Precision': 0.6666666666666666, 'fp': 1}
{'tn': 155, 'Threshold': '26', 'DetectionRate': 157.02094240837695, 'Accuracy': 0.9751552795031055, 'tp': 2, 'Recall': 0.3333333333333333, 'Fscore': 0.5, 'fn': 4, 'Name': 'tr-drop-', 'Precision': 1.0, 'fp': 0}
{'tn': 141, 'Threshold': '26', 'DetectionRate': 160.00523560209425, 'Accuracy': 0.9006211180124224, 'tp': 4, 'Recall': 0.8, 'Fscore': 0.3333333333333333, 'fn': 1, 'Name': 'adspy', 'Precision': 0.21052631578947367, 'fp': 15}
{'tn': 155, 'Threshold': '26', 'DetectionRate': 160.00523560209425, 'Accuracy': 0.9875776397515528, 'tp': 4, 'Recall': 0.8, 'Fscore': 0.8000000000000002, 'fn': 1, 'Name': 'dial', 'Precision': 0.8, 'fp': 1}
{'tn': 142, 'Threshold': '26', 'DetectionRate': 161.0, 'Accuracy': 0.9751552795031055, 'tp': 15, 'Recall': 1.0, 'Fscore': 0.8823529411764706, 'fn': 0, 'Name': 'game-dldr-fenomen', 'Precision': 0.7894736842105263, 'fp': 4}
{'tn': 137, 'Threshold': '26', 'DetectionRate': 148.06806282722513, 'Accuracy': 0.9130434782608695, 'tp': 10, 'Recall': 0.43478260869565216, 'Fscore': 0.5882352941176471, 'fn': 13, 'Name': 'game-dldr-trymedia', 'Precision': 0.9090909090909091, 'fp': 1}
{'tn': 154, 'Threshold': '26', 'DetectionRate': 160.00523560209425, 'Accuracy': 0.9937888198757764, 'tp': 6, 'Recall': 0.8571428571428571, 'Fscore': 0.923076923076923, 'fn': 1, 'Name': 'bds-hupigon', 'Precision': 1.0, 'fp': 0}
{'Name': 'adspy', 'Accuracy': 0.9, 'DetectionRate': 159.00523560209425, 'Threshold': '27', 'tn': 141, 'fp': 15, 'tp': 3, 'Precision': 0.16666666666666666, 'Fscore': 0.27272727272727276, 'fn': 1, 'Recall': 0.75}
{'Name': 'game-casino', 'Accuracy': 0.99375, 'DetectionRate': 160.0, 'Threshold': '27', 'tn': 157, 'fp': 1, 'tp': 2, 'Precision': 0.6666666666666666, 'Fscore': 0.8, 'fn': 0, 'Recall': 1.0}
{'Name': 'w32-virut', 'Accuracy': 0.88125, 'DetectionRate': 157.01570680628274, 'Threshold': '27', 'tn': 127, 'fp': 16, 'tp': 14, 'Precision': 0.4666666666666667, 'Fscore': 0.5957446808510638, 'fn': 3, 'Recall': 0.8235294117647058}
{'Name': 'bds-udr', 'Accuracy': 1.0, 'DetectionRate': 160.0, 'Threshold': '27', 'tn': 147, 'fp': 0, 'tp': 13, 'Precision': 1.0, 'Fscore': 1.0, 'fn': 0, 'Recall': 1.0}
{'Name': 'tr-dldr-swizzor', 'Accuracy': 0.9875, 'DetectionRate': 160.0, 'Threshold': '27', 'tn': 143, 'fp': 2, 'tp': 15, 'Precision': 0.8823529411764706, 'Fscore': 0.9375, 'fn': 0, 'Recall': 1.0}
{'Name': 'tr-drop-', 'Accuracy': 0.975, 'DetectionRate': 156.02094240837695, 'Threshold': '27', 'tn': 154, 'fp': 0, 'tp': 2, 'Precision': 1.0, 'Fscore': 0.5, 'fn': 4, 'Recall': 0.3333333333333333}
{'Name': 'game-dldr-trymedia', 'Accuracy': 0.9125, 'DetectionRate': 147.06806282722513, 'Threshold': '27', 'tn': 136, 'fp': 1, 'tp': 10, 'Precision': 0.9090909090909091, 'Fscore': 0.5882352941176471, 'fn': 13, 'Recall': 0.43478260869565216}
{'Name': 'dial', 'Accuracy': 0.9875, 'DetectionRate': 159.00523560209425, 'Threshold': '27', 'tn': 154, 'fp': 1, 'tp': 4, 'Precision': 0.8, 'Fscore': 0.8000000000000002, 'fn': 1, 'Recall': 0.8}
{'Name': 'tr-dropper-gen', 'Accuracy': 0.9375, 'DetectionRate': 153.0366492146597, 'Threshold': '27', 'tn': 146, 'fp': 3, 'tp': 4, 'Precision': 0.5714285714285714, 'Fscore': 0.4444444444444444, 'fn': 7, 'Recall': 0.36363636363636365}
{'Name': 'worm-allaple', 'Accuracy': 0.89375, 'DetectionRate': 145.07853403141362, 'Threshold': '27', 'tn': 116, 'fp': 2, 'tp': 27, 'Precision': 0.9310344827586207, 'Fscore': 0.7605633802816901, 'fn': 15, 'Recall': 0.6428571428571429}
{'Name': 'bds-hupigon', 'Accuracy': 0.99375, 'DetectionRate': 159.00523560209425, 'Threshold': '27', 'tn': 153, 'fp': 0, 'tp': 6, 'Precision': 1.0, 'Fscore': 0.923076923076923, 'fn': 1, 'Recall': 0.8571428571428571}
{'Name': 'game-dldr-fenomen', 'Accuracy': 0.975, 'DetectionRate': 160.0, 'Threshold': '27', 'tn': 141, 'fp': 4, 'tp': 15, 'Precision': 0.7894736842105263, 'Fscore': 0.8823529411764706, 'fn': 0, 'Recall': 1.0}
{'fn': 1, 'DetectionRate': 159.00523560209425, 'Name': 'adspy', 'tp': 3, 'tn': 141, 'Precision': 0.16666666666666666, 'fp': 15, 'Threshold': '28', 'Recall': 0.75, 'Accuracy': 0.9, 'Fscore': 0.27272727272727276}
{'fn': 4, 'DetectionRate': 156.02094240837695, 'Name': 'tr-drop-', 'tp': 2, 'tn': 154, 'Precision': 1.0, 'fp': 0, 'Threshold': '28', 'Recall': 0.3333333333333333, 'Accuracy': 0.975, 'Fscore': 0.5}
{'fn': 1, 'DetectionRate': 159.00523560209425, 'Name': 'bds-hupigon', 'tp': 6, 'tn': 153, 'Precision': 1.0, 'fp': 0, 'Threshold': '28', 'Recall': 0.8571428571428571, 'Accuracy': 0.99375, 'Fscore': 0.923076923076923}
{'fn': 13, 'DetectionRate': 147.06806282722513, 'Name': 'game-dldr-trymedia', 'tp': 10, 'tn': 136, 'Precision': 0.9090909090909091, 'fp': 1, 'Threshold': '28', 'Recall': 0.43478260869565216, 'Accuracy': 0.9125, 'Fscore': 0.5882352941176471}
{'fn': 0, 'DetectionRate': 160.0, 'Name': 'bds-udr', 'tp': 13, 'tn': 147, 'Precision': 1.0, 'fp': 0, 'Threshold': '28', 'Recall': 1.0, 'Accuracy': 1.0, 'Fscore': 1.0}
{'fn': 0, 'DetectionRate': 160.0, 'Name': 'tr-dldr-swizzor', 'tp': 15, 'tn': 143, 'Precision': 0.8823529411764706, 'fp': 2, 'Threshold': '28', 'Recall': 1.0, 'Accuracy': 0.9875, 'Fscore': 0.9375}
{'fn': 15, 'DetectionRate': 145.07853403141362, 'Name': 'worm-allaple', 'tp': 27, 'tn': 116, 'Precision': 0.9310344827586207, 'fp': 2, 'Threshold': '28', 'Recall': 0.6428571428571429, 'Accuracy': 0.89375, 'Fscore': 0.7605633802816901}
{'fn': 1, 'DetectionRate': 159.00523560209425, 'Name': 'dial', 'tp': 4, 'tn': 154, 'Precision': 0.8, 'fp': 1, 'Threshold': '28', 'Recall': 0.8, 'Accuracy': 0.9875, 'Fscore': 0.8000000000000002}
{'fn': 0, 'DetectionRate': 160.0, 'Name': 'game-dldr-fenomen', 'tp': 15, 'tn': 141, 'Precision': 0.7894736842105263, 'fp': 4, 'Threshold': '28', 'Recall': 1.0, 'Accuracy': 0.975, 'Fscore': 0.8823529411764706}
{'fn': 7, 'DetectionRate': 153.0366492146597, 'Name': 'tr-dropper-gen', 'tp': 4, 'tn': 146, 'Precision': 0.5714285714285714, 'fp': 3, 'Threshold': '28', 'Recall': 0.36363636363636365, 'Accuracy': 0.9375, 'Fscore': 0.4444444444444444}
{'fn': 3, 'DetectionRate': 157.01570680628274, 'Name': 'w32-virut', 'tp': 14, 'tn': 127, 'Precision': 0.4666666666666667, 'fp': 16, 'Threshold': '28', 'Recall': 0.8235294117647058, 'Accuracy': 0.88125, 'Fscore': 0.5957446808510638}
{'fn': 0, 'DetectionRate': 160.0, 'Name': 'game-casino', 'tp': 2, 'tn': 157, 'Precision': 0.6666666666666666, 'fp': 1, 'Threshold': '28', 'Recall': 1.0, 'Accuracy': 0.99375, 'Fscore': 0.8}
{'Threshold': '29', 'tp': 3, 'Precision': 0.16666666666666666, 'DetectionRate': 159.00523560209425, 'Accuracy': 0.9, 'fn': 1, 'fp': 15, 'Fscore': 0.27272727272727276, 'Name': 'adspy', 'Recall': 0.75, 'tn': 141}
{'Threshold': '29', 'tp': 10, 'Precision': 0.9090909090909091, 'DetectionRate': 147.06806282722513, 'Accuracy': 0.9125, 'fn': 13, 'fp': 1, 'Fscore': 0.5882352941176471, 'Name': 'game-dldr-trymedia', 'Recall': 0.43478260869565216, 'tn': 136}
{'Threshold': '29', 'tp': 15, 'Precision': 0.7894736842105263, 'DetectionRate': 160.0, 'Accuracy': 0.975, 'fn': 0, 'fp': 4, 'Fscore': 0.8823529411764706, 'Name': 'game-dldr-fenomen', 'Recall': 1.0, 'tn': 141}
{'Threshold': '29', 'tp': 6, 'Precision': 1.0, 'DetectionRate': 159.00523560209425, 'Accuracy': 0.99375, 'fn': 1, 'fp': 0, 'Fscore': 0.923076923076923, 'Name': 'bds-hupigon', 'Recall': 0.8571428571428571, 'tn': 153}
{'Threshold': '29', 'tp': 13, 'Precision': 1.0, 'DetectionRate': 160.0, 'Accuracy': 1.0, 'fn': 0, 'fp': 0, 'Fscore': 1.0, 'Name': 'bds-udr', 'Recall': 1.0, 'tn': 147}
{'Threshold': '29', 'tp': 4, 'Precision': 0.8, 'DetectionRate': 159.00523560209425, 'Accuracy': 0.9875, 'fn': 1, 'fp': 1, 'Fscore': 0.8000000000000002, 'Name': 'dial', 'Recall': 0.8, 'tn': 154}
{'Threshold': '29', 'tp': 27, 'Precision': 0.9310344827586207, 'DetectionRate': 145.07853403141362, 'Accuracy': 0.89375, 'fn': 15, 'fp': 2, 'Fscore': 0.7605633802816901, 'Name': 'worm-allaple', 'Recall': 0.6428571428571429, 'tn': 116}
{'Threshold': '29', 'tp': 14, 'Precision': 0.4666666666666667, 'DetectionRate': 157.01570680628274, 'Accuracy': 0.88125, 'fn': 3, 'fp': 16, 'Fscore': 0.5957446808510638, 'Name': 'w32-virut', 'Recall': 0.8235294117647058, 'tn': 127}
{'Threshold': '29', 'tp': 2, 'Precision': 0.6666666666666666, 'DetectionRate': 160.0, 'Accuracy': 0.99375, 'fn': 0, 'fp': 1, 'Fscore': 0.8, 'Name': 'game-casino', 'Recall': 1.0, 'tn': 157}
{'Threshold': '29', 'tp': 4, 'Precision': 0.5714285714285714, 'DetectionRate': 153.0366492146597, 'Accuracy': 0.9375, 'fn': 7, 'fp': 3, 'Fscore': 0.4444444444444444, 'Name': 'tr-dropper-gen', 'Recall': 0.36363636363636365, 'tn': 146}
{'Threshold': '29', 'tp': 2, 'Precision': 1.0, 'DetectionRate': 156.02094240837695, 'Accuracy': 0.975, 'fn': 4, 'fp': 0, 'Fscore': 0.5, 'Name': 'tr-drop-', 'Recall': 0.3333333333333333, 'tn': 154}
{'Threshold': '29', 'tp': 15, 'Precision': 0.8823529411764706, 'DetectionRate': 160.0, 'Accuracy': 0.9875, 'fn': 0, 'fp': 2, 'Fscore': 0.9375, 'Name': 'tr-dldr-swizzor', 'Recall': 1.0, 'tn': 143}
{'Recall': 1.0, 'Accuracy': 1.0, 'Name': 'game-casino', 'Threshold': '30', 'fn': 0, 'DetectionRate': 159.0, 'tp': 2, 'tn': 157, 'Fscore': 1.0, 'fp': 0, 'Precision': 1.0}
{'Recall': 0.8235294117647058, 'Accuracy': 0.8805031446540881, 'Name': 'w32-virut', 'Threshold': '30', 'fn': 3, 'DetectionRate': 156.01570680628274, 'tp': 14, 'tn': 126, 'Fscore': 0.5957446808510638, 'fp': 16, 'Precision': 0.4666666666666667}
{'Recall': 0.3333333333333333, 'Accuracy': 0.9748427672955975, 'Name': 'tr-drop-', 'Threshold': '30', 'fn': 4, 'DetectionRate': 155.02094240837695, 'tp': 2, 'tn': 153, 'Fscore': 0.5, 'fp': 0, 'Precision': 1.0}
{'Recall': 1.0, 'Accuracy': 0.9748427672955975, 'Name': 'game-dldr-fenomen', 'Threshold': '30', 'fn': 0, 'DetectionRate': 159.0, 'tp': 15, 'tn': 140, 'Fscore': 0.8823529411764706, 'fp': 4, 'Precision': 0.7894736842105263}
{'Recall': 0.8, 'Accuracy': 0.9874213836477987, 'Name': 'dial', 'Threshold': '30', 'fn': 1, 'DetectionRate': 158.00523560209425, 'tp': 4, 'tn': 153, 'Fscore': 0.8000000000000002, 'fp': 1, 'Precision': 0.8}
{'Recall': 1.0, 'Accuracy': 0.9056603773584906, 'Name': 'adspy', 'Threshold': '30', 'fn': 0, 'DetectionRate': 159.0, 'tp': 3, 'tn': 141, 'Fscore': 0.2857142857142857, 'fp': 15, 'Precision': 0.16666666666666666}
{'Recall': 1.0, 'Accuracy': 0.9874213836477987, 'Name': 'tr-dldr-swizzor', 'Threshold': '30', 'fn': 0, 'DetectionRate': 159.0, 'tp': 15, 'tn': 142, 'Fscore': 0.9375, 'fp': 2, 'Precision': 0.8823529411764706}
{'Recall': 0.43478260869565216, 'Accuracy': 0.9119496855345912, 'Name': 'game-dldr-trymedia', 'Threshold': '30', 'fn': 13, 'DetectionRate': 146.06806282722513, 'tp': 10, 'tn': 135, 'Fscore': 0.5882352941176471, 'fp': 1, 'Precision': 0.9090909090909091}
{'Recall': 0.6428571428571429, 'Accuracy': 0.8930817610062893, 'Name': 'worm-allaple', 'Threshold': '30', 'fn': 15, 'DetectionRate': 144.07853403141362, 'tp': 27, 'tn': 115, 'Fscore': 0.7605633802816901, 'fp': 2, 'Precision': 0.9310344827586207}
{'Recall': 1.0, 'Accuracy': 1.0, 'Name': 'bds-udr', 'Threshold': '30', 'fn': 0, 'DetectionRate': 159.0, 'tp': 13, 'tn': 146, 'Fscore': 1.0, 'fp': 0, 'Precision': 1.0}
{'Recall': 0.36363636363636365, 'Accuracy': 0.9371069182389937, 'Name': 'tr-dropper-gen', 'Threshold': '30', 'fn': 7, 'DetectionRate': 152.0366492146597, 'tp': 4, 'tn': 145, 'Fscore': 0.4444444444444444, 'fp': 3, 'Precision': 0.5714285714285714}
{'Recall': 0.8571428571428571, 'Accuracy': 0.9937106918238994, 'Name': 'bds-hupigon', 'Threshold': '30', 'fn': 1, 'DetectionRate': 158.00523560209425, 'tp': 6, 'tn': 152, 'Fscore': 0.923076923076923, 'fp': 0, 'Precision': 1.0}
{'tn': 151, 'Fscore': 0.8000000000000002, 'fp': 1, 'Accuracy': 0.9872611464968153, 'DetectionRate': 156.00523560209425, 'Threshold': '31', 'Name': 'dial', 'Recall': 0.8, 'tp': 4, 'Precision': 0.8, 'fn': 1}
{'tn': 144, 'Fscore': 0.37499999999999994, 'fp': 3, 'Accuracy': 0.9363057324840764, 'DetectionRate': 150.0366492146597, 'Threshold': '31', 'Name': 'tr-dropper-gen', 'Recall': 0.3, 'tp': 3, 'Precision': 0.5, 'fn': 7}
{'tn': 150, 'Fscore': 0.923076923076923, 'fp': 0, 'Accuracy': 0.9936305732484076, 'DetectionRate': 156.00523560209425, 'Threshold': '31', 'Name': 'bds-hupigon', 'Recall': 0.8571428571428571, 'tp': 6, 'Precision': 1.0, 'fn': 1}
{'tn': 151, 'Fscore': 0.5, 'fp': 0, 'Accuracy': 0.9745222929936306, 'DetectionRate': 153.02094240837695, 'Threshold': '31', 'Name': 'tr-drop-', 'Recall': 0.3333333333333333, 'tp': 2, 'Precision': 1.0, 'fn': 4}
{'tn': 133, 'Fscore': 0.5882352941176471, 'fp': 1, 'Accuracy': 0.910828025477707, 'DetectionRate': 144.06806282722513, 'Threshold': '31', 'Name': 'game-dldr-trymedia', 'Recall': 0.43478260869565216, 'tp': 10, 'Precision': 0.9090909090909091, 'fn': 13}
{'tn': 144, 'Fscore': 1.0, 'fp': 0, 'Accuracy': 1.0, 'DetectionRate': 157.0, 'Threshold': '31', 'Name': 'bds-udr', 'Recall': 1.0, 'tp': 13, 'Precision': 1.0, 'fn': 0}
{'tn': 140, 'Fscore': 0.9375, 'fp': 2, 'Accuracy': 0.9872611464968153, 'DetectionRate': 157.0, 'Threshold': '31', 'Name': 'tr-dldr-swizzor', 'Recall': 1.0, 'tp': 15, 'Precision': 0.8823529411764706, 'fn': 0}
{'tn': 114, 'Fscore': 0.7536231884057972, 'fp': 2, 'Accuracy': 0.89171974522293, 'DetectionRate': 142.07853403141362, 'Threshold': '31', 'Name': 'worm-allaple', 'Recall': 0.6341463414634146, 'tp': 26, 'Precision': 0.9285714285714286, 'fn': 15}
{'tn': 124, 'Fscore': 0.5957446808510638, 'fp': 16, 'Accuracy': 0.8789808917197452, 'DetectionRate': 154.01570680628274, 'Threshold': '31', 'Name': 'w32-virut', 'Recall': 0.8235294117647058, 'tp': 14, 'Precision': 0.4666666666666667, 'fn': 3}
{'tn': 139, 'Fscore': 0.2857142857142857, 'fp': 15, 'Accuracy': 0.9044585987261147, 'DetectionRate': 157.0, 'Threshold': '31', 'Name': 'adspy', 'Recall': 1.0, 'tp': 3, 'Precision': 0.16666666666666666, 'fn': 0}
{'tn': 155, 'Fscore': 1.0, 'fp': 0, 'Accuracy': 1.0, 'DetectionRate': 157.0, 'Threshold': '31', 'Name': 'game-casino', 'Recall': 1.0, 'tp': 2, 'Precision': 1.0, 'fn': 0}
{'tn': 138, 'Fscore': 0.8823529411764706, 'fp': 4, 'Accuracy': 0.9745222929936306, 'DetectionRate': 157.0, 'Threshold': '31', 'Name': 'game-dldr-fenomen', 'Recall': 1.0, 'tp': 15, 'Precision': 0.7894736842105263, 'fn': 0}
{'tp': 14, 'Name': 'w32-virut', 'Recall': 0.8235294117647058, 'Accuracy': 0.8789808917197452, 'Fscore': 0.5957446808510638, 'fp': 16, 'fn': 3, 'DetectionRate': 154.01570680628274, 'Precision': 0.4666666666666667, 'Threshold': '32', 'tn': 124}
{'tp': 4, 'Name': 'dial', 'Recall': 0.8, 'Accuracy': 0.9872611464968153, 'Fscore': 0.8000000000000002, 'fp': 1, 'fn': 1, 'DetectionRate': 156.00523560209425, 'Precision': 0.8, 'Threshold': '32', 'tn': 151}
{'tp': 2, 'Name': 'game-casino', 'Recall': 1.0, 'Accuracy': 1.0, 'Fscore': 1.0, 'fp': 0, 'fn': 0, 'DetectionRate': 157.0, 'Precision': 1.0, 'Threshold': '32', 'tn': 155}
{'tp': 15, 'Name': 'game-dldr-fenomen', 'Recall': 1.0, 'Accuracy': 0.9745222929936306, 'Fscore': 0.8823529411764706, 'fp': 4, 'fn': 0, 'DetectionRate': 157.0, 'Precision': 0.7894736842105263, 'Threshold': '32', 'tn': 138}
{'tp': 3, 'Name': 'adspy', 'Recall': 1.0, 'Accuracy': 0.9044585987261147, 'Fscore': 0.2857142857142857, 'fp': 15, 'fn': 0, 'DetectionRate': 157.0, 'Precision': 0.16666666666666666, 'Threshold': '32', 'tn': 139}
{'tp': 15, 'Name': 'tr-dldr-swizzor', 'Recall': 1.0, 'Accuracy': 0.9872611464968153, 'Fscore': 0.9375, 'fp': 2, 'fn': 0, 'DetectionRate': 157.0, 'Precision': 0.8823529411764706, 'Threshold': '32', 'tn': 140}
{'tp': 3, 'Name': 'tr-dropper-gen', 'Recall': 0.3, 'Accuracy': 0.9363057324840764, 'Fscore': 0.37499999999999994, 'fp': 3, 'fn': 7, 'DetectionRate': 150.0366492146597, 'Precision': 0.5, 'Threshold': '32', 'tn': 144}
{'tp': 26, 'Name': 'worm-allaple', 'Recall': 0.6341463414634146, 'Accuracy': 0.89171974522293, 'Fscore': 0.7536231884057972, 'fp': 2, 'fn': 15, 'DetectionRate': 142.07853403141362, 'Precision': 0.9285714285714286, 'Threshold': '32', 'tn': 114}
{'tp': 10, 'Name': 'game-dldr-trymedia', 'Recall': 0.43478260869565216, 'Accuracy': 0.910828025477707, 'Fscore': 0.5882352941176471, 'fp': 1, 'fn': 13, 'DetectionRate': 144.06806282722513, 'Precision': 0.9090909090909091, 'Threshold': '32', 'tn': 133}
{'tp': 13, 'Name': 'bds-udr', 'Recall': 1.0, 'Accuracy': 1.0, 'Fscore': 1.0, 'fp': 0, 'fn': 0, 'DetectionRate': 157.0, 'Precision': 1.0, 'Threshold': '32', 'tn': 144}
{'tp': 6, 'Name': 'bds-hupigon', 'Recall': 0.8571428571428571, 'Accuracy': 0.9936305732484076, 'Fscore': 0.923076923076923, 'fp': 0, 'fn': 1, 'DetectionRate': 156.00523560209425, 'Precision': 1.0, 'Threshold': '32', 'tn': 150}
{'tp': 2, 'Name': 'tr-drop-', 'Recall': 0.3333333333333333, 'Accuracy': 0.9745222929936306, 'Fscore': 0.5, 'fp': 0, 'fn': 4, 'DetectionRate': 153.02094240837695, 'Precision': 1.0, 'Threshold': '32', 'tn': 151}
{'DetectionRate': 155.0, 'Threshold': '33', 'fn': 0, 'Name': 'game-dldr-fenomen', 'Fscore': 0.8823529411764706, 'Precision': 0.7894736842105263, 'fp': 4, 'tp': 15, 'Accuracy': 0.9741935483870968, 'Recall': 1.0, 'tn': 136}
{'DetectionRate': 140.07853403141362, 'Threshold': '33', 'fn': 15, 'Name': 'worm-allaple', 'Fscore': 0.7536231884057972, 'Precision': 0.9285714285714286, 'fp': 2, 'tp': 26, 'Accuracy': 0.8903225806451613, 'Recall': 0.6341463414634146, 'tn': 112}
{'DetectionRate': 155.0, 'Threshold': '33', 'fn': 0, 'Name': 'adspy', 'Fscore': 0.2857142857142857, 'Precision': 0.16666666666666666, 'fp': 15, 'tp': 3, 'Accuracy': 0.9032258064516129, 'Recall': 1.0, 'tn': 137}
{'DetectionRate': 142.06806282722513, 'Threshold': '33', 'fn': 13, 'Name': 'game-dldr-trymedia', 'Fscore': 0.5882352941176471, 'Precision': 0.9090909090909091, 'fp': 1, 'tp': 10, 'Accuracy': 0.9096774193548387, 'Recall': 0.43478260869565216, 'tn': 131}
{'DetectionRate': 154.00523560209425, 'Threshold': '33', 'fn': 1, 'Name': 'dial', 'Fscore': 0.6666666666666666, 'Precision': 0.6666666666666666, 'fp': 1, 'tp': 2, 'Accuracy': 0.9870967741935484, 'Recall': 0.6666666666666666, 'tn': 151}
{'DetectionRate': 155.0, 'Threshold': '33', 'fn': 0, 'Name': 'tr-dldr-swizzor', 'Fscore': 0.9375, 'Precision': 0.8823529411764706, 'fp': 2, 'tp': 15, 'Accuracy': 0.9870967741935484, 'Recall': 1.0, 'tn': 138}
{'DetectionRate': 152.01570680628274, 'Threshold': '33', 'fn': 3, 'Name': 'w32-virut', 'Fscore': 0.5957446808510638, 'Precision': 0.4666666666666667, 'fp': 16, 'tp': 14, 'Accuracy': 0.8774193548387097, 'Recall': 0.8235294117647058, 'tn': 122}
{'DetectionRate': 155.0, 'Threshold': '33', 'fn': 0, 'Name': 'game-casino', 'Fscore': 1.0, 'Precision': 1.0, 'fp': 0, 'tp': 2, 'Accuracy': 1.0, 'Recall': 1.0, 'tn': 153}
{'DetectionRate': 155.0, 'Threshold': '33', 'fn': 0, 'Name': 'bds-udr', 'Fscore': 1.0, 'Precision': 1.0, 'fp': 0, 'tp': 13, 'Accuracy': 1.0, 'Recall': 1.0, 'tn': 142}
{'DetectionRate': 154.00523560209425, 'Threshold': '33', 'fn': 1, 'Name': 'bds-hupigon', 'Fscore': 0.923076923076923, 'Precision': 1.0, 'fp': 0, 'tp': 6, 'Accuracy': 0.9935483870967742, 'Recall': 0.8571428571428571, 'tn': 148}
{'DetectionRate': 148.0366492146597, 'Threshold': '33', 'fn': 7, 'Name': 'tr-dropper-gen', 'Fscore': 0.37499999999999994, 'Precision': 0.5, 'fp': 3, 'tp': 3, 'Accuracy': 0.9354838709677419, 'Recall': 0.3, 'tn': 142}
{'DetectionRate': 151.02094240837695, 'Threshold': '33', 'fn': 4, 'Name': 'tr-drop-', 'Fscore': 0.5, 'Precision': 1.0, 'fp': 0, 'tp': 2, 'Accuracy': 0.9741935483870968, 'Recall': 0.3333333333333333, 'tn': 149}
{'tn': 110, 'DetectionRate': 138.07853403141362, 'Fscore': 0.7536231884057972, 'Name': 'worm-allaple', 'Recall': 0.6341463414634146, 'Precision': 0.9285714285714286, 'fp': 2, 'Accuracy': 0.8888888888888888, 'tp': 26, 'fn': 15, 'Threshold': '34'}
{'tn': 135, 'DetectionRate': 153.0, 'Fscore': 0.2857142857142857, 'Name': 'adspy', 'Recall': 1.0, 'Precision': 0.16666666666666666, 'fp': 15, 'Accuracy': 0.9019607843137255, 'tp': 3, 'fn': 0, 'Threshold': '34'}
{'tn': 141, 'DetectionRate': 147.03141361256544, 'Fscore': 0.4, 'Name': 'tr-dropper-gen', 'Recall': 0.3333333333333333, 'Precision': 0.5, 'fp': 3, 'Accuracy': 0.9411764705882353, 'tp': 3, 'fn': 6, 'Threshold': '34'}
{'tn': 140, 'DetectionRate': 153.0, 'Fscore': 1.0, 'Name': 'bds-udr', 'Recall': 1.0, 'Precision': 1.0, 'fp': 0, 'Accuracy': 1.0, 'tp': 13, 'fn': 0, 'Threshold': '34'}
{'tn': 147, 'DetectionRate': 149.02094240837695, 'Fscore': 0.5, 'Name': 'tr-drop-', 'Recall': 0.3333333333333333, 'Precision': 1.0, 'fp': 0, 'Accuracy': 0.9738562091503268, 'tp': 2, 'fn': 4, 'Threshold': '34'}
{'tn': 151, 'DetectionRate': 153.0, 'Fscore': 1.0, 'Name': 'game-casino', 'Recall': 1.0, 'Precision': 1.0, 'fp': 0, 'Accuracy': 1.0, 'tp': 2, 'fn': 0, 'Threshold': '34'}
{'tn': 134, 'DetectionRate': 153.0, 'Fscore': 0.8823529411764706, 'Name': 'game-dldr-fenomen', 'Recall': 1.0, 'Precision': 0.7894736842105263, 'fp': 4, 'Accuracy': 0.9738562091503268, 'tp': 15, 'fn': 0, 'Threshold': '34'}
{'tn': 121, 'DetectionRate': 150.01570680628274, 'Fscore': 0.608695652173913, 'Name': 'w32-virut', 'Recall': 0.8235294117647058, 'Precision': 0.4827586206896552, 'fp': 15, 'Accuracy': 0.8823529411764706, 'tp': 14, 'fn': 3, 'Threshold': '34'}
{'tn': 150, 'DetectionRate': 153.0, 'Fscore': 0.8, 'Name': 'dial', 'Recall': 1.0, 'Precision': 0.6666666666666666, 'fp': 1, 'Accuracy': 0.9934640522875817, 'tp': 2, 'fn': 0, 'Threshold': '34'}
{'tn': 146, 'DetectionRate': 152.00523560209425, 'Fscore': 0.923076923076923, 'Name': 'bds-hupigon', 'Recall': 0.8571428571428571, 'Precision': 1.0, 'fp': 0, 'Accuracy': 0.9934640522875817, 'tp': 6, 'fn': 1, 'Threshold': '34'}
{'tn': 130, 'DetectionRate': 140.06806282722513, 'Fscore': 0.6060606060606061, 'Name': 'game-dldr-trymedia', 'Recall': 0.43478260869565216, 'Precision': 1.0, 'fp': 0, 'Accuracy': 0.9150326797385621, 'tp': 10, 'fn': 13, 'Threshold': '34'}
{'tn': 136, 'DetectionRate': 153.0, 'Fscore': 0.9375, 'Name': 'tr-dldr-swizzor', 'Recall': 1.0, 'Precision': 0.8823529411764706, 'fp': 2, 'Accuracy': 0.9869281045751634, 'tp': 15, 'fn': 0, 'Threshold': '34'}
{'Name': 'game-dldr-fenomen', 'fp': 4, 'Accuracy': 0.9738562091503268, 'Threshold': '35', 'tn': 134, 'fn': 0, 'Precision': 0.7894736842105263, 'tp': 15, 'Recall': 1.0, 'DetectionRate': 153.0, 'Fscore': 0.8823529411764706}
{'Name': 'dial', 'fp': 1, 'Accuracy': 0.9934640522875817, 'Threshold': '35', 'tn': 150, 'fn': 0, 'Precision': 0.6666666666666666, 'tp': 2, 'Recall': 1.0, 'DetectionRate': 153.0, 'Fscore': 0.8}
{'Name': 'bds-hupigon', 'fp': 0, 'Accuracy': 0.9934640522875817, 'Threshold': '35', 'tn': 146, 'fn': 1, 'Precision': 1.0, 'tp': 6, 'Recall': 0.8571428571428571, 'DetectionRate': 152.00523560209425, 'Fscore': 0.923076923076923}
{'Name': 'w32-virut', 'fp': 15, 'Accuracy': 0.8823529411764706, 'Threshold': '35', 'tn': 121, 'fn': 3, 'Precision': 0.4827586206896552, 'tp': 14, 'Recall': 0.8235294117647058, 'DetectionRate': 150.01570680628274, 'Fscore': 0.608695652173913}
{'Name': 'adspy', 'fp': 15, 'Accuracy': 0.9019607843137255, 'Threshold': '35', 'tn': 135, 'fn': 0, 'Precision': 0.16666666666666666, 'tp': 3, 'Recall': 1.0, 'DetectionRate': 153.0, 'Fscore': 0.2857142857142857}
{'Name': 'tr-drop-', 'fp': 0, 'Accuracy': 0.9738562091503268, 'Threshold': '35', 'tn': 147, 'fn': 4, 'Precision': 1.0, 'tp': 2, 'Recall': 0.3333333333333333, 'DetectionRate': 149.02094240837695, 'Fscore': 0.5}
{'Name': 'bds-udr', 'fp': 0, 'Accuracy': 1.0, 'Threshold': '35', 'tn': 140, 'fn': 0, 'Precision': 1.0, 'tp': 13, 'Recall': 1.0, 'DetectionRate': 153.0, 'Fscore': 1.0}
{'Name': 'worm-allaple', 'fp': 2, 'Accuracy': 0.8888888888888888, 'Threshold': '35', 'tn': 110, 'fn': 15, 'Precision': 0.9285714285714286, 'tp': 26, 'Recall': 0.6341463414634146, 'DetectionRate': 138.07853403141362, 'Fscore': 0.7536231884057972}
{'Name': 'tr-dldr-swizzor', 'fp': 2, 'Accuracy': 0.9869281045751634, 'Threshold': '35', 'tn': 136, 'fn': 0, 'Precision': 0.8823529411764706, 'tp': 15, 'Recall': 1.0, 'DetectionRate': 153.0, 'Fscore': 0.9375}
{'Name': 'game-dldr-trymedia', 'fp': 0, 'Accuracy': 0.9150326797385621, 'Threshold': '35', 'tn': 130, 'fn': 13, 'Precision': 1.0, 'tp': 10, 'Recall': 0.43478260869565216, 'DetectionRate': 140.06806282722513, 'Fscore': 0.6060606060606061}
{'Name': 'game-casino', 'fp': 0, 'Accuracy': 1.0, 'Threshold': '35', 'tn': 151, 'fn': 0, 'Precision': 1.0, 'tp': 2, 'Recall': 1.0, 'DetectionRate': 153.0, 'Fscore': 1.0}
{'Name': 'tr-dropper-gen', 'fp': 3, 'Accuracy': 0.9411764705882353, 'Threshold': '35', 'tn': 141, 'fn': 6, 'Precision': 0.5, 'tp': 3, 'Recall': 0.3333333333333333, 'DetectionRate': 147.03141361256544, 'Fscore': 0.4}
{'tp': 6, 'DetectionRate': 152.00523560209425, 'Name': 'bds-hupigon', 'Threshold': '36', 'fn': 1, 'Precision': 1.0, 'Fscore': 0.923076923076923, 'fp': 0, 'Accuracy': 0.9934640522875817, 'tn': 146, 'Recall': 0.8571428571428571}
{'tp': 15, 'DetectionRate': 153.0, 'Name': 'game-dldr-fenomen', 'Threshold': '36', 'fn': 0, 'Precision': 0.7894736842105263, 'Fscore': 0.8823529411764706, 'fp': 4, 'Accuracy': 0.9738562091503268, 'tn': 134, 'Recall': 1.0}
{'tp': 15, 'DetectionRate': 153.0, 'Name': 'tr-dldr-swizzor', 'Threshold': '36', 'fn': 0, 'Precision': 0.8823529411764706, 'Fscore': 0.9375, 'fp': 2, 'Accuracy': 0.9869281045751634, 'tn': 136, 'Recall': 1.0}
{'tp': 3, 'DetectionRate': 147.03141361256544, 'Name': 'tr-dropper-gen', 'Threshold': '36', 'fn': 6, 'Precision': 0.5, 'Fscore': 0.4, 'fp': 3, 'Accuracy': 0.9411764705882353, 'tn': 141, 'Recall': 0.3333333333333333}
{'tp': 10, 'DetectionRate': 140.06806282722513, 'Name': 'game-dldr-trymedia', 'Threshold': '36', 'fn': 13, 'Precision': 1.0, 'Fscore': 0.6060606060606061, 'fp': 0, 'Accuracy': 0.9150326797385621, 'tn': 130, 'Recall': 0.43478260869565216}
{'tp': 3, 'DetectionRate': 153.0, 'Name': 'adspy', 'Threshold': '36', 'fn': 0, 'Precision': 0.16666666666666666, 'Fscore': 0.2857142857142857, 'fp': 15, 'Accuracy': 0.9019607843137255, 'tn': 135, 'Recall': 1.0}
{'tp': 2, 'DetectionRate': 153.0, 'Name': 'game-casino', 'Threshold': '36', 'fn': 0, 'Precision': 1.0, 'Fscore': 1.0, 'fp': 0, 'Accuracy': 1.0, 'tn': 151, 'Recall': 1.0}
{'tp': 2, 'DetectionRate': 153.0, 'Name': 'dial', 'Threshold': '36', 'fn': 0, 'Precision': 0.6666666666666666, 'Fscore': 0.8, 'fp': 1, 'Accuracy': 0.9934640522875817, 'tn': 150, 'Recall': 1.0}
{'tp': 14, 'DetectionRate': 150.01570680628274, 'Name': 'w32-virut', 'Threshold': '36', 'fn': 3, 'Precision': 0.4827586206896552, 'Fscore': 0.608695652173913, 'fp': 15, 'Accuracy': 0.8823529411764706, 'tn': 121, 'Recall': 0.8235294117647058}
{'tp': 2, 'DetectionRate': 149.02094240837695, 'Name': 'tr-drop-', 'Threshold': '36', 'fn': 4, 'Precision': 1.0, 'Fscore': 0.5, 'fp': 0, 'Accuracy': 0.9738562091503268, 'tn': 147, 'Recall': 0.3333333333333333}
{'tp': 26, 'DetectionRate': 138.07853403141362, 'Name': 'worm-allaple', 'Threshold': '36', 'fn': 15, 'Precision': 0.9285714285714286, 'Fscore': 0.7536231884057972, 'fp': 2, 'Accuracy': 0.8888888888888888, 'tn': 110, 'Recall': 0.6341463414634146}
{'tp': 13, 'DetectionRate': 153.0, 'Name': 'bds-udr', 'Threshold': '36', 'fn': 0, 'Precision': 1.0, 'Fscore': 1.0, 'fp': 0, 'Accuracy': 1.0, 'tn': 140, 'Recall': 1.0}
{'Fscore': 0.6060606060606061, 'DetectionRate': 138.06806282722513, 'fn': 13, 'Accuracy': 0.9139072847682119, 'Precision': 1.0, 'Name': 'game-dldr-trymedia', 'tp': 10, 'fp': 0, 'Threshold': '37', 'tn': 128, 'Recall': 0.43478260869565216}
{'Fscore': 1.0, 'DetectionRate': 151.0, 'fn': 0, 'Accuracy': 1.0, 'Precision': 1.0, 'Name': 'bds-udr', 'tp': 13, 'fp': 0, 'Threshold': '37', 'tn': 138, 'Recall': 1.0}
{'Fscore': 0.7462686567164178, 'DetectionRate': 136.07853403141362, 'fn': 15, 'Accuracy': 0.8874172185430463, 'Precision': 0.9259259259259259, 'Name': 'worm-allaple', 'tp': 25, 'fp': 2, 'Threshold': '37', 'tn': 109, 'Recall': 0.625}
{'Fscore': 0.3, 'DetectionRate': 151.0, 'fn': 0, 'Accuracy': 0.9072847682119205, 'Precision': 0.17647058823529413, 'Name': 'adspy', 'tp': 3, 'fp': 14, 'Threshold': '37', 'tn': 134, 'Recall': 1.0}
{'Fscore': 0.8823529411764706, 'DetectionRate': 151.0, 'fn': 0, 'Accuracy': 0.9735099337748344, 'Precision': 0.7894736842105263, 'Name': 'game-dldr-fenomen', 'tp': 15, 'fp': 4, 'Threshold': '37', 'tn': 132, 'Recall': 1.0}
{'Fscore': 1.0, 'DetectionRate': 151.0, 'fn': 0, 'Accuracy': 1.0, 'Precision': 1.0, 'Name': 'game-casino', 'tp': 2, 'fp': 0, 'Threshold': '37', 'tn': 149, 'Recall': 1.0}
{'Fscore': 0.9375, 'DetectionRate': 151.0, 'fn': 0, 'Accuracy': 0.9867549668874173, 'Precision': 0.8823529411764706, 'Name': 'tr-dldr-swizzor', 'tp': 15, 'fp': 2, 'Threshold': '37', 'tn': 134, 'Recall': 1.0}
{'Fscore': 0.8, 'DetectionRate': 151.0, 'fn': 0, 'Accuracy': 0.9933774834437086, 'Precision': 0.6666666666666666, 'Name': 'dial', 'tp': 2, 'fp': 1, 'Threshold': '37', 'tn': 148, 'Recall': 1.0}
{'Fscore': 0.5, 'DetectionRate': 147.02094240837695, 'fn': 4, 'Accuracy': 0.9735099337748344, 'Precision': 1.0, 'Name': 'tr-drop-', 'tp': 2, 'fp': 0, 'Threshold': '37', 'tn': 145, 'Recall': 0.3333333333333333}
{'Fscore': 0.923076923076923, 'DetectionRate': 150.00523560209425, 'fn': 1, 'Accuracy': 0.9933774834437086, 'Precision': 1.0, 'Name': 'bds-hupigon', 'tp': 6, 'fp': 0, 'Threshold': '37', 'tn': 144, 'Recall': 0.8571428571428571}
{'Fscore': 0.42857142857142855, 'DetectionRate': 146.0261780104712, 'fn': 5, 'Accuracy': 0.9470198675496688, 'Precision': 0.5, 'Name': 'tr-dropper-gen', 'tp': 3, 'fp': 3, 'Threshold': '37', 'tn': 140, 'Recall': 0.375}
{'Fscore': 0.608695652173913, 'DetectionRate': 148.01570680628274, 'fn': 3, 'Accuracy': 0.8807947019867549, 'Precision': 0.4827586206896552, 'Name': 'w32-virut', 'tp': 14, 'fp': 15, 'Threshold': '37', 'tn': 119, 'Recall': 0.8235294117647058}
{'DetectionRate': 151.0, 'Name': 'game-casino', 'Fscore': 1.0, 'tp': 2, 'tn': 149, 'Recall': 1.0, 'fn': 0, 'fp': 0, 'Accuracy': 1.0, 'Threshold': '38', 'Precision': 1.0}
{'DetectionRate': 151.0, 'Name': 'adspy', 'Fscore': 0.3, 'tp': 3, 'tn': 134, 'Recall': 1.0, 'fn': 0, 'fp': 14, 'Accuracy': 0.9072847682119205, 'Threshold': '38', 'Precision': 0.17647058823529413}
{'DetectionRate': 138.06806282722513, 'Name': 'game-dldr-trymedia', 'Fscore': 0.6060606060606061, 'tp': 10, 'tn': 128, 'Recall': 0.43478260869565216, 'fn': 13, 'fp': 0, 'Accuracy': 0.9139072847682119, 'Threshold': '38', 'Precision': 1.0}
{'DetectionRate': 147.02094240837695, 'Name': 'tr-drop-', 'Fscore': 0.5, 'tp': 2, 'tn': 145, 'Recall': 0.3333333333333333, 'fn': 4, 'fp': 0, 'Accuracy': 0.9735099337748344, 'Threshold': '38', 'Precision': 1.0}
{'DetectionRate': 151.0, 'Name': 'dial', 'Fscore': 0.8, 'tp': 2, 'tn': 148, 'Recall': 1.0, 'fn': 0, 'fp': 1, 'Accuracy': 0.9933774834437086, 'Threshold': '38', 'Precision': 0.6666666666666666}
{'DetectionRate': 148.01570680628274, 'Name': 'w32-virut', 'Fscore': 0.608695652173913, 'tp': 14, 'tn': 119, 'Recall': 0.8235294117647058, 'fn': 3, 'fp': 15, 'Accuracy': 0.8807947019867549, 'Threshold': '38', 'Precision': 0.4827586206896552}
{'DetectionRate': 146.0261780104712, 'Name': 'tr-dropper-gen', 'Fscore': 0.42857142857142855, 'tp': 3, 'tn': 140, 'Recall': 0.375, 'fn': 5, 'fp': 3, 'Accuracy': 0.9470198675496688, 'Threshold': '38', 'Precision': 0.5}
{'DetectionRate': 136.07853403141362, 'Name': 'worm-allaple', 'Fscore': 0.7462686567164178, 'tp': 25, 'tn': 109, 'Recall': 0.625, 'fn': 15, 'fp': 2, 'Accuracy': 0.8874172185430463, 'Threshold': '38', 'Precision': 0.9259259259259259}
{'DetectionRate': 151.0, 'Name': 'bds-udr', 'Fscore': 1.0, 'tp': 13, 'tn': 138, 'Recall': 1.0, 'fn': 0, 'fp': 0, 'Accuracy': 1.0, 'Threshold': '38', 'Precision': 1.0}
{'DetectionRate': 150.00523560209425, 'Name': 'bds-hupigon', 'Fscore': 0.923076923076923, 'tp': 6, 'tn': 144, 'Recall': 0.8571428571428571, 'fn': 1, 'fp': 0, 'Accuracy': 0.9933774834437086, 'Threshold': '38', 'Precision': 1.0}
{'DetectionRate': 151.0, 'Name': 'tr-dldr-swizzor', 'Fscore': 0.9375, 'tp': 15, 'tn': 134, 'Recall': 1.0, 'fn': 0, 'fp': 2, 'Accuracy': 0.9867549668874173, 'Threshold': '38', 'Precision': 0.8823529411764706}
{'DetectionRate': 151.0, 'Name': 'game-dldr-fenomen', 'Fscore': 0.8823529411764706, 'tp': 15, 'tn': 132, 'Recall': 1.0, 'fn': 0, 'fp': 4, 'Accuracy': 0.9735099337748344, 'Threshold': '38', 'Precision': 0.7894736842105263}
{'Precision': 1.0, 'Threshold': '39', 'Name': 'bds-udr', 'Accuracy': 1.0, 'fp': 0, 'tp': 13, 'fn': 0, 'tn': 137, 'Recall': 1.0, 'DetectionRate': 150.0, 'Fscore': 1.0}
{'Precision': 0.8823529411764706, 'Threshold': '39', 'Name': 'tr-dldr-swizzor', 'Accuracy': 0.9866666666666667, 'fp': 2, 'tp': 15, 'fn': 0, 'tn': 133, 'Recall': 1.0, 'DetectionRate': 150.0, 'Fscore': 0.9375}
{'Precision': 0.6666666666666666, 'Threshold': '39', 'Name': 'dial', 'Accuracy': 0.9933333333333333, 'fp': 1, 'tp': 2, 'fn': 0, 'tn': 147, 'Recall': 1.0, 'DetectionRate': 150.0, 'Fscore': 0.8}
{'Precision': 0.5, 'Threshold': '39', 'Name': 'tr-dropper-gen', 'Accuracy': 0.9466666666666667, 'fp': 3, 'tp': 3, 'fn': 5, 'tn': 139, 'Recall': 0.375, 'DetectionRate': 145.0261780104712, 'Fscore': 0.42857142857142855}
{'Precision': 0.4827586206896552, 'Threshold': '39', 'Name': 'w32-virut', 'Accuracy': 0.88, 'fp': 15, 'tp': 14, 'fn': 3, 'tn': 118, 'Recall': 0.8235294117647058, 'DetectionRate': 147.01570680628274, 'Fscore': 0.608695652173913}
{'Precision': 1.0, 'Threshold': '39', 'Name': 'game-casino', 'Accuracy': 1.0, 'fp': 0, 'tp': 2, 'fn': 0, 'tn': 148, 'Recall': 1.0, 'DetectionRate': 150.0, 'Fscore': 1.0}
{'Precision': 1.0, 'Threshold': '39', 'Name': 'game-dldr-trymedia', 'Accuracy': 0.9133333333333333, 'fp': 0, 'tp': 10, 'fn': 13, 'tn': 127, 'Recall': 0.43478260869565216, 'DetectionRate': 137.06806282722513, 'Fscore': 0.6060606060606061}
{'Precision': 0.17647058823529413, 'Threshold': '39', 'Name': 'adspy', 'Accuracy': 0.9066666666666666, 'fp': 14, 'tp': 3, 'fn': 0, 'tn': 133, 'Recall': 1.0, 'DetectionRate': 150.0, 'Fscore': 0.3}
{'Precision': 0.9230769230769231, 'Threshold': '39', 'Name': 'worm-allaple', 'Accuracy': 0.8866666666666667, 'fp': 2, 'tp': 24, 'fn': 15, 'tn': 109, 'Recall': 0.6153846153846154, 'DetectionRate': 135.07853403141362, 'Fscore': 0.7384615384615384}
{'Precision': 1.0, 'Threshold': '39', 'Name': 'bds-hupigon', 'Accuracy': 0.9933333333333333, 'fp': 0, 'tp': 6, 'fn': 1, 'tn': 143, 'Recall': 0.8571428571428571, 'DetectionRate': 149.00523560209425, 'Fscore': 0.923076923076923}
{'Precision': 0.7894736842105263, 'Threshold': '39', 'Name': 'game-dldr-fenomen', 'Accuracy': 0.9733333333333334, 'fp': 4, 'tp': 15, 'fn': 0, 'tn': 131, 'Recall': 1.0, 'DetectionRate': 150.0, 'Fscore': 0.8823529411764706}
{'Precision': 1.0, 'Threshold': '39', 'Name': 'tr-drop-', 'Accuracy': 0.9733333333333334, 'fp': 0, 'tp': 2, 'fn': 4, 'tn': 144, 'Recall': 0.3333333333333333, 'DetectionRate': 146.02094240837695, 'Fscore': 0.5}
{'tn': 131, 'Precision': 0.7894736842105263, 'DetectionRate': 150.0, 'fp': 4, 'Fscore': 0.8823529411764706, 'Recall': 1.0, 'fn': 0, 'Accuracy': 0.9733333333333334, 'tp': 15, 'Name': 'game-dldr-fenomen', 'Threshold': '40'}
{'tn': 133, 'Precision': 0.17647058823529413, 'DetectionRate': 150.0, 'fp': 14, 'Fscore': 0.3, 'Recall': 1.0, 'fn': 0, 'Accuracy': 0.9066666666666666, 'tp': 3, 'Name': 'adspy', 'Threshold': '40'}
{'tn': 109, 'Precision': 0.9230769230769231, 'DetectionRate': 135.07853403141362, 'fp': 2, 'Fscore': 0.7384615384615384, 'Recall': 0.6153846153846154, 'fn': 15, 'Accuracy': 0.8866666666666667, 'tp': 24, 'Name': 'worm-allaple', 'Threshold': '40'}
{'tn': 148, 'Precision': 1.0, 'DetectionRate': 150.0, 'fp': 0, 'Fscore': 1.0, 'Recall': 1.0, 'fn': 0, 'Accuracy': 1.0, 'tp': 2, 'Name': 'game-casino', 'Threshold': '40'}
{'tn': 144, 'Precision': 1.0, 'DetectionRate': 146.02094240837695, 'fp': 0, 'Fscore': 0.5, 'Recall': 0.3333333333333333, 'fn': 4, 'Accuracy': 0.9733333333333334, 'tp': 2, 'Name': 'tr-drop-', 'Threshold': '40'}
{'tn': 133, 'Precision': 0.8823529411764706, 'DetectionRate': 150.0, 'fp': 2, 'Fscore': 0.9375, 'Recall': 1.0, 'fn': 0, 'Accuracy': 0.9866666666666667, 'tp': 15, 'Name': 'tr-dldr-swizzor', 'Threshold': '40'}
{'tn': 139, 'Precision': 0.5, 'DetectionRate': 145.0261780104712, 'fp': 3, 'Fscore': 0.42857142857142855, 'Recall': 0.375, 'fn': 5, 'Accuracy': 0.9466666666666667, 'tp': 3, 'Name': 'tr-dropper-gen', 'Threshold': '40'}
{'tn': 118, 'Precision': 0.4827586206896552, 'DetectionRate': 147.01570680628274, 'fp': 15, 'Fscore': 0.608695652173913, 'Recall': 0.8235294117647058, 'fn': 3, 'Accuracy': 0.88, 'tp': 14, 'Name': 'w32-virut', 'Threshold': '40'}
{'tn': 137, 'Precision': 1.0, 'DetectionRate': 150.0, 'fp': 0, 'Fscore': 1.0, 'Recall': 1.0, 'fn': 0, 'Accuracy': 1.0, 'tp': 13, 'Name': 'bds-udr', 'Threshold': '40'}
{'tn': 143, 'Precision': 1.0, 'DetectionRate': 149.00523560209425, 'fp': 0, 'Fscore': 0.923076923076923, 'Recall': 0.8571428571428571, 'fn': 1, 'Accuracy': 0.9933333333333333, 'tp': 6, 'Name': 'bds-hupigon', 'Threshold': '40'}
{'tn': 127, 'Precision': 1.0, 'DetectionRate': 137.06806282722513, 'fp': 0, 'Fscore': 0.6060606060606061, 'Recall': 0.43478260869565216, 'fn': 13, 'Accuracy': 0.9133333333333333, 'tp': 10, 'Name': 'game-dldr-trymedia', 'Threshold': '40'}
{'tn': 147, 'Precision': 0.6666666666666666, 'DetectionRate': 150.0, 'fp': 1, 'Fscore': 0.8, 'Recall': 1.0, 'fn': 0, 'Accuracy': 0.9933333333333333, 'tp': 2, 'Name': 'dial', 'Threshold': '40'}
{'Precision': 1.0, 'fp': 0, 'fn': 4, 'Threshold': '41', 'Name': 'tr-drop-', 'tp': 2, 'Recall': 0.3333333333333333, 'Fscore': 0.5, 'DetectionRate': 145.02094240837695, 'Accuracy': 0.9731543624161074, 'tn': 143}
{'Precision': 1.0, 'fp': 0, 'fn': 0, 'Threshold': '41', 'Name': 'game-casino', 'tp': 2, 'Recall': 1.0, 'Fscore': 1.0, 'DetectionRate': 149.0, 'Accuracy': 1.0, 'tn': 147}
{'Precision': 1.0, 'fp': 0, 'fn': 0, 'Threshold': '41', 'Name': 'bds-udr', 'tp': 13, 'Recall': 1.0, 'Fscore': 1.0, 'DetectionRate': 149.0, 'Accuracy': 1.0, 'tn': 136}
{'Precision': 0.5, 'fp': 3, 'fn': 5, 'Threshold': '41', 'Name': 'tr-dropper-gen', 'tp': 3, 'Recall': 0.375, 'Fscore': 0.42857142857142855, 'DetectionRate': 144.0261780104712, 'Accuracy': 0.9463087248322147, 'tn': 138}
{'Precision': 0.8823529411764706, 'fp': 2, 'fn': 0, 'Threshold': '41', 'Name': 'tr-dldr-swizzor', 'tp': 15, 'Recall': 1.0, 'Fscore': 0.9375, 'DetectionRate': 149.0, 'Accuracy': 0.9865771812080537, 'tn': 132}
{'Precision': 0.5, 'fp': 14, 'fn': 3, 'Threshold': '41', 'Name': 'w32-virut', 'tp': 14, 'Recall': 0.8235294117647058, 'Fscore': 0.6222222222222222, 'DetectionRate': 146.01570680628274, 'Accuracy': 0.8859060402684564, 'tn': 118}
{'Precision': 0.6666666666666666, 'fp': 1, 'fn': 0, 'Threshold': '41', 'Name': 'dial', 'tp': 2, 'Recall': 1.0, 'Fscore': 0.8, 'DetectionRate': 149.0, 'Accuracy': 0.9932885906040269, 'tn': 146}
{'Precision': 1.0, 'fp': 0, 'fn': 1, 'Threshold': '41', 'Name': 'bds-hupigon', 'tp': 6, 'Recall': 0.8571428571428571, 'Fscore': 0.923076923076923, 'DetectionRate': 148.00523560209425, 'Accuracy': 0.9932885906040269, 'tn': 142}
{'Precision': 0.9230769230769231, 'fp': 2, 'fn': 14, 'Threshold': '41', 'Name': 'worm-allaple', 'tp': 24, 'Recall': 0.631578947368421, 'Fscore': 0.7499999999999999, 'DetectionRate': 135.07329842931938, 'Accuracy': 0.8926174496644296, 'tn': 109}
{'Precision': 0.7894736842105263, 'fp': 4, 'fn': 0, 'Threshold': '41', 'Name': 'game-dldr-fenomen', 'tp': 15, 'Recall': 1.0, 'Fscore': 0.8823529411764706, 'DetectionRate': 149.0, 'Accuracy': 0.9731543624161074, 'tn': 130}
{'Precision': 1.0, 'fp': 0, 'fn': 13, 'Threshold': '41', 'Name': 'game-dldr-trymedia', 'tp': 10, 'Recall': 0.43478260869565216, 'Fscore': 0.6060606060606061, 'DetectionRate': 136.06806282722513, 'Accuracy': 0.912751677852349, 'tn': 126}
{'Precision': 0.17647058823529413, 'fp': 14, 'fn': 0, 'Threshold': '41', 'Name': 'adspy', 'tp': 3, 'Recall': 1.0, 'Fscore': 0.3, 'DetectionRate': 149.0, 'Accuracy': 0.9060402684563759, 'tn': 132}
{'Name': 'game-dldr-trymedia', 'Fscore': 0.6060606060606061, 'DetectionRate': 135.06806282722513, 'fn': 13, 'Accuracy': 0.9121621621621622, 'tn': 125, 'fp': 0, 'Threshold': '42', 'Precision': 1.0, 'tp': 10, 'Recall': 0.43478260869565216}
{'Name': 'tr-dropper-gen', 'Fscore': 0.42857142857142855, 'DetectionRate': 143.0261780104712, 'fn': 5, 'Accuracy': 0.9459459459459459, 'tn': 137, 'fp': 3, 'Threshold': '42', 'Precision': 0.5, 'tp': 3, 'Recall': 0.375}
{'Name': 'w32-virut', 'Fscore': 0.6222222222222222, 'DetectionRate': 145.01570680628274, 'fn': 3, 'Accuracy': 0.8851351351351351, 'tn': 117, 'fp': 14, 'Threshold': '42', 'Precision': 0.5, 'tp': 14, 'Recall': 0.8235294117647058}
{'Name': 'dial', 'Fscore': 0.8, 'DetectionRate': 148.0, 'fn': 0, 'Accuracy': 0.9932432432432432, 'tn': 145, 'fp': 1, 'Threshold': '42', 'Precision': 0.6666666666666666, 'tp': 2, 'Recall': 1.0}
{'Name': 'adspy', 'Fscore': 0.3, 'DetectionRate': 148.0, 'fn': 0, 'Accuracy': 0.9054054054054054, 'tn': 131, 'fp': 14, 'Threshold': '42', 'Precision': 0.17647058823529413, 'tp': 3, 'Recall': 1.0}
{'Name': 'bds-hupigon', 'Fscore': 0.923076923076923, 'DetectionRate': 147.00523560209425, 'fn': 1, 'Accuracy': 0.9932432432432432, 'tn': 141, 'fp': 0, 'Threshold': '42', 'Precision': 1.0, 'tp': 6, 'Recall': 0.8571428571428571}
{'Name': 'game-dldr-fenomen', 'Fscore': 0.8823529411764706, 'DetectionRate': 148.0, 'fn': 0, 'Accuracy': 0.972972972972973, 'tn': 129, 'fp': 4, 'Threshold': '42', 'Precision': 0.7894736842105263, 'tp': 15, 'Recall': 1.0}
{'Name': 'game-casino', 'Fscore': 1.0, 'DetectionRate': 148.0, 'fn': 0, 'Accuracy': 1.0, 'tn': 146, 'fp': 0, 'Threshold': '42', 'Precision': 1.0, 'tp': 2, 'Recall': 1.0}
{'Name': 'tr-drop-', 'Fscore': 0.5, 'DetectionRate': 144.02094240837695, 'fn': 4, 'Accuracy': 0.972972972972973, 'tn': 142, 'fp': 0, 'Threshold': '42', 'Precision': 1.0, 'tp': 2, 'Recall': 0.3333333333333333}
{'Name': 'bds-udr', 'Fscore': 1.0, 'DetectionRate': 148.0, 'fn': 0, 'Accuracy': 1.0, 'tn': 135, 'fp': 0, 'Threshold': '42', 'Precision': 1.0, 'tp': 13, 'Recall': 1.0}
{'Name': 'worm-allaple', 'Fscore': 0.7419354838709677, 'DetectionRate': 134.07329842931938, 'fn': 14, 'Accuracy': 0.8918918918918919, 'tn': 109, 'fp': 2, 'Threshold': '42', 'Precision': 0.92, 'tp': 23, 'Recall': 0.6216216216216216}
{'Name': 'tr-dldr-swizzor', 'Fscore': 0.9375, 'DetectionRate': 148.0, 'fn': 0, 'Accuracy': 0.9864864864864865, 'tn': 131, 'fp': 2, 'Threshold': '42', 'Precision': 0.8823529411764706, 'tp': 15, 'Recall': 1.0}
{'Fscore': 0.923076923076923, 'DetectionRate': 145.00523560209425, 'Threshold': '43', 'Recall': 0.8571428571428571, 'Accuracy': 0.9931506849315068, 'tp': 6, 'fn': 1, 'Precision': 1.0, 'fp': 0, 'Name': 'bds-hupigon', 'tn': 139}
{'Fscore': 0.6363636363636364, 'DetectionRate': 144.0104712041885, 'Threshold': '43', 'Recall': 0.875, 'Accuracy': 0.8904109589041096, 'tp': 14, 'fn': 2, 'Precision': 0.5, 'fp': 14, 'Name': 'w32-virut', 'tn': 116}
{'Fscore': 0.8823529411764706, 'DetectionRate': 146.0, 'Threshold': '43', 'Recall': 1.0, 'Accuracy': 0.9726027397260274, 'tp': 15, 'fn': 0, 'Precision': 0.7894736842105263, 'fp': 4, 'Name': 'game-dldr-fenomen', 'tn': 127}
{'Fscore': 0.3, 'DetectionRate': 146.0, 'Threshold': '43', 'Recall': 1.0, 'Accuracy': 0.9041095890410958, 'tp': 3, 'fn': 0, 'Precision': 0.17647058823529413, 'fp': 14, 'Name': 'adspy', 'tn': 129}
{'Fscore': 0.36363636363636365, 'DetectionRate': 141.0261780104712, 'Threshold': '43', 'Recall': 0.2857142857142857, 'Accuracy': 0.952054794520548, 'tp': 2, 'fn': 5, 'Precision': 0.5, 'fp': 2, 'Name': 'tr-dropper-gen', 'tn': 137}
{'Fscore': 0.8, 'DetectionRate': 146.0, 'Threshold': '43', 'Recall': 1.0, 'Accuracy': 0.9931506849315068, 'tp': 2, 'fn': 0, 'Precision': 0.6666666666666666, 'fp': 1, 'Name': 'dial', 'tn': 143}
{'Fscore': 0.5, 'DetectionRate': 142.02094240837695, 'Threshold': '43', 'Recall': 0.3333333333333333, 'Accuracy': 0.9726027397260274, 'tp': 2, 'fn': 4, 'Precision': 1.0, 'fp': 0, 'Name': 'tr-drop-', 'tn': 140}
{'Fscore': 1.0, 'DetectionRate': 146.0, 'Threshold': '43', 'Recall': 1.0, 'Accuracy': 1.0, 'tp': 13, 'fn': 0, 'Precision': 1.0, 'fp': 0, 'Name': 'bds-udr', 'tn': 133}
{'Fscore': 0.9375, 'DetectionRate': 146.0, 'Threshold': '43', 'Recall': 1.0, 'Accuracy': 0.9863013698630136, 'tp': 15, 'fn': 0, 'Precision': 0.8823529411764706, 'fp': 2, 'Name': 'tr-dldr-swizzor', 'tn': 129}
{'Fscore': 0.7419354838709677, 'DetectionRate': 132.07329842931938, 'Threshold': '43', 'Recall': 0.6216216216216216, 'Accuracy': 0.8904109589041096, 'tp': 23, 'fn': 14, 'Precision': 0.92, 'fp': 2, 'Name': 'worm-allaple', 'tn': 107}
{'Fscore': 1.0, 'DetectionRate': 146.0, 'Threshold': '43', 'Recall': 1.0, 'Accuracy': 1.0, 'tp': 2, 'fn': 0, 'Precision': 1.0, 'fp': 0, 'Name': 'game-casino', 'tn': 144}
{'Fscore': 0.6060606060606061, 'DetectionRate': 133.06806282722513, 'Threshold': '43', 'Recall': 0.43478260869565216, 'Accuracy': 0.910958904109589, 'tp': 10, 'fn': 13, 'Precision': 1.0, 'fp': 0, 'Name': 'game-dldr-trymedia', 'tn': 123}
{'tp': 14, 'Threshold': '44', 'tn': 116, 'fp': 14, 'fn': 2, 'Accuracy': 0.8904109589041096, 'Fscore': 0.6363636363636364, 'DetectionRate': 144.0104712041885, 'Recall': 0.875, 'Name': 'w32-virut', 'Precision': 0.5}
{'tp': 15, 'Threshold': '44', 'tn': 127, 'fp': 4, 'fn': 0, 'Accuracy': 0.9726027397260274, 'Fscore': 0.8823529411764706, 'DetectionRate': 146.0, 'Recall': 1.0, 'Name': 'game-dldr-fenomen', 'Precision': 0.7894736842105263}
{'tp': 2, 'Threshold': '44', 'tn': 144, 'fp': 0, 'fn': 0, 'Accuracy': 1.0, 'Fscore': 1.0, 'DetectionRate': 146.0, 'Recall': 1.0, 'Name': 'game-casino', 'Precision': 1.0}
{'tp': 6, 'Threshold': '44', 'tn': 139, 'fp': 0, 'fn': 1, 'Accuracy': 0.9931506849315068, 'Fscore': 0.923076923076923, 'DetectionRate': 145.00523560209425, 'Recall': 0.8571428571428571, 'Name': 'bds-hupigon', 'Precision': 1.0}
{'tp': 2, 'Threshold': '44', 'tn': 137, 'fp': 2, 'fn': 5, 'Accuracy': 0.952054794520548, 'Fscore': 0.36363636363636365, 'DetectionRate': 141.0261780104712, 'Recall': 0.2857142857142857, 'Name': 'tr-dropper-gen', 'Precision': 0.5}
{'tp': 15, 'Threshold': '44', 'tn': 129, 'fp': 2, 'fn': 0, 'Accuracy': 0.9863013698630136, 'Fscore': 0.9375, 'DetectionRate': 146.0, 'Recall': 1.0, 'Name': 'tr-dldr-swizzor', 'Precision': 0.8823529411764706}
{'tp': 2, 'Threshold': '44', 'tn': 143, 'fp': 1, 'fn': 0, 'Accuracy': 0.9931506849315068, 'Fscore': 0.8, 'DetectionRate': 146.0, 'Recall': 1.0, 'Name': 'dial', 'Precision': 0.6666666666666666}
{'tp': 23, 'Threshold': '44', 'tn': 107, 'fp': 2, 'fn': 14, 'Accuracy': 0.8904109589041096, 'Fscore': 0.7419354838709677, 'DetectionRate': 132.07329842931938, 'Recall': 0.6216216216216216, 'Name': 'worm-allaple', 'Precision': 0.92}
{'tp': 2, 'Threshold': '44', 'tn': 140, 'fp': 0, 'fn': 4, 'Accuracy': 0.9726027397260274, 'Fscore': 0.5, 'DetectionRate': 142.02094240837695, 'Recall': 0.3333333333333333, 'Name': 'tr-drop-', 'Precision': 1.0}
{'tp': 3, 'Threshold': '44', 'tn': 129, 'fp': 14, 'fn': 0, 'Accuracy': 0.9041095890410958, 'Fscore': 0.3, 'DetectionRate': 146.0, 'Recall': 1.0, 'Name': 'adspy', 'Precision': 0.17647058823529413}
{'tp': 10, 'Threshold': '44', 'tn': 123, 'fp': 0, 'fn': 13, 'Accuracy': 0.910958904109589, 'Fscore': 0.6060606060606061, 'DetectionRate': 133.06806282722513, 'Recall': 0.43478260869565216, 'Name': 'game-dldr-trymedia', 'Precision': 1.0}
{'tp': 13, 'Threshold': '44', 'tn': 133, 'fp': 0, 'fn': 0, 'Accuracy': 1.0, 'Fscore': 1.0, 'DetectionRate': 146.0, 'Recall': 1.0, 'Name': 'bds-udr', 'Precision': 1.0}
{'tn': 107, 'Precision': 0.92, 'DetectionRate': 132.07329842931938, 'Threshold': '45', 'fp': 2, 'fn': 14, 'Accuracy': 0.8904109589041096, 'tp': 23, 'Recall': 0.6216216216216216, 'Name': 'worm-allaple', 'Fscore': 0.7419354838709677}
{'tn': 123, 'Precision': 1.0, 'DetectionRate': 133.06806282722513, 'Threshold': '45', 'fp': 0, 'fn': 13, 'Accuracy': 0.910958904109589, 'tp': 10, 'Recall': 0.43478260869565216, 'Name': 'game-dldr-trymedia', 'Fscore': 0.6060606060606061}
{'tn': 129, 'Precision': 0.17647058823529413, 'DetectionRate': 146.0, 'Threshold': '45', 'fp': 14, 'fn': 0, 'Accuracy': 0.9041095890410958, 'tp': 3, 'Recall': 1.0, 'Name': 'adspy', 'Fscore': 0.3}
{'tn': 127, 'Precision': 0.7894736842105263, 'DetectionRate': 146.0, 'Threshold': '45', 'fp': 4, 'fn': 0, 'Accuracy': 0.9726027397260274, 'tp': 15, 'Recall': 1.0, 'Name': 'game-dldr-fenomen', 'Fscore': 0.8823529411764706}
{'tn': 139, 'Precision': 1.0, 'DetectionRate': 145.00523560209425, 'Threshold': '45', 'fp': 0, 'fn': 1, 'Accuracy': 0.9931506849315068, 'tp': 6, 'Recall': 0.8571428571428571, 'Name': 'bds-hupigon', 'Fscore': 0.923076923076923}
{'tn': 143, 'Precision': 0.6666666666666666, 'DetectionRate': 146.0, 'Threshold': '45', 'fp': 1, 'fn': 0, 'Accuracy': 0.9931506849315068, 'tp': 2, 'Recall': 1.0, 'Name': 'dial', 'Fscore': 0.8}
{'tn': 116, 'Precision': 0.5, 'DetectionRate': 144.0104712041885, 'Threshold': '45', 'fp': 14, 'fn': 2, 'Accuracy': 0.8904109589041096, 'tp': 14, 'Recall': 0.875, 'Name': 'w32-virut', 'Fscore': 0.6363636363636364}
{'tn': 133, 'Precision': 1.0, 'DetectionRate': 146.0, 'Threshold': '45', 'fp': 0, 'fn': 0, 'Accuracy': 1.0, 'tp': 13, 'Recall': 1.0, 'Name': 'bds-udr', 'Fscore': 1.0}
{'tn': 137, 'Precision': 0.5, 'DetectionRate': 141.0261780104712, 'Threshold': '45', 'fp': 2, 'fn': 5, 'Accuracy': 0.952054794520548, 'tp': 2, 'Recall': 0.2857142857142857, 'Name': 'tr-dropper-gen', 'Fscore': 0.36363636363636365}
{'tn': 140, 'Precision': 1.0, 'DetectionRate': 142.02094240837695, 'Threshold': '45', 'fp': 0, 'fn': 4, 'Accuracy': 0.9726027397260274, 'tp': 2, 'Recall': 0.3333333333333333, 'Name': 'tr-drop-', 'Fscore': 0.5}
{'tn': 144, 'Precision': 1.0, 'DetectionRate': 146.0, 'Threshold': '45', 'fp': 0, 'fn': 0, 'Accuracy': 1.0, 'tp': 2, 'Recall': 1.0, 'Name': 'game-casino', 'Fscore': 1.0}
{'tn': 129, 'Precision': 0.8823529411764706, 'DetectionRate': 146.0, 'Threshold': '45', 'fp': 2, 'fn': 0, 'Accuracy': 0.9863013698630136, 'tp': 15, 'Recall': 1.0, 'Name': 'tr-dldr-swizzor', 'Fscore': 0.9375}
{'DetectionRate': 133.06806282722513, 'Accuracy': 0.910958904109589, 'tp': 10, 'Fscore': 0.6060606060606061, 'Name': 'game-dldr-trymedia', 'fp': 0, 'fn': 13, 'Recall': 0.43478260869565216, 'Precision': 1.0, 'Threshold': '46', 'tn': 123}
{'DetectionRate': 146.0, 'Accuracy': 0.9863013698630136, 'tp': 15, 'Fscore': 0.9375, 'Name': 'tr-dldr-swizzor', 'fp': 2, 'fn': 0, 'Recall': 1.0, 'Precision': 0.8823529411764706, 'Threshold': '46', 'tn': 129}
{'DetectionRate': 146.0, 'Accuracy': 1.0, 'tp': 13, 'Fscore': 1.0, 'Name': 'bds-udr', 'fp': 0, 'fn': 0, 'Recall': 1.0, 'Precision': 1.0, 'Threshold': '46', 'tn': 133}
{'DetectionRate': 132.07329842931938, 'Accuracy': 0.8904109589041096, 'tp': 23, 'Fscore': 0.7419354838709677, 'Name': 'worm-allaple', 'fp': 2, 'fn': 14, 'Recall': 0.6216216216216216, 'Precision': 0.92, 'Threshold': '46', 'tn': 107}
{'DetectionRate': 142.02094240837695, 'Accuracy': 0.9726027397260274, 'tp': 2, 'Fscore': 0.5, 'Name': 'tr-drop-', 'fp': 0, 'fn': 4, 'Recall': 0.3333333333333333, 'Precision': 1.0, 'Threshold': '46', 'tn': 140}
{'DetectionRate': 146.0, 'Accuracy': 0.9931506849315068, 'tp': 2, 'Fscore': 0.8, 'Name': 'dial', 'fp': 1, 'fn': 0, 'Recall': 1.0, 'Precision': 0.6666666666666666, 'Threshold': '46', 'tn': 143}
{'DetectionRate': 145.00523560209425, 'Accuracy': 0.9931506849315068, 'tp': 6, 'Fscore': 0.923076923076923, 'Name': 'bds-hupigon', 'fp': 0, 'fn': 1, 'Recall': 0.8571428571428571, 'Precision': 1.0, 'Threshold': '46', 'tn': 139}
{'DetectionRate': 146.0, 'Accuracy': 1.0, 'tp': 2, 'Fscore': 1.0, 'Name': 'game-casino', 'fp': 0, 'fn': 0, 'Recall': 1.0, 'Precision': 1.0, 'Threshold': '46', 'tn': 144}
{'DetectionRate': 146.0, 'Accuracy': 0.9041095890410958, 'tp': 3, 'Fscore': 0.3, 'Name': 'adspy', 'fp': 14, 'fn': 0, 'Recall': 1.0, 'Precision': 0.17647058823529413, 'Threshold': '46', 'tn': 129}
{'DetectionRate': 146.0, 'Accuracy': 0.9726027397260274, 'tp': 15, 'Fscore': 0.8823529411764706, 'Name': 'game-dldr-fenomen', 'fp': 4, 'fn': 0, 'Recall': 1.0, 'Precision': 0.7894736842105263, 'Threshold': '46', 'tn': 127}
{'DetectionRate': 141.0261780104712, 'Accuracy': 0.952054794520548, 'tp': 2, 'Fscore': 0.36363636363636365, 'Name': 'tr-dropper-gen', 'fp': 2, 'fn': 5, 'Recall': 0.2857142857142857, 'Precision': 0.5, 'Threshold': '46', 'tn': 137}
{'DetectionRate': 144.0104712041885, 'Accuracy': 0.8904109589041096, 'tp': 14, 'Fscore': 0.6363636363636364, 'Name': 'w32-virut', 'fp': 14, 'fn': 2, 'Recall': 0.875, 'Precision': 0.5, 'Threshold': '46', 'tn': 116}
{'DetectionRate': 144.0, 'Precision': 0.6666666666666666, 'tp': 2, 'tn': 141, 'Name': 'dial', 'Accuracy': 0.9930555555555556, 'Fscore': 0.8, 'Threshold': '47', 'Recall': 1.0, 'fp': 1, 'fn': 0}
{'DetectionRate': 140.02094240837695, 'Precision': 1.0, 'tp': 2, 'tn': 138, 'Name': 'tr-drop-', 'Accuracy': 0.9722222222222222, 'Fscore': 0.5, 'Threshold': '47', 'Recall': 0.3333333333333333, 'fp': 0, 'fn': 4}
{'DetectionRate': 131.06806282722513, 'Precision': 0.92, 'tp': 23, 'tn': 106, 'Name': 'worm-allaple', 'Accuracy': 0.8958333333333334, 'Fscore': 0.7540983606557377, 'Threshold': '47', 'Recall': 0.6388888888888888, 'fp': 2, 'fn': 13}
{'DetectionRate': 144.0, 'Precision': 1.0, 'tp': 2, 'tn': 142, 'Name': 'game-casino', 'Accuracy': 1.0, 'Fscore': 1.0, 'Threshold': '47', 'Recall': 1.0, 'fp': 0, 'fn': 0}
{'DetectionRate': 142.0104712041885, 'Precision': 0.5185185185185185, 'tp': 14, 'tn': 115, 'Name': 'w32-virut', 'Accuracy': 0.8958333333333334, 'Fscore': 0.6511627906976744, 'Threshold': '47', 'Recall': 0.875, 'fp': 13, 'fn': 2}
{'DetectionRate': 144.0, 'Precision': 0.17647058823529413, 'tp': 3, 'tn': 127, 'Name': 'adspy', 'Accuracy': 0.9027777777777778, 'Fscore': 0.3, 'Threshold': '47', 'Recall': 1.0, 'fp': 14, 'fn': 0}
{'DetectionRate': 144.0, 'Precision': 0.7894736842105263, 'tp': 15, 'tn': 125, 'Name': 'game-dldr-fenomen', 'Accuracy': 0.9722222222222222, 'Fscore': 0.8823529411764706, 'Threshold': '47', 'Recall': 1.0, 'fp': 4, 'fn': 0}
{'DetectionRate': 144.0, 'Precision': 1.0, 'tp': 13, 'tn': 131, 'Name': 'bds-udr', 'Accuracy': 1.0, 'Fscore': 1.0, 'Threshold': '47', 'Recall': 1.0, 'fp': 0, 'fn': 0}
{'DetectionRate': 144.0, 'Precision': 0.8823529411764706, 'tp': 15, 'tn': 127, 'Name': 'tr-dldr-swizzor', 'Accuracy': 0.9861111111111112, 'Fscore': 0.9375, 'Threshold': '47', 'Recall': 1.0, 'fp': 2, 'fn': 0}
{'DetectionRate': 131.06806282722513, 'Precision': 1.0, 'tp': 10, 'tn': 121, 'Name': 'game-dldr-trymedia', 'Accuracy': 0.9097222222222222, 'Fscore': 0.6060606060606061, 'Threshold': '47', 'Recall': 0.43478260869565216, 'fp': 0, 'fn': 13}
{'DetectionRate': 143.00523560209425, 'Precision': 1.0, 'tp': 6, 'tn': 137, 'Name': 'bds-hupigon', 'Accuracy': 0.9930555555555556, 'Fscore': 0.923076923076923, 'Threshold': '47', 'Recall': 0.8571428571428571, 'fp': 0, 'fn': 1}
{'DetectionRate': 139.0261780104712, 'Precision': 0.3333333333333333, 'tp': 1, 'tn': 136, 'Name': 'tr-dropper-gen', 'Accuracy': 0.9513888888888888, 'Fscore': 0.2222222222222222, 'Threshold': '47', 'Recall': 0.16666666666666666, 'fp': 2, 'fn': 5}
{'DetectionRate': 131.06806282722513, 'Name': 'worm-allaple', 'fp': 2, 'Precision': 0.92, 'Recall': 0.6388888888888888, 'Accuracy': 0.8958333333333334, 'Threshold': '48', 'tp': 23, 'fn': 13, 'Fscore': 0.7540983606557377, 'tn': 106}
{'DetectionRate': 144.0, 'Name': 'game-casino', 'fp': 0, 'Precision': 1.0, 'Recall': 1.0, 'Accuracy': 1.0, 'Threshold': '48', 'tp': 2, 'fn': 0, 'Fscore': 1.0, 'tn': 142}
{'DetectionRate': 143.00523560209425, 'Name': 'bds-hupigon', 'fp': 0, 'Precision': 1.0, 'Recall': 0.8571428571428571, 'Accuracy': 0.9930555555555556, 'Threshold': '48', 'tp': 6, 'fn': 1, 'Fscore': 0.923076923076923, 'tn': 137}
{'DetectionRate': 140.02094240837695, 'Name': 'tr-drop-', 'fp': 0, 'Precision': 1.0, 'Recall': 0.3333333333333333, 'Accuracy': 0.9722222222222222, 'Threshold': '48', 'tp': 2, 'fn': 4, 'Fscore': 0.5, 'tn': 138}
{'DetectionRate': 142.0104712041885, 'Name': 'w32-virut', 'fp': 13, 'Precision': 0.5185185185185185, 'Recall': 0.875, 'Accuracy': 0.8958333333333334, 'Threshold': '48', 'tp': 14, 'fn': 2, 'Fscore': 0.6511627906976744, 'tn': 115}
{'DetectionRate': 139.0261780104712, 'Name': 'tr-dropper-gen', 'fp': 2, 'Precision': 0.3333333333333333, 'Recall': 0.16666666666666666, 'Accuracy': 0.9513888888888888, 'Threshold': '48', 'tp': 1, 'fn': 5, 'Fscore': 0.2222222222222222, 'tn': 136}
{'DetectionRate': 144.0, 'Name': 'game-dldr-fenomen', 'fp': 4, 'Precision': 0.7894736842105263, 'Recall': 1.0, 'Accuracy': 0.9722222222222222, 'Threshold': '48', 'tp': 15, 'fn': 0, 'Fscore': 0.8823529411764706, 'tn': 125}
{'DetectionRate': 144.0, 'Name': 'tr-dldr-swizzor', 'fp': 2, 'Precision': 0.8823529411764706, 'Recall': 1.0, 'Accuracy': 0.9861111111111112, 'Threshold': '48', 'tp': 15, 'fn': 0, 'Fscore': 0.9375, 'tn': 127}
{'DetectionRate': 144.0, 'Name': 'adspy', 'fp': 14, 'Precision': 0.17647058823529413, 'Recall': 1.0, 'Accuracy': 0.9027777777777778, 'Threshold': '48', 'tp': 3, 'fn': 0, 'Fscore': 0.3, 'tn': 127}
{'DetectionRate': 144.0, 'Name': 'bds-udr', 'fp': 0, 'Precision': 1.0, 'Recall': 1.0, 'Accuracy': 1.0, 'Threshold': '48', 'tp': 13, 'fn': 0, 'Fscore': 1.0, 'tn': 131}
{'DetectionRate': 144.0, 'Name': 'dial', 'fp': 1, 'Precision': 0.6666666666666666, 'Recall': 1.0, 'Accuracy': 0.9930555555555556, 'Threshold': '48', 'tp': 2, 'fn': 0, 'Fscore': 0.8, 'tn': 141}
{'DetectionRate': 131.06806282722513, 'Name': 'game-dldr-trymedia', 'fp': 0, 'Precision': 1.0, 'Recall': 0.43478260869565216, 'Accuracy': 0.9097222222222222, 'Threshold': '48', 'tp': 10, 'fn': 13, 'Fscore': 0.6060606060606061, 'tn': 121}
{'Accuracy': 0.9930555555555556, 'tp': 2, 'Fscore': 0.8, 'tn': 141, 'fp': 1, 'DetectionRate': 144.0, 'Threshold': '49', 'Precision': 0.6666666666666666, 'Recall': 1.0, 'Name': 'dial', 'fn': 0}
{'Accuracy': 0.9930555555555556, 'tp': 6, 'Fscore': 0.923076923076923, 'tn': 137, 'fp': 0, 'DetectionRate': 143.00523560209425, 'Threshold': '49', 'Precision': 1.0, 'Recall': 0.8571428571428571, 'Name': 'bds-hupigon', 'fn': 1}
{'Accuracy': 0.9513888888888888, 'tp': 1, 'Fscore': 0.2222222222222222, 'tn': 136, 'fp': 2, 'DetectionRate': 139.0261780104712, 'Threshold': '49', 'Precision': 0.3333333333333333, 'Recall': 0.16666666666666666, 'Name': 'tr-dropper-gen', 'fn': 5}
{'Accuracy': 0.9722222222222222, 'tp': 2, 'Fscore': 0.5, 'tn': 138, 'fp': 0, 'DetectionRate': 140.02094240837695, 'Threshold': '49', 'Precision': 1.0, 'Recall': 0.3333333333333333, 'Name': 'tr-drop-', 'fn': 4}
{'Accuracy': 0.9861111111111112, 'tp': 15, 'Fscore': 0.9375, 'tn': 127, 'fp': 2, 'DetectionRate': 144.0, 'Threshold': '49', 'Precision': 0.8823529411764706, 'Recall': 1.0, 'Name': 'tr-dldr-swizzor', 'fn': 0}
{'Accuracy': 1.0, 'tp': 13, 'Fscore': 1.0, 'tn': 131, 'fp': 0, 'DetectionRate': 144.0, 'Threshold': '49', 'Precision': 1.0, 'Recall': 1.0, 'Name': 'bds-udr', 'fn': 0}
{'Accuracy': 0.9097222222222222, 'tp': 10, 'Fscore': 0.6060606060606061, 'tn': 121, 'fp': 0, 'DetectionRate': 131.06806282722513, 'Threshold': '49', 'Precision': 1.0, 'Recall': 0.43478260869565216, 'Name': 'game-dldr-trymedia', 'fn': 13}
{'Accuracy': 0.9722222222222222, 'tp': 15, 'Fscore': 0.8823529411764706, 'tn': 125, 'fp': 4, 'DetectionRate': 144.0, 'Threshold': '49', 'Precision': 0.7894736842105263, 'Recall': 1.0, 'Name': 'game-dldr-fenomen', 'fn': 0}
{'Accuracy': 1.0, 'tp': 2, 'Fscore': 1.0, 'tn': 142, 'fp': 0, 'DetectionRate': 144.0, 'Threshold': '49', 'Precision': 1.0, 'Recall': 1.0, 'Name': 'game-casino', 'fn': 0}
{'Accuracy': 0.9027777777777778, 'tp': 3, 'Fscore': 0.3, 'tn': 127, 'fp': 14, 'DetectionRate': 144.0, 'Threshold': '49', 'Precision': 0.17647058823529413, 'Recall': 1.0, 'Name': 'adspy', 'fn': 0}
{'Accuracy': 0.8958333333333334, 'tp': 14, 'Fscore': 0.6511627906976744, 'tn': 115, 'fp': 13, 'DetectionRate': 142.0104712041885, 'Threshold': '49', 'Precision': 0.5185185185185185, 'Recall': 0.875, 'Name': 'w32-virut', 'fn': 2}
{'Accuracy': 0.8958333333333334, 'tp': 23, 'Fscore': 0.7540983606557377, 'tn': 106, 'fp': 2, 'DetectionRate': 131.06806282722513, 'Threshold': '49', 'Precision': 0.92, 'Recall': 0.6388888888888888, 'Name': 'worm-allaple', 'fn': 13}
{'Precision': 0.3333333333333333, 'fn': 4, 'tn': 136, 'tp': 1, 'DetectionRate': 139.02094240837695, 'Fscore': 0.25, 'fp': 2, 'Threshold': '50', 'Name': 'tr-dropper-gen', 'Recall': 0.2, 'Accuracy': 0.958041958041958}
{'Precision': 0.5185185185185185, 'fn': 2, 'tn': 114, 'tp': 14, 'DetectionRate': 141.0104712041885, 'Fscore': 0.6511627906976744, 'fp': 13, 'Threshold': '50', 'Name': 'w32-virut', 'Recall': 0.875, 'Accuracy': 0.8951048951048951}
{'Precision': 0.9375, 'fn': 0, 'tn': 127, 'tp': 15, 'DetectionRate': 143.0, 'Fscore': 0.967741935483871, 'fp': 1, 'Threshold': '50', 'Name': 'tr-dldr-swizzor', 'Recall': 1.0, 'Accuracy': 0.993006993006993}
{'Precision': 0.17647058823529413, 'fn': 0, 'tn': 126, 'tp': 3, 'DetectionRate': 143.0, 'Fscore': 0.3, 'fp': 14, 'Threshold': '50', 'Name': 'adspy', 'Recall': 1.0, 'Accuracy': 0.9020979020979021}
{'Precision': 0.92, 'fn': 13, 'tn': 105, 'tp': 23, 'DetectionRate': 130.06806282722513, 'Fscore': 0.7540983606557377, 'fp': 2, 'Threshold': '50', 'Name': 'worm-allaple', 'Recall': 0.6388888888888888, 'Accuracy': 0.8951048951048951}
{'Precision': 1.0, 'fn': 1, 'tn': 136, 'tp': 6, 'DetectionRate': 142.00523560209425, 'Fscore': 0.923076923076923, 'fp': 0, 'Threshold': '50', 'Name': 'bds-hupigon', 'Recall': 0.8571428571428571, 'Accuracy': 0.993006993006993}
{'Precision': 1.0, 'fn': 4, 'tn': 137, 'tp': 2, 'DetectionRate': 139.02094240837695, 'Fscore': 0.5, 'fp': 0, 'Threshold': '50', 'Name': 'tr-drop-', 'Recall': 0.3333333333333333, 'Accuracy': 0.972027972027972}
{'Precision': 0.7894736842105263, 'fn': 0, 'tn': 124, 'tp': 15, 'DetectionRate': 143.0, 'Fscore': 0.8823529411764706, 'fp': 4, 'Threshold': '50', 'Name': 'game-dldr-fenomen', 'Recall': 1.0, 'Accuracy': 0.972027972027972}
{'Precision': 1.0, 'fn': 0, 'tn': 130, 'tp': 13, 'DetectionRate': 143.0, 'Fscore': 1.0, 'fp': 0, 'Threshold': '50', 'Name': 'bds-udr', 'Recall': 1.0, 'Accuracy': 1.0}
{'Precision': 1.0, 'fn': 13, 'tn': 120, 'tp': 10, 'DetectionRate': 130.06806282722513, 'Fscore': 0.6060606060606061, 'fp': 0, 'Threshold': '50', 'Name': 'game-dldr-trymedia', 'Recall': 0.43478260869565216, 'Accuracy': 0.9090909090909091}
{'Precision': 1.0, 'fn': 0, 'tn': 141, 'tp': 2, 'DetectionRate': 143.0, 'Fscore': 1.0, 'fp': 0, 'Threshold': '50', 'Name': 'game-casino', 'Recall': 1.0, 'Accuracy': 1.0}
{'Precision': 0.6666666666666666, 'fn': 0, 'tn': 140, 'tp': 2, 'DetectionRate': 143.0, 'Fscore': 0.8, 'fp': 1, 'Threshold': '50', 'Name': 'dial', 'Recall': 1.0, 'Accuracy': 0.993006993006993}
{'Fscore': 1.0, 'Threshold': '51', 'Recall': 1.0, 'fp': 0, 'tn': 140, 'Accuracy': 1.0, 'Name': 'game-casino', 'Precision': 1.0, 'tp': 2, 'fn': 0, 'DetectionRate': 142.0}
{'Fscore': 0.6511627906976744, 'Threshold': '51', 'Recall': 0.875, 'fp': 13, 'tn': 113, 'Accuracy': 0.8943661971830986, 'Name': 'w32-virut', 'Precision': 0.5185185185185185, 'tp': 14, 'fn': 2, 'DetectionRate': 140.0104712041885}
{'Fscore': 0.7540983606557377, 'Threshold': '51', 'Recall': 0.6388888888888888, 'fp': 2, 'tn': 104, 'Accuracy': 0.8943661971830986, 'Name': 'worm-allaple', 'Precision': 0.92, 'tp': 23, 'fn': 13, 'DetectionRate': 129.06806282722513}
{'Fscore': 0.6060606060606061, 'Threshold': '51', 'Recall': 0.43478260869565216, 'fp': 0, 'tn': 119, 'Accuracy': 0.9084507042253521, 'Name': 'game-dldr-trymedia', 'Precision': 1.0, 'tp': 10, 'fn': 13, 'DetectionRate': 129.06806282722513}
{'Fscore': 0.8, 'Threshold': '51', 'Recall': 1.0, 'fp': 1, 'tn': 139, 'Accuracy': 0.9929577464788732, 'Name': 'dial', 'Precision': 0.6666666666666666, 'tp': 2, 'fn': 0, 'DetectionRate': 142.0}
{'Fscore': 0.923076923076923, 'Threshold': '51', 'Recall': 0.8571428571428571, 'fp': 0, 'tn': 135, 'Accuracy': 0.9929577464788732, 'Name': 'bds-hupigon', 'Precision': 1.0, 'tp': 6, 'fn': 1, 'DetectionRate': 141.00523560209425}
{'Fscore': 0.8823529411764706, 'Threshold': '51', 'Recall': 1.0, 'fp': 4, 'tn': 123, 'Accuracy': 0.971830985915493, 'Name': 'game-dldr-fenomen', 'Precision': 0.7894736842105263, 'tp': 15, 'fn': 0, 'DetectionRate': 142.0}
{'Fscore': 0.5, 'Threshold': '51', 'Recall': 0.3333333333333333, 'fp': 0, 'tn': 136, 'Accuracy': 0.971830985915493, 'Name': 'tr-drop-', 'Precision': 1.0, 'tp': 2, 'fn': 4, 'DetectionRate': 138.02094240837695}
{'Fscore': 1.0, 'Threshold': '51', 'Recall': 1.0, 'fp': 0, 'tn': 129, 'Accuracy': 1.0, 'Name': 'bds-udr', 'Precision': 1.0, 'tp': 13, 'fn': 0, 'DetectionRate': 142.0}
{'Fscore': 0.3, 'Threshold': '51', 'Recall': 1.0, 'fp': 14, 'tn': 125, 'Accuracy': 0.9014084507042254, 'Name': 'adspy', 'Precision': 0.17647058823529413, 'tp': 3, 'fn': 0, 'DetectionRate': 142.0}
{'Fscore': 1.0, 'Threshold': '51', 'Recall': 1.0, 'fp': 0, 'tn': 127, 'Accuracy': 1.0, 'Name': 'tr-dldr-swizzor', 'Precision': 1.0, 'tp': 15, 'fn': 0, 'DetectionRate': 142.0}
{'Fscore': 0.28571428571428575, 'Threshold': '51', 'Recall': 0.25, 'fp': 2, 'tn': 136, 'Accuracy': 0.9647887323943662, 'Name': 'tr-dropper-gen', 'Precision': 0.3333333333333333, 'tp': 1, 'fn': 3, 'DetectionRate': 139.01570680628274}
{'fp': 14, 'Accuracy': 0.900709219858156, 'Name': 'adspy', 'Recall': 1.0, 'Threshold': '52', 'DetectionRate': 141.0, 'tp': 3, 'Fscore': 0.3, 'Precision': 0.17647058823529413, 'fn': 0, 'tn': 124}
{'fp': 1, 'Accuracy': 0.9929078014184397, 'Name': 'dial', 'Recall': 1.0, 'Threshold': '52', 'DetectionRate': 141.0, 'tp': 2, 'Fscore': 0.8, 'Precision': 0.6666666666666666, 'fn': 0, 'tn': 138}
{'fp': 0, 'Accuracy': 0.9929078014184397, 'Name': 'bds-hupigon', 'Recall': 0.8571428571428571, 'Threshold': '52', 'DetectionRate': 140.00523560209425, 'tp': 6, 'Fscore': 0.923076923076923, 'Precision': 1.0, 'fn': 1, 'tn': 134}
{'fp': 2, 'Accuracy': 0.8936170212765957, 'Name': 'worm-allaple', 'Recall': 0.6388888888888888, 'Threshold': '52', 'DetectionRate': 128.06806282722513, 'tp': 23, 'Fscore': 0.7540983606557377, 'Precision': 0.92, 'fn': 13, 'tn': 103}
{'fp': 13, 'Accuracy': 0.8936170212765957, 'Name': 'w32-virut', 'Recall': 0.8666666666666667, 'Threshold': '52', 'DetectionRate': 139.0104712041885, 'tp': 13, 'Fscore': 0.6341463414634146, 'Precision': 0.5, 'fn': 2, 'tn': 113}
{'fp': 0, 'Accuracy': 1.0, 'Name': 'bds-udr', 'Recall': 1.0, 'Threshold': '52', 'DetectionRate': 141.0, 'tp': 13, 'Fscore': 1.0, 'Precision': 1.0, 'fn': 0, 'tn': 128}
{'fp': 2, 'Accuracy': 0.9645390070921985, 'Name': 'tr-dropper-gen', 'Recall': 0.25, 'Threshold': '52', 'DetectionRate': 138.01570680628274, 'tp': 1, 'Fscore': 0.28571428571428575, 'Precision': 0.3333333333333333, 'fn': 3, 'tn': 135}
{'fp': 0, 'Accuracy': 0.9716312056737588, 'Name': 'tr-drop-', 'Recall': 0.3333333333333333, 'Threshold': '52', 'DetectionRate': 137.02094240837695, 'tp': 2, 'Fscore': 0.5, 'Precision': 1.0, 'fn': 4, 'tn': 135}
{'fp': 0, 'Accuracy': 0.9078014184397163, 'Name': 'game-dldr-trymedia', 'Recall': 0.43478260869565216, 'Threshold': '52', 'DetectionRate': 128.06806282722513, 'tp': 10, 'Fscore': 0.6060606060606061, 'Precision': 1.0, 'fn': 13, 'tn': 118}
{'fp': 0, 'Accuracy': 1.0, 'Name': 'tr-dldr-swizzor', 'Recall': 1.0, 'Threshold': '52', 'DetectionRate': 141.0, 'tp': 15, 'Fscore': 1.0, 'Precision': 1.0, 'fn': 0, 'tn': 126}
{'fp': 4, 'Accuracy': 0.9716312056737588, 'Name': 'game-dldr-fenomen', 'Recall': 1.0, 'Threshold': '52', 'DetectionRate': 141.0, 'tp': 15, 'Fscore': 0.8823529411764706, 'Precision': 0.7894736842105263, 'fn': 0, 'tn': 122}
{'fp': 0, 'Accuracy': 1.0, 'Name': 'game-casino', 'Recall': 1.0, 'Threshold': '52', 'DetectionRate': 141.0, 'tp': 2, 'Fscore': 1.0, 'Precision': 1.0, 'fn': 0, 'tn': 139}
{'Recall': 1.0, 'tn': 120, 'Name': 'adspy', 'DetectionRate': 137.0, 'fn': 0, 'tp': 3, 'Threshold': '53', 'Precision': 0.17647058823529413, 'fp': 14, 'Fscore': 0.3, 'Accuracy': 0.8978102189781022}
{'Recall': 1.0, 'tn': 124, 'Name': 'bds-udr', 'DetectionRate': 137.0, 'fn': 0, 'tp': 13, 'Threshold': '53', 'Precision': 1.0, 'fp': 0, 'Fscore': 1.0, 'Accuracy': 1.0}
{'Recall': 0.9285714285714286, 'tn': 110, 'Name': 'w32-virut', 'DetectionRate': 136.00523560209425, 'fn': 1, 'tp': 13, 'Threshold': '53', 'Precision': 0.5, 'fp': 13, 'Fscore': 0.65, 'Accuracy': 0.8978102189781022}
{'Recall': 0.4, 'tn': 132, 'Name': 'tr-drop-', 'DetectionRate': 134.01570680628274, 'fn': 3, 'tp': 2, 'Threshold': '53', 'Precision': 1.0, 'fp': 0, 'Fscore': 0.5714285714285715, 'Accuracy': 0.9781021897810219}
{'Recall': 1.0, 'tn': 123, 'Name': 'tr-dldr-swizzor', 'DetectionRate': 137.0, 'fn': 0, 'tp': 14, 'Threshold': '53', 'Precision': 1.0, 'fp': 0, 'Fscore': 1.0, 'Accuracy': 1.0}
{'Recall': 1.0, 'tn': 134, 'Name': 'dial', 'DetectionRate': 137.0, 'fn': 0, 'tp': 2, 'Threshold': '53', 'Precision': 0.6666666666666666, 'fp': 1, 'Fscore': 0.8, 'Accuracy': 0.9927007299270073}
{'Recall': 0.8571428571428571, 'tn': 130, 'Name': 'bds-hupigon', 'DetectionRate': 136.00523560209425, 'fn': 1, 'tp': 6, 'Threshold': '53', 'Precision': 1.0, 'fp': 0, 'Fscore': 0.923076923076923, 'Accuracy': 0.9927007299270073}
{'Recall': 0.25, 'tn': 132, 'Name': 'tr-dropper-gen', 'DetectionRate': 134.01570680628274, 'fn': 3, 'tp': 1, 'Threshold': '53', 'Precision': 0.5, 'fp': 1, 'Fscore': 0.3333333333333333, 'Accuracy': 0.9708029197080292}
{'Recall': 1.0, 'tn': 135, 'Name': 'game-casino', 'DetectionRate': 137.0, 'fn': 0, 'tp': 2, 'Threshold': '53', 'Precision': 1.0, 'fp': 0, 'Fscore': 1.0, 'Accuracy': 1.0}
{'Recall': 0.6285714285714286, 'tn': 101, 'Name': 'worm-allaple', 'DetectionRate': 124.06806282722513, 'fn': 13, 'tp': 22, 'Threshold': '53', 'Precision': 0.9565217391304348, 'fp': 1, 'Fscore': 0.7586206896551724, 'Accuracy': 0.8978102189781022}
{'Recall': 0.43478260869565216, 'tn': 114, 'Name': 'game-dldr-trymedia', 'DetectionRate': 124.06806282722513, 'fn': 13, 'tp': 10, 'Threshold': '53', 'Precision': 1.0, 'fp': 0, 'Fscore': 0.6060606060606061, 'Accuracy': 0.9051094890510949}
{'Recall': 1.0, 'tn': 118, 'Name': 'game-dldr-fenomen', 'DetectionRate': 137.0, 'fn': 0, 'tp': 15, 'Threshold': '53', 'Precision': 0.7894736842105263, 'fp': 4, 'Fscore': 0.8823529411764706, 'Accuracy': 0.9708029197080292}
{'Threshold': '54', 'fp': 1, 'Recall': 0.6285714285714286, 'DetectionRate': 124.06806282722513, 'tn': 101, 'Precision': 0.9565217391304348, 'Accuracy': 0.8978102189781022, 'Name': 'worm-allaple', 'Fscore': 0.7586206896551724, 'fn': 13, 'tp': 22}
{'Threshold': '54', 'fp': 1, 'Recall': 1.0, 'DetectionRate': 137.0, 'tn': 134, 'Precision': 0.6666666666666666, 'Accuracy': 0.9927007299270073, 'Name': 'dial', 'Fscore': 0.8, 'fn': 0, 'tp': 2}
{'Threshold': '54', 'fp': 0, 'Recall': 1.0, 'DetectionRate': 137.0, 'tn': 135, 'Precision': 1.0, 'Accuracy': 1.0, 'Name': 'game-casino', 'Fscore': 1.0, 'fn': 0, 'tp': 2}
{'Threshold': '54', 'fp': 13, 'Recall': 0.9285714285714286, 'DetectionRate': 136.00523560209425, 'tn': 110, 'Precision': 0.5, 'Accuracy': 0.8978102189781022, 'Name': 'w32-virut', 'Fscore': 0.65, 'fn': 1, 'tp': 13}
{'Threshold': '54', 'fp': 0, 'Recall': 1.0, 'DetectionRate': 137.0, 'tn': 123, 'Precision': 1.0, 'Accuracy': 1.0, 'Name': 'tr-dldr-swizzor', 'Fscore': 1.0, 'fn': 0, 'tp': 14}
{'Threshold': '54', 'fp': 0, 'Recall': 0.43478260869565216, 'DetectionRate': 124.06806282722513, 'tn': 114, 'Precision': 1.0, 'Accuracy': 0.9051094890510949, 'Name': 'game-dldr-trymedia', 'Fscore': 0.6060606060606061, 'fn': 13, 'tp': 10}
{'Threshold': '54', 'fp': 0, 'Recall': 0.4, 'DetectionRate': 134.01570680628274, 'tn': 132, 'Precision': 1.0, 'Accuracy': 0.9781021897810219, 'Name': 'tr-drop-', 'Fscore': 0.5714285714285715, 'fn': 3, 'tp': 2}
{'Threshold': '54', 'fp': 0, 'Recall': 1.0, 'DetectionRate': 137.0, 'tn': 124, 'Precision': 1.0, 'Accuracy': 1.0, 'Name': 'bds-udr', 'Fscore': 1.0, 'fn': 0, 'tp': 13}
{'Threshold': '54', 'fp': 0, 'Recall': 0.8571428571428571, 'DetectionRate': 136.00523560209425, 'tn': 130, 'Precision': 1.0, 'Accuracy': 0.9927007299270073, 'Name': 'bds-hupigon', 'Fscore': 0.923076923076923, 'fn': 1, 'tp': 6}
{'Threshold': '54', 'fp': 1, 'Recall': 0.25, 'DetectionRate': 134.01570680628274, 'tn': 132, 'Precision': 0.5, 'Accuracy': 0.9708029197080292, 'Name': 'tr-dropper-gen', 'Fscore': 0.3333333333333333, 'fn': 3, 'tp': 1}
{'Threshold': '54', 'fp': 4, 'Recall': 1.0, 'DetectionRate': 137.0, 'tn': 118, 'Precision': 0.7894736842105263, 'Accuracy': 0.9708029197080292, 'Name': 'game-dldr-fenomen', 'Fscore': 0.8823529411764706, 'fn': 0, 'tp': 15}
{'Threshold': '54', 'fp': 14, 'Recall': 1.0, 'DetectionRate': 137.0, 'tn': 120, 'Precision': 0.17647058823529413, 'Accuracy': 0.8978102189781022, 'Name': 'adspy', 'Fscore': 0.3, 'fn': 0, 'tp': 3}
{'DetectionRate': 136.0, 'Precision': 0.6666666666666666, 'Recall': 1.0, 'fp': 1, 'Name': 'dial', 'Threshold': '55', 'tp': 2, 'fn': 0, 'Accuracy': 0.9926470588235294, 'tn': 133, 'Fscore': 0.8}
{'DetectionRate': 136.0, 'Precision': 0.7894736842105263, 'Recall': 1.0, 'fp': 4, 'Name': 'game-dldr-fenomen', 'Threshold': '55', 'tp': 15, 'fn': 0, 'Accuracy': 0.9705882352941176, 'tn': 117, 'Fscore': 0.8823529411764706}
{'DetectionRate': 136.0, 'Precision': 0.1875, 'Recall': 1.0, 'fp': 13, 'Name': 'adspy', 'Threshold': '55', 'tp': 3, 'fn': 0, 'Accuracy': 0.9044117647058824, 'tn': 120, 'Fscore': 0.3157894736842105}
{'DetectionRate': 136.0, 'Precision': 1.0, 'Recall': 1.0, 'fp': 0, 'Name': 'bds-udr', 'Threshold': '55', 'tp': 13, 'fn': 0, 'Accuracy': 1.0, 'tn': 123, 'Fscore': 1.0}
{'DetectionRate': 123.06806282722513, 'Precision': 0.9565217391304348, 'Recall': 0.6285714285714286, 'fp': 1, 'Name': 'worm-allaple', 'Threshold': '55', 'tp': 22, 'fn': 13, 'Accuracy': 0.8970588235294118, 'tn': 100, 'Fscore': 0.7586206896551724}
{'DetectionRate': 134.0104712041885, 'Precision': 0.5, 'Recall': 0.3333333333333333, 'fp': 1, 'Name': 'tr-dropper-gen', 'Threshold': '55', 'tp': 1, 'fn': 2, 'Accuracy': 0.9779411764705882, 'tn': 132, 'Fscore': 0.4}
{'DetectionRate': 123.06806282722513, 'Precision': 1.0, 'Recall': 0.43478260869565216, 'fp': 0, 'Name': 'game-dldr-trymedia', 'Threshold': '55', 'tp': 10, 'fn': 13, 'Accuracy': 0.9044117647058824, 'tn': 113, 'Fscore': 0.6060606060606061}
{'DetectionRate': 133.01570680628274, 'Precision': 1.0, 'Recall': 0.4, 'fp': 0, 'Name': 'tr-drop-', 'Threshold': '55', 'tp': 2, 'fn': 3, 'Accuracy': 0.9779411764705882, 'tn': 131, 'Fscore': 0.5714285714285715}
{'DetectionRate': 135.00523560209425, 'Precision': 1.0, 'Recall': 0.8571428571428571, 'fp': 0, 'Name': 'bds-hupigon', 'Threshold': '55', 'tp': 6, 'fn': 1, 'Accuracy': 0.9926470588235294, 'tn': 129, 'Fscore': 0.923076923076923}
{'DetectionRate': 136.0, 'Precision': 1.0, 'Recall': 1.0, 'fp': 0, 'Name': 'game-casino', 'Threshold': '55', 'tp': 2, 'fn': 0, 'Accuracy': 1.0, 'tn': 134, 'Fscore': 1.0}
{'DetectionRate': 135.00523560209425, 'Precision': 0.5, 'Recall': 0.9285714285714286, 'fp': 13, 'Name': 'w32-virut', 'Threshold': '55', 'tp': 13, 'fn': 1, 'Accuracy': 0.8970588235294118, 'tn': 109, 'Fscore': 0.65}
{'DetectionRate': 136.0, 'Precision': 1.0, 'Recall': 1.0, 'fp': 0, 'Name': 'tr-dldr-swizzor', 'Threshold': '55', 'tp': 14, 'fn': 0, 'Accuracy': 1.0, 'tn': 122, 'Fscore': 1.0}
{'Threshold': '56', 'tn': 129, 'fn': 1, 'Recall': 0.8571428571428571, 'DetectionRate': 135.00523560209425, 'Precision': 1.0, 'tp': 6, 'Fscore': 0.923076923076923, 'Name': 'bds-hupigon', 'fp': 0, 'Accuracy': 0.9926470588235294}
{'Threshold': '56', 'tn': 131, 'fn': 3, 'Recall': 0.4, 'DetectionRate': 133.01570680628274, 'Precision': 1.0, 'tp': 2, 'Fscore': 0.5714285714285715, 'Name': 'tr-drop-', 'fp': 0, 'Accuracy': 0.9779411764705882}
{'Threshold': '56', 'tn': 134, 'fn': 0, 'Recall': 1.0, 'DetectionRate': 136.0, 'Precision': 1.0, 'tp': 2, 'Fscore': 1.0, 'Name': 'game-casino', 'fp': 0, 'Accuracy': 1.0}
{'Threshold': '56', 'tn': 100, 'fn': 13, 'Recall': 0.6285714285714286, 'DetectionRate': 123.06806282722513, 'Precision': 0.9565217391304348, 'tp': 22, 'Fscore': 0.7586206896551724, 'Name': 'worm-allaple', 'fp': 1, 'Accuracy': 0.8970588235294118}
{'Threshold': '56', 'tn': 132, 'fn': 2, 'Recall': 0.3333333333333333, 'DetectionRate': 134.0104712041885, 'Precision': 0.5, 'tp': 1, 'Fscore': 0.4, 'Name': 'tr-dropper-gen', 'fp': 1, 'Accuracy': 0.9779411764705882}
{'Threshold': '56', 'tn': 109, 'fn': 1, 'Recall': 0.9285714285714286, 'DetectionRate': 135.00523560209425, 'Precision': 0.5, 'tp': 13, 'Fscore': 0.65, 'Name': 'w32-virut', 'fp': 13, 'Accuracy': 0.8970588235294118}
{'Threshold': '56', 'tn': 123, 'fn': 0, 'Recall': 1.0, 'DetectionRate': 136.0, 'Precision': 1.0, 'tp': 13, 'Fscore': 1.0, 'Name': 'bds-udr', 'fp': 0, 'Accuracy': 1.0}
{'Threshold': '56', 'tn': 113, 'fn': 13, 'Recall': 0.43478260869565216, 'DetectionRate': 123.06806282722513, 'Precision': 1.0, 'tp': 10, 'Fscore': 0.6060606060606061, 'Name': 'game-dldr-trymedia', 'fp': 0, 'Accuracy': 0.9044117647058824}
{'Threshold': '56', 'tn': 120, 'fn': 0, 'Recall': 1.0, 'DetectionRate': 136.0, 'Precision': 0.1875, 'tp': 3, 'Fscore': 0.3157894736842105, 'Name': 'adspy', 'fp': 13, 'Accuracy': 0.9044117647058824}
{'Threshold': '56', 'tn': 122, 'fn': 0, 'Recall': 1.0, 'DetectionRate': 136.0, 'Precision': 1.0, 'tp': 14, 'Fscore': 1.0, 'Name': 'tr-dldr-swizzor', 'fp': 0, 'Accuracy': 1.0}
{'Threshold': '56', 'tn': 133, 'fn': 0, 'Recall': 1.0, 'DetectionRate': 136.0, 'Precision': 0.6666666666666666, 'tp': 2, 'Fscore': 0.8, 'Name': 'dial', 'fp': 1, 'Accuracy': 0.9926470588235294}
{'Threshold': '56', 'tn': 117, 'fn': 0, 'Recall': 1.0, 'DetectionRate': 136.0, 'Precision': 0.7894736842105263, 'tp': 15, 'Fscore': 0.8823529411764706, 'Name': 'game-dldr-fenomen', 'fp': 4, 'Accuracy': 0.9705882352941176}
{'DetectionRate': 133.0104712041885, 'Name': 'tr-dropper-gen', 'tp': 1, 'tn': 131, 'Recall': 0.3333333333333333, 'fp': 1, 'Precision': 0.5, 'fn': 2, 'Fscore': 0.4, 'Threshold': '57', 'Accuracy': 0.9777777777777777}
{'DetectionRate': 135.0, 'Name': 'dial', 'tp': 2, 'tn': 133, 'Recall': 1.0, 'fp': 0, 'Precision': 1.0, 'fn': 0, 'Fscore': 1.0, 'Threshold': '57', 'Accuracy': 1.0}
{'DetectionRate': 134.00523560209425, 'Name': 'w32-virut', 'tp': 13, 'tn': 108, 'Recall': 0.9285714285714286, 'fp': 13, 'Precision': 0.5, 'fn': 1, 'Fscore': 0.65, 'Threshold': '57', 'Accuracy': 0.8962962962962963}
{'DetectionRate': 135.0, 'Name': 'tr-dldr-swizzor', 'tp': 14, 'tn': 121, 'Recall': 1.0, 'fp': 0, 'Precision': 1.0, 'fn': 0, 'Fscore': 1.0, 'Threshold': '57', 'Accuracy': 1.0}
{'DetectionRate': 133.0104712041885, 'Name': 'tr-drop-', 'tp': 2, 'tn': 131, 'Recall': 0.5, 'fp': 0, 'Precision': 1.0, 'fn': 2, 'Fscore': 0.6666666666666666, 'Threshold': '57', 'Accuracy': 0.9851851851851852}
{'DetectionRate': 135.0, 'Name': 'game-casino', 'tp': 2, 'tn': 133, 'Recall': 1.0, 'fp': 0, 'Precision': 1.0, 'fn': 0, 'Fscore': 1.0, 'Threshold': '57', 'Accuracy': 1.0}
{'DetectionRate': 135.0, 'Name': 'adspy', 'tp': 3, 'tn': 119, 'Recall': 1.0, 'fp': 13, 'Precision': 0.1875, 'fn': 0, 'Fscore': 0.3157894736842105, 'Threshold': '57', 'Accuracy': 0.9037037037037037}
{'DetectionRate': 135.0, 'Name': 'game-dldr-fenomen', 'tp': 15, 'tn': 116, 'Recall': 1.0, 'fp': 4, 'Precision': 0.7894736842105263, 'fn': 0, 'Fscore': 0.8823529411764706, 'Threshold': '57', 'Accuracy': 0.9703703703703703}
{'DetectionRate': 122.06806282722513, 'Name': 'worm-allaple', 'tp': 22, 'tn': 99, 'Recall': 0.6285714285714286, 'fp': 1, 'Precision': 0.9565217391304348, 'fn': 13, 'Fscore': 0.7586206896551724, 'Threshold': '57', 'Accuracy': 0.8962962962962963}
{'DetectionRate': 135.0, 'Name': 'bds-udr', 'tp': 13, 'tn': 122, 'Recall': 1.0, 'fp': 0, 'Precision': 1.0, 'fn': 0, 'Fscore': 1.0, 'Threshold': '57', 'Accuracy': 1.0}
{'DetectionRate': 134.00523560209425, 'Name': 'bds-hupigon', 'tp': 6, 'tn': 128, 'Recall': 0.8571428571428571, 'fp': 0, 'Precision': 1.0, 'fn': 1, 'Fscore': 0.923076923076923, 'Threshold': '57', 'Accuracy': 0.9925925925925926}
{'DetectionRate': 122.06806282722513, 'Name': 'game-dldr-trymedia', 'tp': 10, 'tn': 112, 'Recall': 0.43478260869565216, 'fp': 0, 'Precision': 1.0, 'fn': 13, 'Fscore': 0.6060606060606061, 'Threshold': '57', 'Accuracy': 0.9037037037037037}
{'Fscore': 0.9090909090909091, 'fn': 1, 'tn': 126, 'Name': 'bds-hupigon', 'Recall': 0.8333333333333334, 'tp': 5, 'Threshold': '58', 'Precision': 1.0, 'Accuracy': 0.9924242424242424, 'fp': 0, 'DetectionRate': 131.00523560209425}
{'Fscore': 1.0, 'fn': 0, 'tn': 130, 'Name': 'game-casino', 'Recall': 1.0, 'tp': 2, 'Threshold': '58', 'Precision': 1.0, 'Accuracy': 1.0, 'fp': 0, 'DetectionRate': 132.0}
{'Fscore': 0.6666666666666666, 'fn': 2, 'tn': 128, 'Name': 'tr-drop-', 'Recall': 0.5, 'tp': 2, 'Threshold': '58', 'Precision': 1.0, 'Accuracy': 0.9848484848484849, 'fp': 0, 'DetectionRate': 130.0104712041885}
{'Fscore': 0.75, 'fn': 13, 'tn': 97, 'Name': 'worm-allaple', 'Recall': 0.6176470588235294, 'tp': 21, 'Threshold': '58', 'Precision': 0.9545454545454546, 'Accuracy': 0.8939393939393939, 'fp': 1, 'DetectionRate': 119.06806282722513}
{'Fscore': 0.631578947368421, 'fn': 1, 'tn': 106, 'Name': 'w32-virut', 'Recall': 0.9230769230769231, 'tp': 12, 'Threshold': '58', 'Precision': 0.48, 'Accuracy': 0.8939393939393939, 'fp': 13, 'DetectionRate': 131.00523560209425}
{'Fscore': 1.0, 'fn': 0, 'tn': 119, 'Name': 'bds-udr', 'Recall': 1.0, 'tp': 13, 'Threshold': '58', 'Precision': 1.0, 'Accuracy': 1.0, 'fp': 0, 'DetectionRate': 132.0}
{'Fscore': 1.0, 'fn': 0, 'tn': 130, 'Name': 'dial', 'Recall': 1.0, 'tp': 2, 'Threshold': '58', 'Precision': 1.0, 'Accuracy': 1.0, 'fp': 0, 'DetectionRate': 132.0}
{'Fscore': 1.0, 'fn': 0, 'tn': 118, 'Name': 'tr-dldr-swizzor', 'Recall': 1.0, 'tp': 14, 'Threshold': '58', 'Precision': 1.0, 'Accuracy': 1.0, 'fp': 0, 'DetectionRate': 132.0}
{'Fscore': 0.8823529411764706, 'fn': 0, 'tn': 113, 'Name': 'game-dldr-fenomen', 'Recall': 1.0, 'tp': 15, 'Threshold': '58', 'Precision': 0.7894736842105263, 'Accuracy': 0.9696969696969697, 'fp': 4, 'DetectionRate': 132.0}
{'Fscore': 0.3157894736842105, 'fn': 0, 'tn': 116, 'Name': 'adspy', 'Recall': 1.0, 'tp': 3, 'Threshold': '58', 'Precision': 0.1875, 'Accuracy': 0.9015151515151515, 'fp': 13, 'DetectionRate': 132.0}
{'Fscore': 0.6060606060606061, 'fn': 13, 'tn': 109, 'Name': 'game-dldr-trymedia', 'Recall': 0.43478260869565216, 'tp': 10, 'Threshold': '58', 'Precision': 1.0, 'Accuracy': 0.9015151515151515, 'fp': 0, 'DetectionRate': 119.06806282722513}
{'Fscore': 0.4, 'fn': 2, 'tn': 128, 'Name': 'tr-dropper-gen', 'Recall': 0.3333333333333333, 'tp': 1, 'Threshold': '58', 'Precision': 0.5, 'Accuracy': 0.9772727272727273, 'fp': 1, 'DetectionRate': 130.0104712041885}
{'Name': 'tr-dropper-gen', 'fn': 2, 'Threshold': '59', 'tp': 1, 'Accuracy': 0.9772727272727273, 'Recall': 0.3333333333333333, 'Fscore': 0.4, 'DetectionRate': 130.0104712041885, 'fp': 1, 'Precision': 0.5, 'tn': 128}
{'Name': 'worm-allaple', 'fn': 13, 'Threshold': '59', 'tp': 21, 'Accuracy': 0.8939393939393939, 'Recall': 0.6176470588235294, 'Fscore': 0.75, 'DetectionRate': 119.06806282722513, 'fp': 1, 'Precision': 0.9545454545454546, 'tn': 97}
{'Name': 'adspy', 'fn': 0, 'Threshold': '59', 'tp': 3, 'Accuracy': 0.9015151515151515, 'Recall': 1.0, 'Fscore': 0.3157894736842105, 'DetectionRate': 132.0, 'fp': 13, 'Precision': 0.1875, 'tn': 116}
{'Name': 'game-dldr-trymedia', 'fn': 13, 'Threshold': '59', 'tp': 10, 'Accuracy': 0.9015151515151515, 'Recall': 0.43478260869565216, 'Fscore': 0.6060606060606061, 'DetectionRate': 119.06806282722513, 'fp': 0, 'Precision': 1.0, 'tn': 109}
{'Name': 'tr-drop-', 'fn': 2, 'Threshold': '59', 'tp': 2, 'Accuracy': 0.9848484848484849, 'Recall': 0.5, 'Fscore': 0.6666666666666666, 'DetectionRate': 130.0104712041885, 'fp': 0, 'Precision': 1.0, 'tn': 128}
{'Name': 'bds-udr', 'fn': 0, 'Threshold': '59', 'tp': 13, 'Accuracy': 1.0, 'Recall': 1.0, 'Fscore': 1.0, 'DetectionRate': 132.0, 'fp': 0, 'Precision': 1.0, 'tn': 119}
{'Name': 'bds-hupigon', 'fn': 1, 'Threshold': '59', 'tp': 5, 'Accuracy': 0.9924242424242424, 'Recall': 0.8333333333333334, 'Fscore': 0.9090909090909091, 'DetectionRate': 131.00523560209425, 'fp': 0, 'Precision': 1.0, 'tn': 126}
{'Name': 'game-dldr-fenomen', 'fn': 0, 'Threshold': '59', 'tp': 15, 'Accuracy': 0.9696969696969697, 'Recall': 1.0, 'Fscore': 0.8823529411764706, 'DetectionRate': 132.0, 'fp': 4, 'Precision': 0.7894736842105263, 'tn': 113}
{'Name': 'w32-virut', 'fn': 1, 'Threshold': '59', 'tp': 12, 'Accuracy': 0.8939393939393939, 'Recall': 0.9230769230769231, 'Fscore': 0.631578947368421, 'DetectionRate': 131.00523560209425, 'fp': 13, 'Precision': 0.48, 'tn': 106}
{'Name': 'tr-dldr-swizzor', 'fn': 0, 'Threshold': '59', 'tp': 14, 'Accuracy': 1.0, 'Recall': 1.0, 'Fscore': 1.0, 'DetectionRate': 132.0, 'fp': 0, 'Precision': 1.0, 'tn': 118}
{'Name': 'game-casino', 'fn': 0, 'Threshold': '59', 'tp': 2, 'Accuracy': 1.0, 'Recall': 1.0, 'Fscore': 1.0, 'DetectionRate': 132.0, 'fp': 0, 'Precision': 1.0, 'tn': 130}
{'Name': 'dial', 'fn': 0, 'Threshold': '59', 'tp': 2, 'Accuracy': 1.0, 'Recall': 1.0, 'Fscore': 1.0, 'DetectionRate': 132.0, 'fp': 0, 'Precision': 1.0, 'tn': 130}
{'Name': 'dial', 'tp': 2, 'Recall': 1.0, 'Threshold': '60', 'fp': 0, 'tn': 129, 'fn': 0, 'Accuracy': 1.0, 'Fscore': 1.0, 'Precision': 1.0, 'DetectionRate': 131.0}
{'Name': 'worm-allaple', 'tp': 21, 'Recall': 0.6176470588235294, 'Threshold': '60', 'fp': 1, 'tn': 96, 'fn': 13, 'Accuracy': 0.8931297709923665, 'Fscore': 0.75, 'Precision': 0.9545454545454546, 'DetectionRate': 118.06806282722513}
{'Name': 'tr-drop-', 'tp': 2, 'Recall': 0.5, 'Threshold': '60', 'fp': 0, 'tn': 127, 'fn': 2, 'Accuracy': 0.9847328244274809, 'Fscore': 0.6666666666666666, 'Precision': 1.0, 'DetectionRate': 129.0104712041885}
{'Name': 'adspy', 'tp': 3, 'Recall': 1.0, 'Threshold': '60', 'fp': 13, 'tn': 115, 'fn': 0, 'Accuracy': 0.9007633587786259, 'Fscore': 0.3157894736842105, 'Precision': 0.1875, 'DetectionRate': 131.0}
{'Name': 'game-dldr-fenomen', 'tp': 15, 'Recall': 1.0, 'Threshold': '60', 'fp': 4, 'tn': 112, 'fn': 0, 'Accuracy': 0.9694656488549618, 'Fscore': 0.8823529411764706, 'Precision': 0.7894736842105263, 'DetectionRate': 131.0}
{'Name': 'tr-dropper-gen', 'tp': 1, 'Recall': 0.3333333333333333, 'Threshold': '60', 'fp': 0, 'tn': 128, 'fn': 2, 'Accuracy': 0.9847328244274809, 'Fscore': 0.5, 'Precision': 1.0, 'DetectionRate': 129.0104712041885}
{'Name': 'game-dldr-trymedia', 'tp': 10, 'Recall': 0.43478260869565216, 'Threshold': '60', 'fp': 0, 'tn': 108, 'fn': 13, 'Accuracy': 0.9007633587786259, 'Fscore': 0.6060606060606061, 'Precision': 1.0, 'DetectionRate': 118.06806282722513}
{'Name': 'w32-virut', 'tp': 12, 'Recall': 0.9230769230769231, 'Threshold': '60', 'fp': 13, 'tn': 105, 'fn': 1, 'Accuracy': 0.8931297709923665, 'Fscore': 0.631578947368421, 'Precision': 0.48, 'DetectionRate': 130.00523560209425}
{'Name': 'bds-udr', 'tp': 13, 'Recall': 1.0, 'Threshold': '60', 'fp': 0, 'tn': 118, 'fn': 0, 'Accuracy': 1.0, 'Fscore': 1.0, 'Precision': 1.0, 'DetectionRate': 131.0}
{'Name': 'game-casino', 'tp': 2, 'Recall': 1.0, 'Threshold': '60', 'fp': 0, 'tn': 129, 'fn': 0, 'Accuracy': 1.0, 'Fscore': 1.0, 'Precision': 1.0, 'DetectionRate': 131.0}
{'Name': 'tr-dldr-swizzor', 'tp': 14, 'Recall': 1.0, 'Threshold': '60', 'fp': 0, 'tn': 117, 'fn': 0, 'Accuracy': 1.0, 'Fscore': 1.0, 'Precision': 1.0, 'DetectionRate': 131.0}
{'Name': 'bds-hupigon', 'tp': 5, 'Recall': 1.0, 'Threshold': '60', 'fp': 0, 'tn': 126, 'fn': 0, 'Accuracy': 1.0, 'Fscore': 1.0, 'Precision': 1.0, 'DetectionRate': 131.0}
{'Threshold': '61', 'Fscore': 1.0, 'Precision': 1.0, 'Name': 'bds-udr', 'Recall': 1.0, 'fn': 0, 'DetectionRate': 130.0, 'tn': 117, 'Accuracy': 1.0, 'tp': 13, 'fp': 0}
{'Threshold': '61', 'Fscore': 1.0, 'Precision': 1.0, 'Name': 'tr-dldr-swizzor', 'Recall': 1.0, 'fn': 0, 'DetectionRate': 130.0, 'tn': 117, 'Accuracy': 1.0, 'tp': 13, 'fp': 0}
{'Threshold': '61', 'Fscore': 1.0, 'Precision': 1.0, 'Name': 'game-casino', 'Recall': 1.0, 'fn': 0, 'DetectionRate': 130.0, 'tn': 128, 'Accuracy': 1.0, 'tp': 2, 'fp': 0}
{'Threshold': '61', 'Fscore': 0.5, 'Precision': 1.0, 'Name': 'tr-dropper-gen', 'Recall': 0.3333333333333333, 'fn': 2, 'DetectionRate': 128.0104712041885, 'tn': 127, 'Accuracy': 0.9846153846153847, 'tp': 1, 'fp': 0}
{'Threshold': '61', 'Fscore': 0.75, 'Precision': 0.9545454545454546, 'Name': 'worm-allaple', 'Recall': 0.6176470588235294, 'fn': 13, 'DetectionRate': 117.06806282722513, 'tn': 95, 'Accuracy': 0.8923076923076924, 'tp': 21, 'fp': 1}
{'Threshold': '61', 'Fscore': 1.0, 'Precision': 1.0, 'Name': 'dial', 'Recall': 1.0, 'fn': 0, 'DetectionRate': 130.0, 'tn': 128, 'Accuracy': 1.0, 'tp': 2, 'fp': 0}
{'Threshold': '61', 'Fscore': 0.6666666666666666, 'Precision': 1.0, 'Name': 'tr-drop-', 'Recall': 0.5, 'fn': 2, 'DetectionRate': 128.0104712041885, 'tn': 126, 'Accuracy': 0.9846153846153847, 'tp': 2, 'fp': 0}
{'Threshold': '61', 'Fscore': 0.8823529411764706, 'Precision': 0.7894736842105263, 'Name': 'game-dldr-fenomen', 'Recall': 1.0, 'fn': 0, 'DetectionRate': 130.0, 'tn': 111, 'Accuracy': 0.9692307692307692, 'tp': 15, 'fp': 4}
{'Threshold': '61', 'Fscore': 0.631578947368421, 'Precision': 0.48, 'Name': 'w32-virut', 'Recall': 0.9230769230769231, 'fn': 1, 'DetectionRate': 129.00523560209425, 'tn': 104, 'Accuracy': 0.8923076923076924, 'tp': 12, 'fp': 13}
{'Threshold': '61', 'Fscore': 1.0, 'Precision': 1.0, 'Name': 'bds-hupigon', 'Recall': 1.0, 'fn': 0, 'DetectionRate': 130.0, 'tn': 125, 'Accuracy': 1.0, 'tp': 5, 'fp': 0}
{'Threshold': '61', 'Fscore': 0.6060606060606061, 'Precision': 1.0, 'Name': 'game-dldr-trymedia', 'Recall': 0.43478260869565216, 'fn': 13, 'DetectionRate': 117.06806282722513, 'tn': 107, 'Accuracy': 0.9, 'tp': 10, 'fp': 0}
{'Threshold': '61', 'Fscore': 0.3157894736842105, 'Precision': 0.1875, 'Name': 'adspy', 'Recall': 1.0, 'fn': 0, 'DetectionRate': 130.0, 'tn': 114, 'Accuracy': 0.9, 'tp': 3, 'fp': 13}
{'DetectionRate': 129.0, 'Accuracy': 1.0, 'fn': 0, 'tn': 127, 'Recall': 1.0, 'fp': 0, 'tp': 2, 'Threshold': '62', 'Name': 'game-casino', 'Fscore': 1.0, 'Precision': 1.0}
{'DetectionRate': 116.06806282722513, 'Accuracy': 0.8914728682170543, 'fn': 13, 'tn': 94, 'Recall': 0.6176470588235294, 'fp': 1, 'tp': 21, 'Threshold': '62', 'Name': 'worm-allaple', 'Fscore': 0.75, 'Precision': 0.9545454545454546}
{'DetectionRate': 129.0, 'Accuracy': 1.0, 'fn': 0, 'tn': 127, 'Recall': 1.0, 'fp': 0, 'tp': 2, 'Threshold': '62', 'Name': 'dial', 'Fscore': 1.0, 'Precision': 1.0}
{'DetectionRate': 129.0, 'Accuracy': 1.0, 'fn': 0, 'tn': 116, 'Recall': 1.0, 'fp': 0, 'tp': 13, 'Threshold': '62', 'Name': 'bds-udr', 'Fscore': 1.0, 'Precision': 1.0}
{'DetectionRate': 116.06806282722513, 'Accuracy': 0.8992248062015504, 'fn': 13, 'tn': 106, 'Recall': 0.43478260869565216, 'fp': 0, 'tp': 10, 'Threshold': '62', 'Name': 'game-dldr-trymedia', 'Fscore': 0.6060606060606061, 'Precision': 1.0}
{'DetectionRate': 127.01047120418848, 'Accuracy': 0.9844961240310077, 'fn': 2, 'tn': 125, 'Recall': 0.5, 'fp': 0, 'tp': 2, 'Threshold': '62', 'Name': 'tr-drop-', 'Fscore': 0.6666666666666666, 'Precision': 1.0}
{'DetectionRate': 127.01047120418848, 'Accuracy': 0.9844961240310077, 'fn': 2, 'tn': 126, 'Recall': 0.3333333333333333, 'fp': 0, 'tp': 1, 'Threshold': '62', 'Name': 'tr-dropper-gen', 'Fscore': 0.5, 'Precision': 1.0}
{'DetectionRate': 129.0, 'Accuracy': 1.0, 'fn': 0, 'tn': 124, 'Recall': 1.0, 'fp': 0, 'tp': 5, 'Threshold': '62', 'Name': 'bds-hupigon', 'Fscore': 1.0, 'Precision': 1.0}
{'DetectionRate': 128.00523560209425, 'Accuracy': 0.8914728682170543, 'fn': 1, 'tn': 103, 'Recall': 0.9230769230769231, 'fp': 13, 'tp': 12, 'Threshold': '62', 'Name': 'w32-virut', 'Fscore': 0.631578947368421, 'Precision': 0.48}
{'DetectionRate': 129.0, 'Accuracy': 1.0, 'fn': 0, 'tn': 117, 'Recall': 1.0, 'fp': 0, 'tp': 12, 'Threshold': '62', 'Name': 'tr-dldr-swizzor', 'Fscore': 1.0, 'Precision': 1.0}
{'DetectionRate': 129.0, 'Accuracy': 0.9689922480620154, 'fn': 0, 'tn': 110, 'Recall': 1.0, 'fp': 4, 'tp': 15, 'Threshold': '62', 'Name': 'game-dldr-fenomen', 'Fscore': 0.8823529411764706, 'Precision': 0.7894736842105263}
{'DetectionRate': 129.0, 'Accuracy': 0.8992248062015504, 'fn': 0, 'tn': 113, 'Recall': 1.0, 'fp': 13, 'tp': 3, 'Threshold': '62', 'Name': 'adspy', 'Fscore': 0.3157894736842105, 'Precision': 0.1875}
{'Accuracy': 1.0, 'fn': 0, 'DetectionRate': 129.0, 'fp': 0, 'Precision': 1.0, 'Fscore': 1.0, 'Threshold': '63', 'tp': 2, 'Recall': 1.0, 'tn': 127, 'Name': 'dial'}
{'Accuracy': 0.8992248062015504, 'fn': 13, 'DetectionRate': 116.06806282722513, 'fp': 0, 'Precision': 1.0, 'Fscore': 0.6060606060606061, 'Threshold': '63', 'tp': 10, 'Recall': 0.43478260869565216, 'tn': 106, 'Name': 'game-dldr-trymedia'}
{'Accuracy': 1.0, 'fn': 0, 'DetectionRate': 129.0, 'fp': 0, 'Precision': 1.0, 'Fscore': 1.0, 'Threshold': '63', 'tp': 13, 'Recall': 1.0, 'tn': 116, 'Name': 'bds-udr'}
{'Accuracy': 1.0, 'fn': 0, 'DetectionRate': 129.0, 'fp': 0, 'Precision': 1.0, 'Fscore': 1.0, 'Threshold': '63', 'tp': 12, 'Recall': 1.0, 'tn': 117, 'Name': 'tr-dldr-swizzor'}
{'Accuracy': 0.9689922480620154, 'fn': 0, 'DetectionRate': 129.0, 'fp': 4, 'Precision': 0.7894736842105263, 'Fscore': 0.8823529411764706, 'Threshold': '63', 'tp': 15, 'Recall': 1.0, 'tn': 110, 'Name': 'game-dldr-fenomen'}
{'Accuracy': 1.0, 'fn': 0, 'DetectionRate': 129.0, 'fp': 0, 'Precision': 1.0, 'Fscore': 1.0, 'Threshold': '63', 'tp': 2, 'Recall': 1.0, 'tn': 127, 'Name': 'game-casino'}
{'Accuracy': 0.8992248062015504, 'fn': 0, 'DetectionRate': 129.0, 'fp': 13, 'Precision': 0.1875, 'Fscore': 0.3157894736842105, 'Threshold': '63', 'tp': 3, 'Recall': 1.0, 'tn': 113, 'Name': 'adspy'}
{'Accuracy': 0.8914728682170543, 'fn': 13, 'DetectionRate': 116.06806282722513, 'fp': 1, 'Precision': 0.9545454545454546, 'Fscore': 0.75, 'Threshold': '63', 'tp': 21, 'Recall': 0.6176470588235294, 'tn': 94, 'Name': 'worm-allaple'}
{'Accuracy': 1.0, 'fn': 0, 'DetectionRate': 129.0, 'fp': 0, 'Precision': 1.0, 'Fscore': 1.0, 'Threshold': '63', 'tp': 5, 'Recall': 1.0, 'tn': 124, 'Name': 'bds-hupigon'}
{'Accuracy': 0.9844961240310077, 'fn': 2, 'DetectionRate': 127.01047120418848, 'fp': 0, 'Precision': 1.0, 'Fscore': 0.5, 'Threshold': '63', 'tp': 1, 'Recall': 0.3333333333333333, 'tn': 126, 'Name': 'tr-dropper-gen'}
{'Accuracy': 0.8914728682170543, 'fn': 1, 'DetectionRate': 128.00523560209425, 'fp': 13, 'Precision': 0.48, 'Fscore': 0.631578947368421, 'Threshold': '63', 'tp': 12, 'Recall': 0.9230769230769231, 'tn': 103, 'Name': 'w32-virut'}
{'Accuracy': 0.9844961240310077, 'fn': 2, 'DetectionRate': 127.01047120418848, 'fp': 0, 'Precision': 1.0, 'Fscore': 0.6666666666666666, 'Threshold': '63', 'tp': 2, 'Recall': 0.5, 'tn': 125, 'Name': 'tr-drop-'}
{'Fscore': 1.0, 'Precision': 1.0, 'DetectionRate': 128.0, 'Name': 'dial', 'Threshold': '64', 'fn': 0, 'Recall': 1.0, 'tn': 126, 'fp': 0, 'Accuracy': 1.0, 'tp': 2}
{'Fscore': 0.8823529411764706, 'Precision': 0.7894736842105263, 'DetectionRate': 128.0, 'Name': 'game-dldr-fenomen', 'Threshold': '64', 'fn': 0, 'Recall': 1.0, 'tn': 109, 'fp': 4, 'Accuracy': 0.96875, 'tp': 15}
{'Fscore': 0.631578947368421, 'Precision': 0.48, 'DetectionRate': 127.00523560209425, 'Name': 'w32-virut', 'Threshold': '64', 'fn': 1, 'Recall': 0.9230769230769231, 'tn': 102, 'fp': 13, 'Accuracy': 0.890625, 'tp': 12}
{'Fscore': 1.0, 'Precision': 1.0, 'DetectionRate': 128.0, 'Name': 'bds-udr', 'Threshold': '64', 'fn': 0, 'Recall': 1.0, 'tn': 115, 'fp': 0, 'Accuracy': 1.0, 'tp': 13}
{'Fscore': 1.0, 'Precision': 1.0, 'DetectionRate': 128.0, 'Name': 'bds-hupigon', 'Threshold': '64', 'fn': 0, 'Recall': 1.0, 'tn': 123, 'fp': 0, 'Accuracy': 1.0, 'tp': 5}
{'Fscore': 0.6060606060606061, 'Precision': 1.0, 'DetectionRate': 115.06806282722513, 'Name': 'game-dldr-trymedia', 'Threshold': '64', 'fn': 13, 'Recall': 0.43478260869565216, 'tn': 105, 'fp': 0, 'Accuracy': 0.8984375, 'tp': 10}
{'Fscore': 0.75, 'Precision': 0.9545454545454546, 'DetectionRate': 115.06806282722513, 'Name': 'worm-allaple', 'Threshold': '64', 'fn': 13, 'Recall': 0.6176470588235294, 'tn': 93, 'fp': 1, 'Accuracy': 0.890625, 'tp': 21}
{'Fscore': 1.0, 'Precision': 1.0, 'DetectionRate': 128.0, 'Name': 'tr-dldr-swizzor', 'Threshold': '64', 'fn': 0, 'Recall': 1.0, 'tn': 117, 'fp': 0, 'Accuracy': 1.0, 'tp': 11}
{'Fscore': 0.6666666666666666, 'Precision': 1.0, 'DetectionRate': 126.01047120418848, 'Name': 'tr-drop-', 'Threshold': '64', 'fn': 2, 'Recall': 0.5, 'tn': 124, 'fp': 0, 'Accuracy': 0.984375, 'tp': 2}
{'Fscore': 1.0, 'Precision': 1.0, 'DetectionRate': 128.0, 'Name': 'game-casino', 'Threshold': '64', 'fn': 0, 'Recall': 1.0, 'tn': 126, 'fp': 0, 'Accuracy': 1.0, 'tp': 2}
{'Fscore': 0.5, 'Precision': 1.0, 'DetectionRate': 126.01047120418848, 'Name': 'tr-dropper-gen', 'Threshold': '64', 'fn': 2, 'Recall': 0.3333333333333333, 'tn': 125, 'fp': 0, 'Accuracy': 0.984375, 'tp': 1}
{'Fscore': 0.3157894736842105, 'Precision': 0.1875, 'DetectionRate': 128.0, 'Name': 'adspy', 'Threshold': '64', 'fn': 0, 'Recall': 1.0, 'tn': 112, 'fp': 13, 'Accuracy': 0.8984375, 'tp': 3}
{'Recall': 1.0, 'Precision': 0.7894736842105263, 'fn': 0, 'Fscore': 0.8823529411764706, 'Threshold': '65', 'Accuracy': 0.96875, 'DetectionRate': 128.0, 'fp': 4, 'tn': 109, 'Name': 'game-dldr-fenomen', 'tp': 15}
{'Recall': 0.5, 'Precision': 1.0, 'fn': 2, 'Fscore': 0.6666666666666666, 'Threshold': '65', 'Accuracy': 0.984375, 'DetectionRate': 126.01047120418848, 'fp': 0, 'tn': 124, 'Name': 'tr-drop-', 'tp': 2}
{'Recall': 0.43478260869565216, 'Precision': 1.0, 'fn': 13, 'Fscore': 0.6060606060606061, 'Threshold': '65', 'Accuracy': 0.8984375, 'DetectionRate': 115.06806282722513, 'fp': 0, 'tn': 105, 'Name': 'game-dldr-trymedia', 'tp': 10}
{'Recall': 1.0, 'Precision': 1.0, 'fn': 0, 'Fscore': 1.0, 'Threshold': '65', 'Accuracy': 1.0, 'DetectionRate': 128.0, 'fp': 0, 'tn': 117, 'Name': 'tr-dldr-swizzor', 'tp': 11}
{'Recall': 1.0, 'Precision': 1.0, 'fn': 0, 'Fscore': 1.0, 'Threshold': '65', 'Accuracy': 1.0, 'DetectionRate': 128.0, 'fp': 0, 'tn': 115, 'Name': 'bds-udr', 'tp': 13}
{'Recall': 0.6176470588235294, 'Precision': 0.9545454545454546, 'fn': 13, 'Fscore': 0.75, 'Threshold': '65', 'Accuracy': 0.890625, 'DetectionRate': 115.06806282722513, 'fp': 1, 'tn': 93, 'Name': 'worm-allaple', 'tp': 21}
{'Recall': 1.0, 'Precision': 1.0, 'fn': 0, 'Fscore': 1.0, 'Threshold': '65', 'Accuracy': 1.0, 'DetectionRate': 128.0, 'fp': 0, 'tn': 126, 'Name': 'game-casino', 'tp': 2}
{'Recall': 1.0, 'Precision': 0.1875, 'fn': 0, 'Fscore': 0.3157894736842105, 'Threshold': '65', 'Accuracy': 0.8984375, 'DetectionRate': 128.0, 'fp': 13, 'tn': 112, 'Name': 'adspy', 'tp': 3}
{'Recall': 1.0, 'Precision': 1.0, 'fn': 0, 'Fscore': 1.0, 'Threshold': '65', 'Accuracy': 1.0, 'DetectionRate': 128.0, 'fp': 0, 'tn': 126, 'Name': 'dial', 'tp': 2}
{'Recall': 1.0, 'Precision': 1.0, 'fn': 0, 'Fscore': 1.0, 'Threshold': '65', 'Accuracy': 1.0, 'DetectionRate': 128.0, 'fp': 0, 'tn': 123, 'Name': 'bds-hupigon', 'tp': 5}
{'Recall': 0.9230769230769231, 'Precision': 0.48, 'fn': 1, 'Fscore': 0.631578947368421, 'Threshold': '65', 'Accuracy': 0.890625, 'DetectionRate': 127.00523560209425, 'fp': 13, 'tn': 102, 'Name': 'w32-virut', 'tp': 12}
{'Recall': 0.3333333333333333, 'Precision': 1.0, 'fn': 2, 'Fscore': 0.5, 'Threshold': '65', 'Accuracy': 0.984375, 'DetectionRate': 126.01047120418848, 'fp': 0, 'tn': 125, 'Name': 'tr-dropper-gen', 'tp': 1}
{'Recall': 1.0, 'fn': 0, 'Accuracy': 1.0, 'tn': 113, 'Threshold': '66', 'Name': 'bds-udr', 'fp': 0, 'Precision': 1.0, 'Fscore': 1.0, 'DetectionRate': 126.0, 'tp': 13}
{'Recall': 1.0, 'fn': 0, 'Accuracy': 1.0, 'tn': 121, 'Threshold': '66', 'Name': 'bds-hupigon', 'fp': 0, 'Precision': 1.0, 'Fscore': 1.0, 'DetectionRate': 126.0, 'tp': 5}
{'Recall': 0.9230769230769231, 'fn': 1, 'Accuracy': 0.8888888888888888, 'tn': 100, 'Threshold': '66', 'Name': 'w32-virut', 'fp': 13, 'Precision': 0.48, 'Fscore': 0.631578947368421, 'DetectionRate': 125.00523560209425, 'tp': 12}
{'Recall': 1.0, 'fn': 0, 'Accuracy': 1.0, 'tn': 116, 'Threshold': '66', 'Name': 'tr-dldr-swizzor', 'fp': 0, 'Precision': 1.0, 'Fscore': 1.0, 'DetectionRate': 126.0, 'tp': 10}
{'Recall': 0.3333333333333333, 'fn': 2, 'Accuracy': 0.9841269841269841, 'tn': 123, 'Threshold': '66', 'Name': 'tr-dropper-gen', 'fp': 0, 'Precision': 1.0, 'Fscore': 0.5, 'DetectionRate': 124.01047120418848, 'tp': 1}
{'Recall': 1.0, 'fn': 0, 'Accuracy': 0.8968253968253969, 'tn': 110, 'Threshold': '66', 'Name': 'adspy', 'fp': 13, 'Precision': 0.1875, 'Fscore': 0.3157894736842105, 'DetectionRate': 126.0, 'tp': 3}
{'Recall': 1.0, 'fn': 0, 'Accuracy': 0.9682539682539683, 'tn': 107, 'Threshold': '66', 'Name': 'game-dldr-fenomen', 'fp': 4, 'Precision': 0.7894736842105263, 'Fscore': 0.8823529411764706, 'DetectionRate': 126.0, 'tp': 15}
{'Recall': 1.0, 'fn': 0, 'Accuracy': 1.0, 'tn': 124, 'Threshold': '66', 'Name': 'dial', 'fp': 0, 'Precision': 1.0, 'Fscore': 1.0, 'DetectionRate': 126.0, 'tp': 2}
{'Recall': 1.0, 'fn': 0, 'Accuracy': 1.0, 'tn': 124, 'Threshold': '66', 'Name': 'game-casino', 'fp': 0, 'Precision': 1.0, 'Fscore': 1.0, 'DetectionRate': 126.0, 'tp': 2}
{'Recall': 0.6060606060606061, 'fn': 13, 'Accuracy': 0.8888888888888888, 'tn': 92, 'Threshold': '66', 'Name': 'worm-allaple', 'fp': 1, 'Precision': 0.9523809523809523, 'Fscore': 0.7407407407407407, 'DetectionRate': 113.06806282722513, 'tp': 20}
{'Recall': 0.43478260869565216, 'fn': 13, 'Accuracy': 0.8968253968253969, 'tn': 103, 'Threshold': '66', 'Name': 'game-dldr-trymedia', 'fp': 0, 'Precision': 1.0, 'Fscore': 0.6060606060606061, 'DetectionRate': 113.06806282722513, 'tp': 10}
{'Recall': 0.5, 'fn': 2, 'Accuracy': 0.9841269841269841, 'tn': 122, 'Threshold': '66', 'Name': 'tr-drop-', 'fp': 0, 'Precision': 1.0, 'Fscore': 0.6666666666666666, 'DetectionRate': 124.01047120418848, 'tp': 2}
{'Precision': 1.0, 'Threshold': '67', 'DetectionRate': 122.0, 'fn': 0, 'Name': 'bds-udr', 'Fscore': 1.0, 'Accuracy': 1.0, 'Recall': 1.0, 'tp': 13, 'fp': 0, 'tn': 109}
{'Precision': 1.0, 'Threshold': '67', 'DetectionRate': 120.01047120418848, 'fn': 2, 'Name': 'tr-dropper-gen', 'Fscore': 0.5, 'Accuracy': 0.9836065573770492, 'Recall': 0.3333333333333333, 'tp': 1, 'fp': 0, 'tn': 119}
{'Precision': 0.1875, 'Threshold': '67', 'DetectionRate': 122.0, 'fn': 0, 'Name': 'adspy', 'Fscore': 0.3157894736842105, 'Accuracy': 0.8934426229508197, 'Recall': 1.0, 'tp': 3, 'fp': 13, 'tn': 106}
{'Precision': 1.0, 'Threshold': '67', 'DetectionRate': 122.0, 'fn': 0, 'Name': 'tr-dldr-swizzor', 'Fscore': 1.0, 'Accuracy': 1.0, 'Recall': 1.0, 'tp': 9, 'fp': 0, 'tn': 113}
{'Precision': 1.0, 'Threshold': '67', 'DetectionRate': 120.01047120418848, 'fn': 2, 'Name': 'tr-drop-', 'Fscore': 0.6666666666666666, 'Accuracy': 0.9836065573770492, 'Recall': 0.5, 'tp': 2, 'fp': 0, 'tn': 118}
{'Precision': 1.0, 'Threshold': '67', 'DetectionRate': 122.0, 'fn': 0, 'Name': 'bds-hupigon', 'Fscore': 1.0, 'Accuracy': 1.0, 'Recall': 1.0, 'tp': 4, 'fp': 0, 'tn': 118}
{'Precision': 0.7894736842105263, 'Threshold': '67', 'DetectionRate': 122.0, 'fn': 0, 'Name': 'game-dldr-fenomen', 'Fscore': 0.8823529411764706, 'Accuracy': 0.9672131147540983, 'Recall': 1.0, 'tp': 15, 'fp': 4, 'tn': 103}
{'Precision': 1.0, 'Threshold': '67', 'DetectionRate': 109.06806282722513, 'fn': 13, 'Name': 'game-dldr-trymedia', 'Fscore': 0.6060606060606061, 'Accuracy': 0.8934426229508197, 'Recall': 0.43478260869565216, 'tp': 10, 'fp': 0, 'tn': 99}
{'Precision': 0.9473684210526315, 'Threshold': '67', 'DetectionRate': 109.06806282722513, 'fn': 13, 'Name': 'worm-allaple', 'Fscore': 0.72, 'Accuracy': 0.8852459016393442, 'Recall': 0.5806451612903226, 'tp': 18, 'fp': 1, 'tn': 90}
{'Precision': 0.48, 'Threshold': '67', 'DetectionRate': 121.00523560209425, 'fn': 1, 'Name': 'w32-virut', 'Fscore': 0.631578947368421, 'Accuracy': 0.8852459016393442, 'Recall': 0.9230769230769231, 'tp': 12, 'fp': 13, 'tn': 96}
{'Precision': 1.0, 'Threshold': '67', 'DetectionRate': 122.0, 'fn': 0, 'Name': 'dial', 'Fscore': 1.0, 'Accuracy': 1.0, 'Recall': 1.0, 'tp': 2, 'fp': 0, 'tn': 120}
{'Precision': 1.0, 'Threshold': '67', 'DetectionRate': 122.0, 'fn': 0, 'Name': 'game-casino', 'Fscore': 1.0, 'Accuracy': 1.0, 'Recall': 1.0, 'tp': 2, 'fp': 0, 'tn': 120}
{'fp': 0, 'fn': 13, 'Name': 'game-dldr-trymedia', 'Precision': 1.0, 'DetectionRate': 108.06806282722513, 'Fscore': 0.6060606060606061, 'Accuracy': 0.8925619834710744, 'tp': 10, 'tn': 98, 'Recall': 0.43478260869565216, 'Threshold': '68'}
{'fp': 13, 'fn': 1, 'Name': 'w32-virut', 'Precision': 0.48, 'DetectionRate': 120.00523560209425, 'Fscore': 0.631578947368421, 'Accuracy': 0.8842975206611571, 'tp': 12, 'tn': 95, 'Recall': 0.9230769230769231, 'Threshold': '68'}
{'fp': 0, 'fn': 2, 'Name': 'tr-dropper-gen', 'Precision': 1.0, 'DetectionRate': 119.01047120418848, 'Fscore': 0.5, 'Accuracy': 0.9834710743801653, 'tp': 1, 'tn': 118, 'Recall': 0.3333333333333333, 'Threshold': '68'}
{'fp': 0, 'fn': 0, 'Name': 'bds-hupigon', 'Precision': 1.0, 'DetectionRate': 121.0, 'Fscore': 1.0, 'Accuracy': 1.0, 'tp': 4, 'tn': 117, 'Recall': 1.0, 'Threshold': '68'}
{'fp': 0, 'fn': 0, 'Name': 'dial', 'Precision': 1.0, 'DetectionRate': 121.0, 'Fscore': 1.0, 'Accuracy': 1.0, 'tp': 2, 'tn': 119, 'Recall': 1.0, 'Threshold': '68'}
{'fp': 0, 'fn': 2, 'Name': 'tr-drop-', 'Precision': 1.0, 'DetectionRate': 119.01047120418848, 'Fscore': 0.5, 'Accuracy': 0.9834710743801653, 'tp': 1, 'tn': 118, 'Recall': 0.3333333333333333, 'Threshold': '68'}
{'fp': 0, 'fn': 0, 'Name': 'bds-udr', 'Precision': 1.0, 'DetectionRate': 121.0, 'Fscore': 1.0, 'Accuracy': 1.0, 'tp': 13, 'tn': 108, 'Recall': 1.0, 'Threshold': '68'}
{'fp': 0, 'fn': 0, 'Name': 'game-casino', 'Precision': 1.0, 'DetectionRate': 121.0, 'Fscore': 1.0, 'Accuracy': 1.0, 'tp': 2, 'tn': 119, 'Recall': 1.0, 'Threshold': '68'}
{'fp': 4, 'fn': 0, 'Name': 'game-dldr-fenomen', 'Precision': 0.7894736842105263, 'DetectionRate': 121.0, 'Fscore': 0.8823529411764706, 'Accuracy': 0.9669421487603306, 'tp': 15, 'tn': 102, 'Recall': 1.0, 'Threshold': '68'}
{'fp': 0, 'fn': 0, 'Name': 'tr-dldr-swizzor', 'Precision': 1.0, 'DetectionRate': 121.0, 'Fscore': 1.0, 'Accuracy': 1.0, 'tp': 9, 'tn': 112, 'Recall': 1.0, 'Threshold': '68'}
{'fp': 1, 'fn': 13, 'Name': 'worm-allaple', 'Precision': 0.9473684210526315, 'DetectionRate': 108.06806282722513, 'Fscore': 0.72, 'Accuracy': 0.8842975206611571, 'tp': 18, 'tn': 89, 'Recall': 0.5806451612903226, 'Threshold': '68'}
{'fp': 13, 'fn': 0, 'Name': 'adspy', 'Precision': 0.1875, 'DetectionRate': 121.0, 'Fscore': 0.3157894736842105, 'Accuracy': 0.8925619834710744, 'tp': 3, 'tn': 105, 'Recall': 1.0, 'Threshold': '68'}
{'fp': 0, 'Name': 'bds-hupigon', 'tp': 4, 'Threshold': '69', 'Fscore': 1.0, 'Accuracy': 1.0, 'tn': 116, 'DetectionRate': 120.0, 'Precision': 1.0, 'Recall': 1.0, 'fn': 0}
{'fp': 0, 'Name': 'tr-dropper-gen', 'tp': 1, 'Threshold': '69', 'Fscore': 0.6666666666666666, 'Accuracy': 0.9916666666666667, 'tn': 118, 'DetectionRate': 119.00523560209425, 'Precision': 1.0, 'Recall': 0.5, 'fn': 1}
{'fp': 0, 'Name': 'game-dldr-trymedia', 'tp': 10, 'Threshold': '69', 'Fscore': 0.6060606060606061, 'Accuracy': 0.8916666666666667, 'tn': 97, 'DetectionRate': 107.06806282722513, 'Precision': 1.0, 'Recall': 0.43478260869565216, 'fn': 13}
{'fp': 0, 'Name': 'bds-udr', 'tp': 13, 'Threshold': '69', 'Fscore': 1.0, 'Accuracy': 1.0, 'tn': 107, 'DetectionRate': 120.0, 'Precision': 1.0, 'Recall': 1.0, 'fn': 0}
{'fp': 13, 'Name': 'adspy', 'tp': 3, 'Threshold': '69', 'Fscore': 0.3157894736842105, 'Accuracy': 0.8916666666666667, 'tn': 104, 'DetectionRate': 120.0, 'Precision': 0.1875, 'Recall': 1.0, 'fn': 0}
{'fp': 13, 'Name': 'w32-virut', 'tp': 12, 'Threshold': '69', 'Fscore': 0.631578947368421, 'Accuracy': 0.8833333333333333, 'tn': 94, 'DetectionRate': 119.00523560209425, 'Precision': 0.48, 'Recall': 0.9230769230769231, 'fn': 1}
{'fp': 0, 'Name': 'game-casino', 'tp': 2, 'Threshold': '69', 'Fscore': 1.0, 'Accuracy': 1.0, 'tn': 118, 'DetectionRate': 120.0, 'Precision': 1.0, 'Recall': 1.0, 'fn': 0}
{'fp': 1, 'Name': 'worm-allaple', 'tp': 18, 'Threshold': '69', 'Fscore': 0.72, 'Accuracy': 0.8833333333333333, 'tn': 88, 'DetectionRate': 107.06806282722513, 'Precision': 0.9473684210526315, 'Recall': 0.5806451612903226, 'fn': 13}
{'fp': 0, 'Name': 'tr-dldr-swizzor', 'tp': 9, 'Threshold': '69', 'Fscore': 1.0, 'Accuracy': 1.0, 'tn': 111, 'DetectionRate': 120.0, 'Precision': 1.0, 'Recall': 1.0, 'fn': 0}
{'fp': 0, 'Name': 'tr-drop-', 'tp': 1, 'Threshold': '69', 'Fscore': 0.5, 'Accuracy': 0.9833333333333333, 'tn': 117, 'DetectionRate': 118.01047120418848, 'Precision': 1.0, 'Recall': 0.3333333333333333, 'fn': 2}
{'fp': 0, 'Name': 'dial', 'tp': 2, 'Threshold': '69', 'Fscore': 1.0, 'Accuracy': 1.0, 'tn': 118, 'DetectionRate': 120.0, 'Precision': 1.0, 'Recall': 1.0, 'fn': 0}
{'fp': 3, 'Name': 'game-dldr-fenomen', 'tp': 15, 'Threshold': '69', 'Fscore': 0.9090909090909091, 'Accuracy': 0.975, 'tn': 102, 'DetectionRate': 120.0, 'Precision': 0.8333333333333334, 'Recall': 1.0, 'fn': 0}
{'Precision': 0.9473684210526315, 'DetectionRate': 104.06806282722513, 'tp': 18, 'fp': 1, 'Name': 'worm-allaple', 'Fscore': 0.72, 'Threshold': '70', 'fn': 13, 'Recall': 0.5806451612903226, 'tn': 85, 'Accuracy': 0.8803418803418803}
{'Precision': 0.1875, 'DetectionRate': 117.0, 'tp': 3, 'fp': 13, 'Name': 'adspy', 'Fscore': 0.3157894736842105, 'Threshold': '70', 'fn': 0, 'Recall': 1.0, 'tn': 101, 'Accuracy': 0.8888888888888888}
{'Precision': 0.8333333333333334, 'DetectionRate': 117.0, 'tp': 15, 'fp': 3, 'Name': 'game-dldr-fenomen', 'Fscore': 0.9090909090909091, 'Threshold': '70', 'fn': 0, 'Recall': 1.0, 'tn': 99, 'Accuracy': 0.9743589743589743}
{'Precision': 1.0, 'DetectionRate': 104.06806282722513, 'tp': 10, 'fp': 0, 'Name': 'game-dldr-trymedia', 'Fscore': 0.6060606060606061, 'Threshold': '70', 'fn': 13, 'Recall': 0.43478260869565216, 'tn': 94, 'Accuracy': 0.8888888888888888}
{'Precision': 1.0, 'DetectionRate': 117.0, 'tp': 2, 'fp': 0, 'Name': 'game-casino', 'Fscore': 1.0, 'Threshold': '70', 'fn': 0, 'Recall': 1.0, 'tn': 115, 'Accuracy': 1.0}
{'Precision': 1.0, 'DetectionRate': 117.0, 'tp': 2, 'fp': 0, 'Name': 'dial', 'Fscore': 1.0, 'Threshold': '70', 'fn': 0, 'Recall': 1.0, 'tn': 115, 'Accuracy': 1.0}
{'Precision': 1.0, 'DetectionRate': 117.0, 'tp': 4, 'fp': 0, 'Name': 'bds-hupigon', 'Fscore': 1.0, 'Threshold': '70', 'fn': 0, 'Recall': 1.0, 'tn': 113, 'Accuracy': 1.0}
{'Precision': 1.0, 'DetectionRate': 115.01047120418848, 'tp': 1, 'fp': 0, 'Name': 'tr-drop-', 'Fscore': 0.5, 'Threshold': '70', 'fn': 2, 'Recall': 0.3333333333333333, 'tn': 114, 'Accuracy': 0.9829059829059829}
{'Precision': 1.0, 'DetectionRate': 117.0, 'tp': 13, 'fp': 0, 'Name': 'bds-udr', 'Fscore': 1.0, 'Threshold': '70', 'fn': 0, 'Recall': 1.0, 'tn': 104, 'Accuracy': 1.0}
{'Precision': 1.0, 'DetectionRate': 117.0, 'tp': 8, 'fp': 0, 'Name': 'tr-dldr-swizzor', 'Fscore': 1.0, 'Threshold': '70', 'fn': 0, 'Recall': 1.0, 'tn': 109, 'Accuracy': 1.0}
{'Precision': 0.43478260869565216, 'DetectionRate': 116.00523560209425, 'tp': 10, 'fp': 13, 'Name': 'w32-virut', 'Fscore': 0.5882352941176471, 'Threshold': '70', 'fn': 1, 'Recall': 0.9090909090909091, 'tn': 93, 'Accuracy': 0.8803418803418803}
{'Precision': 1.0, 'DetectionRate': 116.00523560209425, 'tp': 1, 'fp': 0, 'Name': 'tr-dropper-gen', 'Fscore': 0.6666666666666666, 'Threshold': '70', 'fn': 1, 'Recall': 0.5, 'tn': 115, 'Accuracy': 0.9914529914529915}
{'Fscore': 1.0, 'Accuracy': 1.0, 'Precision': 1.0, 'tn': 103, 'Recall': 1.0, 'DetectionRate': 116.0, 'tp': 13, 'Threshold': '71', 'fp': 0, 'Name': 'bds-udr', 'fn': 0}
{'Fscore': 0.5882352941176471, 'Accuracy': 0.8793103448275862, 'Precision': 0.43478260869565216, 'tn': 92, 'Recall': 0.9090909090909091, 'DetectionRate': 115.00523560209425, 'tp': 10, 'Threshold': '71', 'fp': 13, 'Name': 'w32-virut', 'fn': 1}
{'Fscore': 1.0, 'Accuracy': 1.0, 'Precision': 1.0, 'tn': 114, 'Recall': 1.0, 'DetectionRate': 116.0, 'tp': 2, 'Threshold': '71', 'fp': 0, 'Name': 'dial', 'fn': 0}
{'Fscore': 1.0, 'Accuracy': 1.0, 'Precision': 1.0, 'tn': 114, 'Recall': 1.0, 'DetectionRate': 116.0, 'tp': 2, 'Threshold': '71', 'fp': 0, 'Name': 'game-casino', 'fn': 0}
{'Fscore': 1.0, 'Accuracy': 1.0, 'Precision': 1.0, 'tn': 109, 'Recall': 1.0, 'DetectionRate': 116.0, 'tp': 7, 'Threshold': '71', 'fp': 0, 'Name': 'tr-dldr-swizzor', 'fn': 0}
{'Fscore': 0.9090909090909091, 'Accuracy': 0.9741379310344828, 'Precision': 0.8333333333333334, 'tn': 98, 'Recall': 1.0, 'DetectionRate': 116.0, 'tp': 15, 'Threshold': '71', 'fp': 3, 'Name': 'game-dldr-fenomen', 'fn': 0}
{'Fscore': 0.72, 'Accuracy': 0.8793103448275862, 'Precision': 0.9473684210526315, 'tn': 84, 'Recall': 0.5806451612903226, 'DetectionRate': 103.06806282722513, 'tp': 18, 'Threshold': '71', 'fp': 1, 'Name': 'worm-allaple', 'fn': 13}
{'Fscore': 0.3157894736842105, 'Accuracy': 0.8879310344827587, 'Precision': 0.1875, 'tn': 100, 'Recall': 1.0, 'DetectionRate': 116.0, 'tp': 3, 'Threshold': '71', 'fp': 13, 'Name': 'adspy', 'fn': 0}
{'Fscore': 1.0, 'Accuracy': 1.0, 'Precision': 1.0, 'tn': 112, 'Recall': 1.0, 'DetectionRate': 116.0, 'tp': 4, 'Threshold': '71', 'fp': 0, 'Name': 'bds-hupigon', 'fn': 0}
{'Fscore': 0.5, 'Accuracy': 0.9827586206896551, 'Precision': 1.0, 'tn': 113, 'Recall': 0.3333333333333333, 'DetectionRate': 114.01047120418848, 'tp': 1, 'Threshold': '71', 'fp': 0, 'Name': 'tr-drop-', 'fn': 2}
{'Fscore': 0.6666666666666666, 'Accuracy': 0.9913793103448276, 'Precision': 1.0, 'tn': 114, 'Recall': 0.5, 'DetectionRate': 115.00523560209425, 'tp': 1, 'Threshold': '71', 'fp': 0, 'Name': 'tr-dropper-gen', 'fn': 1}
{'Fscore': 0.6060606060606061, 'Accuracy': 0.8879310344827587, 'Precision': 1.0, 'tn': 93, 'Recall': 0.43478260869565216, 'DetectionRate': 103.06806282722513, 'tp': 10, 'Threshold': '71', 'fp': 0, 'Name': 'game-dldr-trymedia', 'fn': 13}
{'Accuracy': 0.9823008849557522, 'Precision': 1.0, 'tp': 1, 'Fscore': 0.5, 'Threshold': '72', 'fn': 2, 'Recall': 0.3333333333333333, 'DetectionRate': 111.01047120418848, 'fp': 0, 'Name': 'tr-drop-', 'tn': 110}
{'Accuracy': 1.0, 'Precision': 1.0, 'tp': 5, 'Fscore': 1.0, 'Threshold': '72', 'fn': 0, 'Recall': 1.0, 'DetectionRate': 113.0, 'fp': 0, 'Name': 'tr-dldr-swizzor', 'tn': 108}
{'Accuracy': 1.0, 'Precision': 1.0, 'tp': 13, 'Fscore': 1.0, 'Threshold': '72', 'fn': 0, 'Recall': 1.0, 'DetectionRate': 113.0, 'fp': 0, 'Name': 'bds-udr', 'tn': 100}
{'Accuracy': 0.8761061946902655, 'Precision': 0.9444444444444444, 'tp': 17, 'Fscore': 0.7083333333333334, 'Threshold': '72', 'fn': 13, 'Recall': 0.5666666666666667, 'DetectionRate': 100.06806282722513, 'fp': 1, 'Name': 'worm-allaple', 'tn': 82}
{'Accuracy': 1.0, 'Precision': 1.0, 'tp': 4, 'Fscore': 1.0, 'Threshold': '72', 'fn': 0, 'Recall': 1.0, 'DetectionRate': 113.0, 'fp': 0, 'Name': 'bds-hupigon', 'tn': 109}
{'Accuracy': 0.9734513274336283, 'Precision': 0.8333333333333334, 'tp': 15, 'Fscore': 0.9090909090909091, 'Threshold': '72', 'fn': 0, 'Recall': 1.0, 'DetectionRate': 113.0, 'fp': 3, 'Name': 'game-dldr-fenomen', 'tn': 95}
{'Accuracy': 0.9911504424778761, 'Precision': 1.0, 'tp': 1, 'Fscore': 0.6666666666666666, 'Threshold': '72', 'fn': 1, 'Recall': 0.5, 'DetectionRate': 112.00523560209425, 'fp': 0, 'Name': 'tr-dropper-gen', 'tn': 111}
{'Accuracy': 0.8761061946902655, 'Precision': 0.43478260869565216, 'tp': 10, 'Fscore': 0.5882352941176471, 'Threshold': '72', 'fn': 1, 'Recall': 0.9090909090909091, 'DetectionRate': 112.00523560209425, 'fp': 13, 'Name': 'w32-virut', 'tn': 89}
{'Accuracy': 1.0, 'Precision': 1.0, 'tp': 2, 'Fscore': 1.0, 'Threshold': '72', 'fn': 0, 'Recall': 1.0, 'DetectionRate': 113.0, 'fp': 0, 'Name': 'game-casino', 'tn': 111}
{'Accuracy': 1.0, 'Precision': 1.0, 'tp': 2, 'Fscore': 1.0, 'Threshold': '72', 'fn': 0, 'Recall': 1.0, 'DetectionRate': 113.0, 'fp': 0, 'Name': 'dial', 'tn': 111}
{'Accuracy': 0.8849557522123894, 'Precision': 1.0, 'tp': 10, 'Fscore': 0.6060606060606061, 'Threshold': '72', 'fn': 13, 'Recall': 0.43478260869565216, 'DetectionRate': 100.06806282722513, 'fp': 0, 'Name': 'game-dldr-trymedia', 'tn': 90}
{'Accuracy': 0.8849557522123894, 'Precision': 0.1875, 'tp': 3, 'Fscore': 0.3157894736842105, 'Threshold': '72', 'fn': 0, 'Recall': 1.0, 'DetectionRate': 113.0, 'fp': 13, 'Name': 'adspy', 'tn': 97}
{'tp': 15, 'Precision': 0.8333333333333334, 'Recall': 1.0, 'Fscore': 0.9090909090909091, 'fn': 0, 'fp': 3, 'Threshold': '73', 'Accuracy': 0.9732142857142857, 'DetectionRate': 112.0, 'Name': 'game-dldr-fenomen', 'tn': 94}
{'tp': 4, 'Precision': 1.0, 'Recall': 1.0, 'Fscore': 1.0, 'fn': 0, 'fp': 0, 'Threshold': '73', 'Accuracy': 1.0, 'DetectionRate': 112.0, 'Name': 'bds-hupigon', 'tn': 108}
{'tp': 13, 'Precision': 1.0, 'Recall': 1.0, 'Fscore': 1.0, 'fn': 0, 'fp': 0, 'Threshold': '73', 'Accuracy': 1.0, 'DetectionRate': 112.0, 'Name': 'bds-udr', 'tn': 99}
{'tp': 10, 'Precision': 0.43478260869565216, 'Recall': 0.9090909090909091, 'Fscore': 0.5882352941176471, 'fn': 1, 'fp': 13, 'Threshold': '73', 'Accuracy': 0.875, 'DetectionRate': 111.00523560209425, 'Name': 'w32-virut', 'tn': 88}
{'tp': 10, 'Precision': 1.0, 'Recall': 0.43478260869565216, 'Fscore': 0.6060606060606061, 'fn': 13, 'fp': 0, 'Threshold': '73', 'Accuracy': 0.8839285714285714, 'DetectionRate': 99.06806282722513, 'Name': 'game-dldr-trymedia', 'tn': 89}
{'tp': 2, 'Precision': 1.0, 'Recall': 1.0, 'Fscore': 1.0, 'fn': 0, 'fp': 0, 'Threshold': '73', 'Accuracy': 1.0, 'DetectionRate': 112.0, 'Name': 'game-casino', 'tn': 110}
{'tp': 1, 'Precision': 1.0, 'Recall': 0.5, 'Fscore': 0.6666666666666666, 'fn': 1, 'fp': 0, 'Threshold': '73', 'Accuracy': 0.9910714285714286, 'DetectionRate': 111.00523560209425, 'Name': 'tr-dropper-gen', 'tn': 110}
{'tp': 2, 'Precision': 1.0, 'Recall': 1.0, 'Fscore': 1.0, 'fn': 0, 'fp': 0, 'Threshold': '73', 'Accuracy': 1.0, 'DetectionRate': 112.0, 'Name': 'dial', 'tn': 110}
{'tp': 1, 'Precision': 1.0, 'Recall': 0.3333333333333333, 'Fscore': 0.5, 'fn': 2, 'fp': 0, 'Threshold': '73', 'Accuracy': 0.9821428571428571, 'DetectionRate': 110.01047120418848, 'Name': 'tr-drop-', 'tn': 109}
{'tp': 3, 'Precision': 0.1875, 'Recall': 1.0, 'Fscore': 0.3157894736842105, 'fn': 0, 'fp': 13, 'Threshold': '73', 'Accuracy': 0.8839285714285714, 'DetectionRate': 112.0, 'Name': 'adspy', 'tn': 96}
{'tp': 5, 'Precision': 1.0, 'Recall': 1.0, 'Fscore': 1.0, 'fn': 0, 'fp': 0, 'Threshold': '73', 'Accuracy': 1.0, 'DetectionRate': 112.0, 'Name': 'tr-dldr-swizzor', 'tn': 107}
{'tp': 16, 'Precision': 0.9411764705882353, 'Recall': 0.5517241379310345, 'Fscore': 0.6956521739130435, 'fn': 13, 'fp': 1, 'Threshold': '73', 'Accuracy': 0.875, 'DetectionRate': 99.06806282722513, 'Name': 'worm-allaple', 'tn': 82}
{'fn': 0, 'Accuracy': 1.0, 'fp': 0, 'Recall': 1.0, 'Name': 'game-casino', 'Fscore': 1.0, 'tp': 2, 'DetectionRate': 109.0, 'Threshold': '74', 'Precision': 1.0, 'tn': 107}
{'fn': 1, 'Accuracy': 0.8715596330275229, 'fp': 13, 'Recall': 0.9090909090909091, 'Name': 'w32-virut', 'Fscore': 0.5882352941176471, 'tp': 10, 'DetectionRate': 108.00523560209425, 'Threshold': '74', 'Precision': 0.43478260869565216, 'tn': 85}
{'fn': 2, 'Accuracy': 0.981651376146789, 'fp': 0, 'Recall': 0.3333333333333333, 'Name': 'tr-drop-', 'Fscore': 0.5, 'tp': 1, 'DetectionRate': 107.01047120418848, 'Threshold': '74', 'Precision': 1.0, 'tn': 106}
{'fn': 0, 'Accuracy': 1.0, 'fp': 0, 'Recall': 1.0, 'Name': 'tr-dropper-gen', 'Fscore': 1.0, 'tp': 1, 'DetectionRate': 109.0, 'Threshold': '74', 'Precision': 1.0, 'tn': 108}
{'fn': 0, 'Accuracy': 1.0, 'fp': 0, 'Recall': 1.0, 'Name': 'dial', 'Fscore': 1.0, 'tp': 2, 'DetectionRate': 109.0, 'Threshold': '74', 'Precision': 1.0, 'tn': 107}
{'fn': 13, 'Accuracy': 0.8807339449541285, 'fp': 0, 'Recall': 0.43478260869565216, 'Name': 'game-dldr-trymedia', 'Fscore': 0.6060606060606061, 'tp': 10, 'DetectionRate': 96.06806282722513, 'Threshold': '74', 'Precision': 1.0, 'tn': 86}
{'fn': 0, 'Accuracy': 1.0, 'fp': 0, 'Recall': 1.0, 'Name': 'bds-udr', 'Fscore': 1.0, 'tp': 13, 'DetectionRate': 109.0, 'Threshold': '74', 'Precision': 1.0, 'tn': 96}
{'fn': 0, 'Accuracy': 1.0, 'fp': 0, 'Recall': 1.0, 'Name': 'bds-hupigon', 'Fscore': 1.0, 'tp': 4, 'DetectionRate': 109.0, 'Threshold': '74', 'Precision': 1.0, 'tn': 105}
{'fn': 0, 'Accuracy': 1.0, 'fp': 0, 'Recall': 1.0, 'Name': 'tr-dldr-swizzor', 'Fscore': 1.0, 'tp': 3, 'DetectionRate': 109.0, 'Threshold': '74', 'Precision': 1.0, 'tn': 106}
{'fn': 13, 'Accuracy': 0.8715596330275229, 'fp': 1, 'Recall': 0.5517241379310345, 'Name': 'worm-allaple', 'Fscore': 0.6956521739130435, 'tp': 16, 'DetectionRate': 96.06806282722513, 'Threshold': '74', 'Precision': 0.9411764705882353, 'tn': 79}
{'fn': 0, 'Accuracy': 0.981651376146789, 'fp': 2, 'Recall': 1.0, 'Name': 'game-dldr-fenomen', 'Fscore': 0.9375, 'tp': 15, 'DetectionRate': 109.0, 'Threshold': '74', 'Precision': 0.8823529411764706, 'tn': 92}
{'fn': 0, 'Accuracy': 0.8807339449541285, 'fp': 13, 'Recall': 1.0, 'Name': 'adspy', 'Fscore': 0.3157894736842105, 'tp': 3, 'DetectionRate': 109.0, 'Threshold': '74', 'Precision': 0.1875, 'tn': 93}
{'Recall': 1.0, 'fp': 0, 'Threshold': '75', 'Accuracy': 1.0, 'Precision': 1.0, 'fn': 0, 'Fscore': 1.0, 'tn': 95, 'tp': 13, 'DetectionRate': 108.0, 'Name': 'bds-udr'}
{'Recall': 1.0, 'fp': 0, 'Threshold': '75', 'Accuracy': 1.0, 'Precision': 1.0, 'fn': 0, 'Fscore': 1.0, 'tn': 107, 'tp': 1, 'DetectionRate': 108.0, 'Name': 'tr-dropper-gen'}
{'Recall': 0.5517241379310345, 'fp': 1, 'Threshold': '75', 'Accuracy': 0.8703703703703703, 'Precision': 0.9411764705882353, 'fn': 13, 'Fscore': 0.6956521739130435, 'tn': 78, 'tp': 16, 'DetectionRate': 95.06806282722513, 'Name': 'worm-allaple'}
{'Recall': 1.0, 'fp': 0, 'Threshold': '75', 'Accuracy': 1.0, 'Precision': 1.0, 'fn': 0, 'Fscore': 1.0, 'tn': 106, 'tp': 2, 'DetectionRate': 108.0, 'Name': 'game-casino'}
{'Recall': 1.0, 'fp': 0, 'Threshold': '75', 'Accuracy': 1.0, 'Precision': 1.0, 'fn': 0, 'Fscore': 1.0, 'tn': 106, 'tp': 2, 'DetectionRate': 108.0, 'Name': 'dial'}
{'Recall': 1.0, 'fp': 0, 'Threshold': '75', 'Accuracy': 1.0, 'Precision': 1.0, 'fn': 0, 'Fscore': 1.0, 'tn': 106, 'tp': 2, 'DetectionRate': 108.0, 'Name': 'tr-dldr-swizzor'}
{'Recall': 0.43478260869565216, 'fp': 0, 'Threshold': '75', 'Accuracy': 0.8796296296296297, 'Precision': 1.0, 'fn': 13, 'Fscore': 0.6060606060606061, 'tn': 85, 'tp': 10, 'DetectionRate': 95.06806282722513, 'Name': 'game-dldr-trymedia'}
{'Recall': 1.0, 'fp': 13, 'Threshold': '75', 'Accuracy': 0.8796296296296297, 'Precision': 0.1875, 'fn': 0, 'Fscore': 0.3157894736842105, 'tn': 92, 'tp': 3, 'DetectionRate': 108.0, 'Name': 'adspy'}
{'Recall': 0.9090909090909091, 'fp': 13, 'Threshold': '75', 'Accuracy': 0.8703703703703703, 'Precision': 0.43478260869565216, 'fn': 1, 'Fscore': 0.5882352941176471, 'tn': 84, 'tp': 10, 'DetectionRate': 107.00523560209425, 'Name': 'w32-virut'}
{'Recall': 0.3333333333333333, 'fp': 0, 'Threshold': '75', 'Accuracy': 0.9814814814814815, 'Precision': 1.0, 'fn': 2, 'Fscore': 0.5, 'tn': 105, 'tp': 1, 'DetectionRate': 106.01047120418848, 'Name': 'tr-drop-'}
{'Recall': 1.0, 'fp': 2, 'Threshold': '75', 'Accuracy': 0.9814814814814815, 'Precision': 0.8823529411764706, 'fn': 0, 'Fscore': 0.9375, 'tn': 91, 'tp': 15, 'DetectionRate': 108.0, 'Name': 'game-dldr-fenomen'}
{'Recall': 1.0, 'fp': 0, 'Threshold': '75', 'Accuracy': 1.0, 'Precision': 1.0, 'fn': 0, 'Fscore': 1.0, 'tn': 104, 'tp': 4, 'DetectionRate': 108.0, 'Name': 'bds-hupigon'}
{'Recall': 0.3333333333333333, 'DetectionRate': 106.01047120418848, 'Threshold': '76', 'Accuracy': 0.9814814814814815, 'fp': 0, 'fn': 2, 'Fscore': 0.5, 'Precision': 1.0, 'Name': 'tr-drop-', 'tn': 105, 'tp': 1}
{'Recall': 1.0, 'DetectionRate': 108.0, 'Threshold': '76', 'Accuracy': 0.9814814814814815, 'fp': 2, 'fn': 0, 'Fscore': 0.9375, 'Precision': 0.8823529411764706, 'Name': 'game-dldr-fenomen', 'tn': 91, 'tp': 15}
{'Recall': 0.5517241379310345, 'DetectionRate': 95.06806282722513, 'Threshold': '76', 'Accuracy': 0.8703703703703703, 'fp': 1, 'fn': 13, 'Fscore': 0.6956521739130435, 'Precision': 0.9411764705882353, 'Name': 'worm-allaple', 'tn': 78, 'tp': 16}
{'Recall': 1.0, 'DetectionRate': 108.0, 'Threshold': '76', 'Accuracy': 1.0, 'fp': 0, 'fn': 0, 'Fscore': 1.0, 'Precision': 1.0, 'Name': 'bds-udr', 'tn': 95, 'tp': 13}
{'Recall': 1.0, 'DetectionRate': 108.0, 'Threshold': '76', 'Accuracy': 1.0, 'fp': 0, 'fn': 0, 'Fscore': 1.0, 'Precision': 1.0, 'Name': 'tr-dldr-swizzor', 'tn': 106, 'tp': 2}
{'Recall': 1.0, 'DetectionRate': 108.0, 'Threshold': '76', 'Accuracy': 1.0, 'fp': 0, 'fn': 0, 'Fscore': 1.0, 'Precision': 1.0, 'Name': 'bds-hupigon', 'tn': 104, 'tp': 4}
{'Recall': 1.0, 'DetectionRate': 108.0, 'Threshold': '76', 'Accuracy': 1.0, 'fp': 0, 'fn': 0, 'Fscore': 1.0, 'Precision': 1.0, 'Name': 'tr-dropper-gen', 'tn': 107, 'tp': 1}
{'Recall': 0.43478260869565216, 'DetectionRate': 95.06806282722513, 'Threshold': '76', 'Accuracy': 0.8796296296296297, 'fp': 0, 'fn': 13, 'Fscore': 0.6060606060606061, 'Precision': 1.0, 'Name': 'game-dldr-trymedia', 'tn': 85, 'tp': 10}
{'Recall': 1.0, 'DetectionRate': 108.0, 'Threshold': '76', 'Accuracy': 1.0, 'fp': 0, 'fn': 0, 'Fscore': 1.0, 'Precision': 1.0, 'Name': 'dial', 'tn': 106, 'tp': 2}
{'Recall': 1.0, 'DetectionRate': 108.0, 'Threshold': '76', 'Accuracy': 1.0, 'fp': 0, 'fn': 0, 'Fscore': 1.0, 'Precision': 1.0, 'Name': 'game-casino', 'tn': 106, 'tp': 2}
{'Recall': 1.0, 'DetectionRate': 108.0, 'Threshold': '76', 'Accuracy': 0.8796296296296297, 'fp': 13, 'fn': 0, 'Fscore': 0.3157894736842105, 'Precision': 0.1875, 'Name': 'adspy', 'tn': 92, 'tp': 3}
{'Recall': 0.9090909090909091, 'DetectionRate': 107.00523560209425, 'Threshold': '76', 'Accuracy': 0.8703703703703703, 'fp': 13, 'fn': 1, 'Fscore': 0.5882352941176471, 'Precision': 0.43478260869565216, 'Name': 'w32-virut', 'tn': 84, 'tp': 10}
{'Recall': 1.0, 'Name': 'bds-udr', 'tp': 13, 'DetectionRate': 108.0, 'Fscore': 1.0, 'Precision': 1.0, 'fp': 0, 'fn': 0, 'Threshold': '77', 'Accuracy': 1.0, 'tn': 95}
{'Recall': 1.0, 'Name': 'tr-dldr-swizzor', 'tp': 2, 'DetectionRate': 108.0, 'Fscore': 1.0, 'Precision': 1.0, 'fp': 0, 'fn': 0, 'Threshold': '77', 'Accuracy': 1.0, 'tn': 106}
{'Recall': 0.9090909090909091, 'Name': 'w32-virut', 'tp': 10, 'DetectionRate': 107.00523560209425, 'Fscore': 0.5882352941176471, 'Precision': 0.43478260869565216, 'fp': 13, 'fn': 1, 'Threshold': '77', 'Accuracy': 0.8703703703703703, 'tn': 84}
{'Recall': 1.0, 'Name': 'game-dldr-fenomen', 'tp': 15, 'DetectionRate': 108.0, 'Fscore': 0.9375, 'Precision': 0.8823529411764706, 'fp': 2, 'fn': 0, 'Threshold': '77', 'Accuracy': 0.9814814814814815, 'tn': 91}
{'Recall': 1.0, 'Name': 'game-casino', 'tp': 2, 'DetectionRate': 108.0, 'Fscore': 1.0, 'Precision': 1.0, 'fp': 0, 'fn': 0, 'Threshold': '77', 'Accuracy': 1.0, 'tn': 106}
{'Recall': 1.0, 'Name': 'bds-hupigon', 'tp': 4, 'DetectionRate': 108.0, 'Fscore': 1.0, 'Precision': 1.0, 'fp': 0, 'fn': 0, 'Threshold': '77', 'Accuracy': 1.0, 'tn': 104}
{'Recall': 0.5517241379310345, 'Name': 'worm-allaple', 'tp': 16, 'DetectionRate': 95.06806282722513, 'Fscore': 0.6956521739130435, 'Precision': 0.9411764705882353, 'fp': 1, 'fn': 13, 'Threshold': '77', 'Accuracy': 0.8703703703703703, 'tn': 78}
{'Recall': 1.0, 'Name': 'dial', 'tp': 2, 'DetectionRate': 108.0, 'Fscore': 1.0, 'Precision': 1.0, 'fp': 0, 'fn': 0, 'Threshold': '77', 'Accuracy': 1.0, 'tn': 106}
{'Recall': 0.3333333333333333, 'Name': 'tr-drop-', 'tp': 1, 'DetectionRate': 106.01047120418848, 'Fscore': 0.5, 'Precision': 1.0, 'fp': 0, 'fn': 2, 'Threshold': '77', 'Accuracy': 0.9814814814814815, 'tn': 105}
{'Recall': 0.43478260869565216, 'Name': 'game-dldr-trymedia', 'tp': 10, 'DetectionRate': 95.06806282722513, 'Fscore': 0.6060606060606061, 'Precision': 1.0, 'fp': 0, 'fn': 13, 'Threshold': '77', 'Accuracy': 0.8796296296296297, 'tn': 85}
{'Recall': 1.0, 'Name': 'adspy', 'tp': 3, 'DetectionRate': 108.0, 'Fscore': 0.3157894736842105, 'Precision': 0.1875, 'fp': 13, 'fn': 0, 'Threshold': '77', 'Accuracy': 0.8796296296296297, 'tn': 92}
{'Recall': 1.0, 'Name': 'tr-dropper-gen', 'tp': 1, 'DetectionRate': 108.0, 'Fscore': 1.0, 'Precision': 1.0, 'fp': 0, 'fn': 0, 'Threshold': '77', 'Accuracy': 1.0, 'tn': 107}
{'DetectionRate': 106.0, 'tn': 102, 'Accuracy': 1.0, 'Name': 'bds-hupigon', 'Precision': 1.0, 'Fscore': 1.0, 'tp': 4, 'Recall': 1.0, 'Threshold': '78', 'fp': 0, 'fn': 0}
{'DetectionRate': 93.06806282722513, 'tn': 83, 'Accuracy': 0.8773584905660378, 'Name': 'game-dldr-trymedia', 'Precision': 1.0, 'Fscore': 0.6060606060606061, 'tp': 10, 'Recall': 0.43478260869565216, 'Threshold': '78', 'fp': 0, 'fn': 13}
{'DetectionRate': 105.00523560209425, 'tn': 82, 'Accuracy': 0.8679245283018868, 'Name': 'w32-virut', 'Precision': 0.43478260869565216, 'Fscore': 0.5882352941176471, 'tp': 10, 'Recall': 0.9090909090909091, 'Threshold': '78', 'fp': 13, 'fn': 1}
{'DetectionRate': 106.0, 'tn': 90, 'Accuracy': 0.8773584905660378, 'Name': 'adspy', 'Precision': 0.1875, 'Fscore': 0.3157894736842105, 'tp': 3, 'Recall': 1.0, 'Threshold': '78', 'fp': 13, 'fn': 0}
{'DetectionRate': 104.01047120418848, 'tn': 103, 'Accuracy': 0.9811320754716981, 'Name': 'tr-drop-', 'Precision': 1.0, 'Fscore': 0.5, 'tp': 1, 'Recall': 0.3333333333333333, 'Threshold': '78', 'fp': 0, 'fn': 2}
{'DetectionRate': 106.0, 'tn': 104, 'Accuracy': 1.0, 'Name': 'dial', 'Precision': 1.0, 'Fscore': 1.0, 'tp': 2, 'Recall': 1.0, 'Threshold': '78', 'fp': 0, 'fn': 0}
{'DetectionRate': 93.06806282722513, 'tn': 77, 'Accuracy': 0.8679245283018868, 'Name': 'worm-allaple', 'Precision': 0.9375, 'Fscore': 0.6818181818181818, 'tp': 15, 'Recall': 0.5357142857142857, 'Threshold': '78', 'fp': 1, 'fn': 13}
{'DetectionRate': 106.0, 'tn': 104, 'Accuracy': 1.0, 'Name': 'game-casino', 'Precision': 1.0, 'Fscore': 1.0, 'tp': 2, 'Recall': 1.0, 'Threshold': '78', 'fp': 0, 'fn': 0}
{'DetectionRate': 106.0, 'tn': 89, 'Accuracy': 0.9811320754716981, 'Name': 'game-dldr-fenomen', 'Precision': 0.8823529411764706, 'Fscore': 0.9375, 'tp': 15, 'Recall': 1.0, 'Threshold': '78', 'fp': 2, 'fn': 0}
{'DetectionRate': 106.0, 'tn': 104, 'Accuracy': 1.0, 'Name': 'tr-dldr-swizzor', 'Precision': 1.0, 'Fscore': 1.0, 'tp': 2, 'Recall': 1.0, 'Threshold': '78', 'fp': 0, 'fn': 0}
{'DetectionRate': 106.0, 'tn': 93, 'Accuracy': 1.0, 'Name': 'bds-udr', 'Precision': 1.0, 'Fscore': 1.0, 'tp': 13, 'Recall': 1.0, 'Threshold': '78', 'fp': 0, 'fn': 0}
{'tn': 102, 'Precision': 1.0, 'Accuracy': 1.0, 'tp': 2, 'fp': 0, 'Recall': 1.0, 'Threshold': '79', 'DetectionRate': 104.0, 'Name': 'dial', 'Fscore': 1.0, 'fn': 0}
{'tn': 80, 'Precision': 0.43478260869565216, 'Accuracy': 0.8653846153846154, 'tp': 10, 'fp': 13, 'Recall': 0.9090909090909091, 'Threshold': '79', 'DetectionRate': 103.00523560209425, 'Name': 'w32-virut', 'Fscore': 0.5882352941176471, 'fn': 1}
{'tn': 87, 'Precision': 0.8823529411764706, 'Accuracy': 0.9807692307692307, 'tp': 15, 'fp': 2, 'Recall': 1.0, 'Threshold': '79', 'DetectionRate': 104.0, 'Name': 'game-dldr-fenomen', 'Fscore': 0.9375, 'fn': 0}
{'tn': 102, 'Precision': 1.0, 'Accuracy': 1.0, 'tp': 2, 'fp': 0, 'Recall': 1.0, 'Threshold': '79', 'DetectionRate': 104.0, 'Name': 'tr-dldr-swizzor', 'Fscore': 1.0, 'fn': 0}
{'tn': 101, 'Precision': 1.0, 'Accuracy': 1.0, 'tp': 3, 'fp': 0, 'Recall': 1.0, 'Threshold': '79', 'DetectionRate': 104.0, 'Name': 'bds-hupigon', 'Fscore': 1.0, 'fn': 0}
{'tn': 91, 'Precision': 1.0, 'Accuracy': 1.0, 'tp': 13, 'fp': 0, 'Recall': 1.0, 'Threshold': '79', 'DetectionRate': 104.0, 'Name': 'bds-udr', 'Fscore': 1.0, 'fn': 0}
{'tn': 101, 'Precision': 1.0, 'Accuracy': 0.9807692307692307, 'tp': 1, 'fp': 0, 'Recall': 0.3333333333333333, 'Threshold': '79', 'DetectionRate': 102.01047120418848, 'Name': 'tr-drop-', 'Fscore': 0.5, 'fn': 2}
{'tn': 88, 'Precision': 0.1875, 'Accuracy': 0.875, 'tp': 3, 'fp': 13, 'Recall': 1.0, 'Threshold': '79', 'DetectionRate': 104.0, 'Name': 'adspy', 'Fscore': 0.3157894736842105, 'fn': 0}
{'tn': 76, 'Precision': 0.9333333333333333, 'Accuracy': 0.8653846153846154, 'tp': 14, 'fp': 1, 'Recall': 0.5185185185185185, 'Threshold': '79', 'DetectionRate': 91.06806282722513, 'Name': 'worm-allaple', 'Fscore': 0.6666666666666667, 'fn': 13}
{'tn': 102, 'Precision': 1.0, 'Accuracy': 1.0, 'tp': 2, 'fp': 0, 'Recall': 1.0, 'Threshold': '79', 'DetectionRate': 104.0, 'Name': 'game-casino', 'Fscore': 1.0, 'fn': 0}
{'tn': 81, 'Precision': 1.0, 'Accuracy': 0.875, 'tp': 10, 'fp': 0, 'Recall': 0.43478260869565216, 'Threshold': '79', 'DetectionRate': 91.06806282722513, 'Name': 'game-dldr-trymedia', 'Fscore': 0.6060606060606061, 'fn': 13}
{'Recall': 1.0, 'fp': 13, 'Threshold': '80', 'fn': 0, 'Precision': 0.1875, 'Accuracy': 0.875, 'Name': 'adspy', 'tp': 3, 'DetectionRate': 104.0, 'Fscore': 0.3157894736842105, 'tn': 88}
{'Recall': 1.0, 'fp': 2, 'Threshold': '80', 'fn': 0, 'Precision': 0.8823529411764706, 'Accuracy': 0.9807692307692307, 'Name': 'game-dldr-fenomen', 'tp': 15, 'DetectionRate': 104.0, 'Fscore': 0.9375, 'tn': 87}
{'Recall': 0.3333333333333333, 'fp': 0, 'Threshold': '80', 'fn': 2, 'Precision': 1.0, 'Accuracy': 0.9807692307692307, 'Name': 'tr-drop-', 'tp': 1, 'DetectionRate': 102.01047120418848, 'Fscore': 0.5, 'tn': 101}
{'Recall': 0.43478260869565216, 'fp': 0, 'Threshold': '80', 'fn': 13, 'Precision': 1.0, 'Accuracy': 0.875, 'Name': 'game-dldr-trymedia', 'tp': 10, 'DetectionRate': 91.06806282722513, 'Fscore': 0.6060606060606061, 'tn': 81}
{'Recall': 0.9090909090909091, 'fp': 13, 'Threshold': '80', 'fn': 1, 'Precision': 0.43478260869565216, 'Accuracy': 0.8653846153846154, 'Name': 'w32-virut', 'tp': 10, 'DetectionRate': 103.00523560209425, 'Fscore': 0.5882352941176471, 'tn': 80}
{'Recall': 1.0, 'fp': 0, 'Threshold': '80', 'fn': 0, 'Precision': 1.0, 'Accuracy': 1.0, 'Name': 'bds-hupigon', 'tp': 3, 'DetectionRate': 104.0, 'Fscore': 1.0, 'tn': 101}
{'Recall': 1.0, 'fp': 0, 'Threshold': '80', 'fn': 0, 'Precision': 1.0, 'Accuracy': 1.0, 'Name': 'bds-udr', 'tp': 13, 'DetectionRate': 104.0, 'Fscore': 1.0, 'tn': 91}
{'Recall': 0.5185185185185185, 'fp': 1, 'Threshold': '80', 'fn': 13, 'Precision': 0.9333333333333333, 'Accuracy': 0.8653846153846154, 'Name': 'worm-allaple', 'tp': 14, 'DetectionRate': 91.06806282722513, 'Fscore': 0.6666666666666667, 'tn': 76}
{'Recall': 1.0, 'fp': 0, 'Threshold': '80', 'fn': 0, 'Precision': 1.0, 'Accuracy': 1.0, 'Name': 'dial', 'tp': 2, 'DetectionRate': 104.0, 'Fscore': 1.0, 'tn': 102}
{'Recall': 1.0, 'fp': 0, 'Threshold': '80', 'fn': 0, 'Precision': 1.0, 'Accuracy': 1.0, 'Name': 'game-casino', 'tp': 2, 'DetectionRate': 104.0, 'Fscore': 1.0, 'tn': 102}
{'Recall': 1.0, 'fp': 0, 'Threshold': '80', 'fn': 0, 'Precision': 1.0, 'Accuracy': 1.0, 'Name': 'tr-dldr-swizzor', 'tp': 2, 'DetectionRate': 104.0, 'Fscore': 1.0, 'tn': 102}
{'Precision': 0.9333333333333333, 'Recall': 0.5185185185185185, 'Accuracy': 0.8640776699029126, 'Threshold': '81', 'fp': 1, 'Name': 'worm-allaple', 'tn': 75, 'tp': 14, 'DetectionRate': 90.06806282722513, 'Fscore': 0.6666666666666667, 'fn': 13}
{'Precision': 0.43478260869565216, 'Recall': 0.9090909090909091, 'Accuracy': 0.8640776699029126, 'Threshold': '81', 'fp': 13, 'Name': 'w32-virut', 'tn': 79, 'tp': 10, 'DetectionRate': 102.00523560209425, 'Fscore': 0.5882352941176471, 'fn': 1}
{'Precision': 1.0, 'Recall': 1.0, 'Accuracy': 1.0, 'Threshold': '81', 'fp': 0, 'Name': 'tr-dldr-swizzor', 'tn': 102, 'tp': 1, 'DetectionRate': 103.0, 'Fscore': 1.0, 'fn': 0}
{'Precision': 1.0, 'Recall': 1.0, 'Accuracy': 1.0, 'Threshold': '81', 'fp': 0, 'Name': 'dial', 'tn': 101, 'tp': 2, 'DetectionRate': 103.0, 'Fscore': 1.0, 'fn': 0}
{'Precision': 1.0, 'Recall': 0.3333333333333333, 'Accuracy': 0.9805825242718447, 'Threshold': '81', 'fp': 0, 'Name': 'tr-drop-', 'tn': 100, 'tp': 1, 'DetectionRate': 101.01047120418848, 'Fscore': 0.5, 'fn': 2}
{'Precision': 0.1875, 'Recall': 1.0, 'Accuracy': 0.8737864077669902, 'Threshold': '81', 'fp': 13, 'Name': 'adspy', 'tn': 87, 'tp': 3, 'DetectionRate': 103.0, 'Fscore': 0.3157894736842105, 'fn': 0}
{'Precision': 1.0, 'Recall': 1.0, 'Accuracy': 1.0, 'Threshold': '81', 'fp': 0, 'Name': 'game-casino', 'tn': 101, 'tp': 2, 'DetectionRate': 103.0, 'Fscore': 1.0, 'fn': 0}
{'Precision': 1.0, 'Recall': 0.43478260869565216, 'Accuracy': 0.8737864077669902, 'Threshold': '81', 'fp': 0, 'Name': 'game-dldr-trymedia', 'tn': 80, 'tp': 10, 'DetectionRate': 90.06806282722513, 'Fscore': 0.6060606060606061, 'fn': 13}
{'Precision': 1.0, 'Recall': 1.0, 'Accuracy': 1.0, 'Threshold': '81', 'fp': 0, 'Name': 'bds-udr', 'tn': 90, 'tp': 13, 'DetectionRate': 103.0, 'Fscore': 1.0, 'fn': 0}
{'Precision': 0.8823529411764706, 'Recall': 1.0, 'Accuracy': 0.9805825242718447, 'Threshold': '81', 'fp': 2, 'Name': 'game-dldr-fenomen', 'tn': 86, 'tp': 15, 'DetectionRate': 103.0, 'Fscore': 0.9375, 'fn': 0}
{'Precision': 1.0, 'Recall': 1.0, 'Accuracy': 1.0, 'Threshold': '81', 'fp': 0, 'Name': 'bds-hupigon', 'tn': 100, 'tp': 3, 'DetectionRate': 103.0, 'Fscore': 1.0, 'fn': 0}
{'Accuracy': 0.8686868686868687, 'Threshold': '82', 'Recall': 0.5, 'Precision': 0.9230769230769231, 'fn': 12, 'DetectionRate': 87.06282722513089, 'fp': 1, 'Fscore': 0.6486486486486487, 'Name': 'worm-allaple', 'tn': 74, 'tp': 12}
{'Accuracy': 0.8686868686868687, 'Threshold': '82', 'Recall': 1.0, 'Precision': 0.1875, 'fn': 0, 'DetectionRate': 99.0, 'fp': 13, 'Fscore': 0.3157894736842105, 'Name': 'adspy', 'tn': 83, 'tp': 3}
{'Accuracy': 0.8686868686868687, 'Threshold': '82', 'Recall': 0.43478260869565216, 'Precision': 1.0, 'fn': 13, 'DetectionRate': 86.06806282722513, 'fp': 0, 'Fscore': 0.6060606060606061, 'Name': 'game-dldr-trymedia', 'tn': 76, 'tp': 10}
{'Accuracy': 0.9797979797979798, 'Threshold': '82', 'Recall': 1.0, 'Precision': 0.8823529411764706, 'fn': 0, 'DetectionRate': 99.0, 'fp': 2, 'Fscore': 0.9375, 'Name': 'game-dldr-fenomen', 'tn': 82, 'tp': 15}
{'Accuracy': 1.0, 'Threshold': '82', 'Recall': 1.0, 'Precision': 1.0, 'fn': 0, 'DetectionRate': 99.0, 'fp': 0, 'Fscore': 1.0, 'Name': 'bds-hupigon', 'tn': 96, 'tp': 3}
{'Accuracy': 1.0, 'Threshold': '82', 'Recall': 1.0, 'Precision': 1.0, 'fn': 0, 'DetectionRate': 99.0, 'fp': 0, 'Fscore': 1.0, 'Name': 'dial', 'tn': 97, 'tp': 2}
{'Accuracy': 1.0, 'Threshold': '82', 'Recall': 1.0, 'Precision': 1.0, 'fn': 0, 'DetectionRate': 99.0, 'fp': 0, 'Fscore': 1.0, 'Name': 'game-casino', 'tn': 97, 'tp': 2}
{'Accuracy': 0.8686868686868687, 'Threshold': '82', 'Recall': 0.9090909090909091, 'Precision': 0.45454545454545453, 'fn': 1, 'DetectionRate': 98.00523560209425, 'fp': 12, 'Fscore': 0.6060606060606061, 'Name': 'w32-virut', 'tn': 76, 'tp': 10}
{'Accuracy': 1.0, 'Threshold': '82', 'Recall': 1.0, 'Precision': 1.0, 'fn': 0, 'DetectionRate': 99.0, 'fp': 0, 'Fscore': 1.0, 'Name': 'bds-udr', 'tn': 86, 'tp': 13}
{'Accuracy': 0.9797979797979798, 'Threshold': '82', 'Recall': 0.3333333333333333, 'Precision': 1.0, 'fn': 2, 'DetectionRate': 97.01047120418848, 'fp': 0, 'Fscore': 0.5, 'Name': 'tr-drop-', 'tn': 96, 'tp': 1}
{'tp': 13, 'Recall': 1.0, 'DetectionRate': 99.0, 'Name': 'bds-udr', 'fn': 0, 'Precision': 1.0, 'fp': 0, 'tn': 86, 'Fscore': 1.0, 'Accuracy': 1.0, 'Threshold': '83'}
{'tp': 2, 'Recall': 1.0, 'DetectionRate': 99.0, 'Name': 'dial', 'fn': 0, 'Precision': 1.0, 'fp': 0, 'tn': 97, 'Fscore': 1.0, 'Accuracy': 1.0, 'Threshold': '83'}
{'tp': 1, 'Recall': 0.3333333333333333, 'DetectionRate': 97.01047120418848, 'Name': 'tr-drop-', 'fn': 2, 'Precision': 1.0, 'fp': 0, 'tn': 96, 'Fscore': 0.5, 'Accuracy': 0.9797979797979798, 'Threshold': '83'}
{'tp': 3, 'Recall': 1.0, 'DetectionRate': 99.0, 'Name': 'bds-hupigon', 'fn': 0, 'Precision': 1.0, 'fp': 0, 'tn': 96, 'Fscore': 1.0, 'Accuracy': 1.0, 'Threshold': '83'}
{'tp': 3, 'Recall': 1.0, 'DetectionRate': 99.0, 'Name': 'adspy', 'fn': 0, 'Precision': 0.1875, 'fp': 13, 'tn': 83, 'Fscore': 0.3157894736842105, 'Accuracy': 0.8686868686868687, 'Threshold': '83'}
{'tp': 12, 'Recall': 0.5, 'DetectionRate': 87.06282722513089, 'Name': 'worm-allaple', 'fn': 12, 'Precision': 0.9230769230769231, 'fp': 1, 'tn': 74, 'Fscore': 0.6486486486486487, 'Accuracy': 0.8686868686868687, 'Threshold': '83'}
{'tp': 10, 'Recall': 0.43478260869565216, 'DetectionRate': 86.06806282722513, 'Name': 'game-dldr-trymedia', 'fn': 13, 'Precision': 1.0, 'fp': 0, 'tn': 76, 'Fscore': 0.6060606060606061, 'Accuracy': 0.8686868686868687, 'Threshold': '83'}
{'tp': 15, 'Recall': 1.0, 'DetectionRate': 99.0, 'Name': 'game-dldr-fenomen', 'fn': 0, 'Precision': 0.8823529411764706, 'fp': 2, 'tn': 82, 'Fscore': 0.9375, 'Accuracy': 0.9797979797979798, 'Threshold': '83'}
{'tp': 2, 'Recall': 1.0, 'DetectionRate': 99.0, 'Name': 'game-casino', 'fn': 0, 'Precision': 1.0, 'fp': 0, 'tn': 97, 'Fscore': 1.0, 'Accuracy': 1.0, 'Threshold': '83'}
{'tp': 10, 'Recall': 0.9090909090909091, 'DetectionRate': 98.00523560209425, 'Name': 'w32-virut', 'fn': 1, 'Precision': 0.45454545454545453, 'fp': 12, 'tn': 76, 'Fscore': 0.6060606060606061, 'Accuracy': 0.8686868686868687, 'Threshold': '83'}
{'fp': 13, 'Precision': 0.1875, 'tn': 83, 'Threshold': '84', 'DetectionRate': 99.0, 'tp': 3, 'Fscore': 0.3157894736842105, 'Name': 'adspy', 'Accuracy': 0.8686868686868687, 'Recall': 1.0, 'fn': 0}
{'fp': 0, 'Precision': 1.0, 'tn': 76, 'Threshold': '84', 'DetectionRate': 86.06806282722513, 'tp': 10, 'Fscore': 0.6060606060606061, 'Name': 'game-dldr-trymedia', 'Accuracy': 0.8686868686868687, 'Recall': 0.43478260869565216, 'fn': 13}
{'fp': 12, 'Precision': 0.45454545454545453, 'tn': 76, 'Threshold': '84', 'DetectionRate': 98.00523560209425, 'tp': 10, 'Fscore': 0.6060606060606061, 'Name': 'w32-virut', 'Accuracy': 0.8686868686868687, 'Recall': 0.9090909090909091, 'fn': 1}
{'fp': 2, 'Precision': 0.8823529411764706, 'tn': 82, 'Threshold': '84', 'DetectionRate': 99.0, 'tp': 15, 'Fscore': 0.9375, 'Name': 'game-dldr-fenomen', 'Accuracy': 0.9797979797979798, 'Recall': 1.0, 'fn': 0}
{'fp': 0, 'Precision': 1.0, 'tn': 86, 'Threshold': '84', 'DetectionRate': 99.0, 'tp': 13, 'Fscore': 1.0, 'Name': 'bds-udr', 'Accuracy': 1.0, 'Recall': 1.0, 'fn': 0}
{'fp': 0, 'Precision': 1.0, 'tn': 97, 'Threshold': '84', 'DetectionRate': 99.0, 'tp': 2, 'Fscore': 1.0, 'Name': 'dial', 'Accuracy': 1.0, 'Recall': 1.0, 'fn': 0}
{'fp': 0, 'Precision': 1.0, 'tn': 97, 'Threshold': '84', 'DetectionRate': 99.0, 'tp': 2, 'Fscore': 1.0, 'Name': 'game-casino', 'Accuracy': 1.0, 'Recall': 1.0, 'fn': 0}
{'fp': 1, 'Precision': 0.9230769230769231, 'tn': 74, 'Threshold': '84', 'DetectionRate': 87.06282722513089, 'tp': 12, 'Fscore': 0.6486486486486487, 'Name': 'worm-allaple', 'Accuracy': 0.8686868686868687, 'Recall': 0.5, 'fn': 12}
{'fp': 0, 'Precision': 1.0, 'tn': 96, 'Threshold': '84', 'DetectionRate': 99.0, 'tp': 3, 'Fscore': 1.0, 'Name': 'bds-hupigon', 'Accuracy': 1.0, 'Recall': 1.0, 'fn': 0}
{'fp': 0, 'Precision': 1.0, 'tn': 96, 'Threshold': '84', 'DetectionRate': 97.01047120418848, 'tp': 1, 'Fscore': 0.5, 'Name': 'tr-drop-', 'Accuracy': 0.9797979797979798, 'Recall': 0.3333333333333333, 'fn': 2}
{'Precision': 0.45454545454545453, 'tp': 10, 'Name': 'w32-virut', 'Fscore': 0.6060606060606061, 'Recall': 0.9090909090909091, 'fp': 12, 'tn': 76, 'fn': 1, 'DetectionRate': 98.00523560209425, 'Threshold': '85', 'Accuracy': 0.8686868686868687}
{'Precision': 0.1875, 'tp': 3, 'Name': 'adspy', 'Fscore': 0.3157894736842105, 'Recall': 1.0, 'fp': 13, 'tn': 83, 'fn': 0, 'DetectionRate': 99.0, 'Threshold': '85', 'Accuracy': 0.8686868686868687}
{'Precision': 0.8823529411764706, 'tp': 15, 'Name': 'game-dldr-fenomen', 'Fscore': 0.9375, 'Recall': 1.0, 'fp': 2, 'tn': 82, 'fn': 0, 'DetectionRate': 99.0, 'Threshold': '85', 'Accuracy': 0.9797979797979798}
{'Precision': 0.9230769230769231, 'tp': 12, 'Name': 'worm-allaple', 'Fscore': 0.6486486486486487, 'Recall': 0.5, 'fp': 1, 'tn': 74, 'fn': 12, 'DetectionRate': 87.06282722513089, 'Threshold': '85', 'Accuracy': 0.8686868686868687}
{'Precision': 1.0, 'tp': 3, 'Name': 'bds-hupigon', 'Fscore': 1.0, 'Recall': 1.0, 'fp': 0, 'tn': 96, 'fn': 0, 'DetectionRate': 99.0, 'Threshold': '85', 'Accuracy': 1.0}
{'Precision': 1.0, 'tp': 2, 'Name': 'dial', 'Fscore': 1.0, 'Recall': 1.0, 'fp': 0, 'tn': 97, 'fn': 0, 'DetectionRate': 99.0, 'Threshold': '85', 'Accuracy': 1.0}
{'Precision': 1.0, 'tp': 2, 'Name': 'game-casino', 'Fscore': 1.0, 'Recall': 1.0, 'fp': 0, 'tn': 97, 'fn': 0, 'DetectionRate': 99.0, 'Threshold': '85', 'Accuracy': 1.0}
{'Precision': 1.0, 'tp': 13, 'Name': 'bds-udr', 'Fscore': 1.0, 'Recall': 1.0, 'fp': 0, 'tn': 86, 'fn': 0, 'DetectionRate': 99.0, 'Threshold': '85', 'Accuracy': 1.0}
{'Precision': 1.0, 'tp': 10, 'Name': 'game-dldr-trymedia', 'Fscore': 0.6060606060606061, 'Recall': 0.43478260869565216, 'fp': 0, 'tn': 76, 'fn': 13, 'DetectionRate': 86.06806282722513, 'Threshold': '85', 'Accuracy': 0.8686868686868687}
{'Precision': 1.0, 'tp': 1, 'Name': 'tr-drop-', 'Fscore': 0.5, 'Recall': 0.3333333333333333, 'fp': 0, 'tn': 96, 'fn': 2, 'DetectionRate': 97.01047120418848, 'Threshold': '85', 'Accuracy': 0.9797979797979798}
{'DetectionRate': 99.0, 'Precision': 1.0, 'tn': 86, 'tp': 13, 'Fscore': 1.0, 'fn': 0, 'fp': 0, 'Name': 'bds-udr', 'Accuracy': 1.0, 'Threshold': '86', 'Recall': 1.0}
{'DetectionRate': 87.06282722513089, 'Precision': 0.9230769230769231, 'tn': 74, 'tp': 12, 'Fscore': 0.6486486486486487, 'fn': 12, 'fp': 1, 'Name': 'worm-allaple', 'Accuracy': 0.8686868686868687, 'Threshold': '86', 'Recall': 0.5}
{'DetectionRate': 98.00523560209425, 'Precision': 0.45454545454545453, 'tn': 76, 'tp': 10, 'Fscore': 0.6060606060606061, 'fn': 1, 'fp': 12, 'Name': 'w32-virut', 'Accuracy': 0.8686868686868687, 'Threshold': '86', 'Recall': 0.9090909090909091}
{'DetectionRate': 99.0, 'Precision': 1.0, 'tn': 96, 'tp': 3, 'Fscore': 1.0, 'fn': 0, 'fp': 0, 'Name': 'bds-hupigon', 'Accuracy': 1.0, 'Threshold': '86', 'Recall': 1.0}
{'DetectionRate': 99.0, 'Precision': 1.0, 'tn': 97, 'tp': 2, 'Fscore': 1.0, 'fn': 0, 'fp': 0, 'Name': 'game-casino', 'Accuracy': 1.0, 'Threshold': '86', 'Recall': 1.0}
{'DetectionRate': 99.0, 'Precision': 0.8823529411764706, 'tn': 82, 'tp': 15, 'Fscore': 0.9375, 'fn': 0, 'fp': 2, 'Name': 'game-dldr-fenomen', 'Accuracy': 0.9797979797979798, 'Threshold': '86', 'Recall': 1.0}
{'DetectionRate': 99.0, 'Precision': 0.1875, 'tn': 83, 'tp': 3, 'Fscore': 0.3157894736842105, 'fn': 0, 'fp': 13, 'Name': 'adspy', 'Accuracy': 0.8686868686868687, 'Threshold': '86', 'Recall': 1.0}
{'DetectionRate': 99.0, 'Precision': 1.0, 'tn': 97, 'tp': 2, 'Fscore': 1.0, 'fn': 0, 'fp': 0, 'Name': 'dial', 'Accuracy': 1.0, 'Threshold': '86', 'Recall': 1.0}
{'DetectionRate': 86.06806282722513, 'Precision': 1.0, 'tn': 76, 'tp': 10, 'Fscore': 0.6060606060606061, 'fn': 13, 'fp': 0, 'Name': 'game-dldr-trymedia', 'Accuracy': 0.8686868686868687, 'Threshold': '86', 'Recall': 0.43478260869565216}
{'DetectionRate': 97.01047120418848, 'Precision': 1.0, 'tn': 96, 'tp': 1, 'Fscore': 0.5, 'fn': 2, 'fp': 0, 'Name': 'tr-drop-', 'Accuracy': 0.9797979797979798, 'Threshold': '86', 'Recall': 0.3333333333333333}
{'fn': 1, 'Accuracy': 0.8686868686868687, 'Name': 'w32-virut', 'tn': 76, 'tp': 10, 'Precision': 0.45454545454545453, 'Threshold': '87', 'DetectionRate': 98.00523560209425, 'Fscore': 0.6060606060606061, 'fp': 12, 'Recall': 0.9090909090909091}
{'fn': 0, 'Accuracy': 1.0, 'Name': 'bds-udr', 'tn': 86, 'tp': 13, 'Precision': 1.0, 'Threshold': '87', 'DetectionRate': 99.0, 'Fscore': 1.0, 'fp': 0, 'Recall': 1.0}
{'fn': 2, 'Accuracy': 0.9797979797979798, 'Name': 'tr-drop-', 'tn': 96, 'tp': 1, 'Precision': 1.0, 'Threshold': '87', 'DetectionRate': 97.01047120418848, 'Fscore': 0.5, 'fp': 0, 'Recall': 0.3333333333333333}
{'fn': 0, 'Accuracy': 1.0, 'Name': 'bds-hupigon', 'tn': 96, 'tp': 3, 'Precision': 1.0, 'Threshold': '87', 'DetectionRate': 99.0, 'Fscore': 1.0, 'fp': 0, 'Recall': 1.0}
{'fn': 0, 'Accuracy': 0.8686868686868687, 'Name': 'adspy', 'tn': 83, 'tp': 3, 'Precision': 0.1875, 'Threshold': '87', 'DetectionRate': 99.0, 'Fscore': 0.3157894736842105, 'fp': 13, 'Recall': 1.0}
{'fn': 0, 'Accuracy': 1.0, 'Name': 'dial', 'tn': 97, 'tp': 2, 'Precision': 1.0, 'Threshold': '87', 'DetectionRate': 99.0, 'Fscore': 1.0, 'fp': 0, 'Recall': 1.0}
{'fn': 0, 'Accuracy': 0.9797979797979798, 'Name': 'game-dldr-fenomen', 'tn': 82, 'tp': 15, 'Precision': 0.8823529411764706, 'Threshold': '87', 'DetectionRate': 99.0, 'Fscore': 0.9375, 'fp': 2, 'Recall': 1.0}
{'fn': 0, 'Accuracy': 1.0, 'Name': 'game-casino', 'tn': 97, 'tp': 2, 'Precision': 1.0, 'Threshold': '87', 'DetectionRate': 99.0, 'Fscore': 1.0, 'fp': 0, 'Recall': 1.0}
{'fn': 12, 'Accuracy': 0.8686868686868687, 'Name': 'worm-allaple', 'tn': 74, 'tp': 12, 'Precision': 0.9230769230769231, 'Threshold': '87', 'DetectionRate': 87.06282722513089, 'Fscore': 0.6486486486486487, 'fp': 1, 'Recall': 0.5}
{'fn': 13, 'Accuracy': 0.8686868686868687, 'Name': 'game-dldr-trymedia', 'tn': 76, 'tp': 10, 'Precision': 1.0, 'Threshold': '87', 'DetectionRate': 86.06806282722513, 'Fscore': 0.6060606060606061, 'fp': 0, 'Recall': 0.43478260869565216}
{'tp': 10, 'fn': 13, 'fp': 0, 'Precision': 1.0, 'Threshold': '88', 'Name': 'game-dldr-trymedia', 'DetectionRate': 85.06806282722513, 'Recall': 0.43478260869565216, 'Fscore': 0.6060606060606061, 'Accuracy': 0.8673469387755102, 'tn': 75}
{'tp': 13, 'fn': 0, 'fp': 0, 'Precision': 1.0, 'Threshold': '88', 'Name': 'bds-udr', 'DetectionRate': 98.0, 'Recall': 1.0, 'Fscore': 1.0, 'Accuracy': 1.0, 'tn': 85}
{'tp': 2, 'fn': 0, 'fp': 0, 'Precision': 1.0, 'Threshold': '88', 'Name': 'dial', 'DetectionRate': 98.0, 'Recall': 1.0, 'Fscore': 1.0, 'Accuracy': 1.0, 'tn': 96}
{'tp': 15, 'fn': 0, 'fp': 2, 'Precision': 0.8823529411764706, 'Threshold': '88', 'Name': 'game-dldr-fenomen', 'DetectionRate': 98.0, 'Recall': 1.0, 'Fscore': 0.9375, 'Accuracy': 0.9795918367346939, 'tn': 81}
{'tp': 3, 'fn': 0, 'fp': 13, 'Precision': 0.1875, 'Threshold': '88', 'Name': 'adspy', 'DetectionRate': 98.0, 'Recall': 1.0, 'Fscore': 0.3157894736842105, 'Accuracy': 0.8673469387755102, 'tn': 82}
{'tp': 9, 'fn': 1, 'fp': 12, 'Precision': 0.42857142857142855, 'Threshold': '88', 'Name': 'w32-virut', 'DetectionRate': 97.00523560209425, 'Recall': 0.9, 'Fscore': 0.5806451612903225, 'Accuracy': 0.8673469387755102, 'tn': 76}
{'tp': 1, 'fn': 2, 'fp': 0, 'Precision': 1.0, 'Threshold': '88', 'Name': 'tr-drop-', 'DetectionRate': 96.01047120418848, 'Recall': 0.3333333333333333, 'Fscore': 0.5, 'Accuracy': 0.9795918367346939, 'tn': 95}
{'tp': 12, 'fn': 12, 'fp': 1, 'Precision': 0.9230769230769231, 'Threshold': '88', 'Name': 'worm-allaple', 'DetectionRate': 86.06282722513089, 'Recall': 0.5, 'Fscore': 0.6486486486486487, 'Accuracy': 0.8673469387755102, 'tn': 73}
{'tp': 3, 'fn': 0, 'fp': 0, 'Precision': 1.0, 'Threshold': '88', 'Name': 'bds-hupigon', 'DetectionRate': 98.0, 'Recall': 1.0, 'Fscore': 1.0, 'Accuracy': 1.0, 'tn': 95}
{'tp': 2, 'fn': 0, 'fp': 0, 'Precision': 1.0, 'Threshold': '88', 'Name': 'game-casino', 'DetectionRate': 98.0, 'Recall': 1.0, 'Fscore': 1.0, 'Accuracy': 1.0, 'tn': 96}
{'tp': 3, 'Precision': 1.0, 'tn': 92, 'Name': 'bds-hupigon', 'Accuracy': 1.0, 'fp': 0, 'DetectionRate': 95.0, 'Threshold': '89', 'Recall': 1.0, 'Fscore': 1.0, 'fn': 0}
{'tp': 15, 'Precision': 0.8823529411764706, 'tn': 78, 'Name': 'game-dldr-fenomen', 'Accuracy': 0.9789473684210527, 'fp': 2, 'DetectionRate': 95.0, 'Threshold': '89', 'Recall': 1.0, 'Fscore': 0.9375, 'fn': 0}
{'tp': 1, 'Precision': 1.0, 'tn': 94, 'Name': 'game-casino', 'Accuracy': 1.0, 'fp': 0, 'DetectionRate': 95.0, 'Threshold': '89', 'Recall': 1.0, 'Fscore': 1.0, 'fn': 0}
{'tp': 10, 'Precision': 1.0, 'tn': 72, 'Name': 'game-dldr-trymedia', 'Accuracy': 0.8631578947368421, 'fp': 0, 'DetectionRate': 82.06806282722513, 'Threshold': '89', 'Recall': 0.43478260869565216, 'Fscore': 0.6060606060606061, 'fn': 13}
{'tp': 3, 'Precision': 0.1875, 'tn': 79, 'Name': 'adspy', 'Accuracy': 0.8631578947368421, 'fp': 13, 'DetectionRate': 95.0, 'Threshold': '89', 'Recall': 1.0, 'Fscore': 0.3157894736842105, 'fn': 0}
{'tp': 9, 'Precision': 0.42857142857142855, 'tn': 73, 'Name': 'w32-virut', 'Accuracy': 0.8631578947368421, 'fp': 12, 'DetectionRate': 94.00523560209425, 'Threshold': '89', 'Recall': 0.9, 'Fscore': 0.5806451612903225, 'fn': 1}
{'tp': 1, 'Precision': 1.0, 'tn': 92, 'Name': 'tr-drop-', 'Accuracy': 0.9789473684210527, 'fp': 0, 'DetectionRate': 93.01047120418848, 'Threshold': '89', 'Recall': 0.3333333333333333, 'Fscore': 0.5, 'fn': 2}
{'tp': 2, 'Precision': 1.0, 'tn': 93, 'Name': 'dial', 'Accuracy': 1.0, 'fp': 0, 'DetectionRate': 95.0, 'Threshold': '89', 'Recall': 1.0, 'Fscore': 1.0, 'fn': 0}
{'tp': 13, 'Precision': 1.0, 'tn': 82, 'Name': 'bds-udr', 'Accuracy': 1.0, 'fp': 0, 'DetectionRate': 95.0, 'Threshold': '89', 'Recall': 1.0, 'Fscore': 1.0, 'fn': 0}
{'tp': 10, 'Precision': 0.9090909090909091, 'tn': 72, 'Name': 'worm-allaple', 'Accuracy': 0.8631578947368421, 'fp': 1, 'DetectionRate': 83.06282722513089, 'Threshold': '89', 'Recall': 0.45454545454545453, 'Fscore': 0.6060606060606061, 'fn': 12}
{'Threshold': '90', 'Name': 'dial', 'Recall': 1.0, 'tp': 2, 'Accuracy': 1.0, 'Precision': 1.0, 'DetectionRate': 95.0, 'Fscore': 1.0, 'fp': 0, 'tn': 93, 'fn': 0}
{'Threshold': '90', 'Name': 'adspy', 'Recall': 1.0, 'tp': 3, 'Accuracy': 0.8631578947368421, 'Precision': 0.1875, 'DetectionRate': 95.0, 'Fscore': 0.3157894736842105, 'fp': 13, 'tn': 79, 'fn': 0}
{'Threshold': '90', 'Name': 'worm-allaple', 'Recall': 0.45454545454545453, 'tp': 10, 'Accuracy': 0.8631578947368421, 'Precision': 0.9090909090909091, 'DetectionRate': 83.06282722513089, 'Fscore': 0.6060606060606061, 'fp': 1, 'tn': 72, 'fn': 12}
{'Threshold': '90', 'Name': 'bds-hupigon', 'Recall': 1.0, 'tp': 3, 'Accuracy': 1.0, 'Precision': 1.0, 'DetectionRate': 95.0, 'Fscore': 1.0, 'fp': 0, 'tn': 92, 'fn': 0}
{'Threshold': '90', 'Name': 'tr-drop-', 'Recall': 0.3333333333333333, 'tp': 1, 'Accuracy': 0.9789473684210527, 'Precision': 1.0, 'DetectionRate': 93.01047120418848, 'Fscore': 0.5, 'fp': 0, 'tn': 92, 'fn': 2}
{'Threshold': '90', 'Name': 'w32-virut', 'Recall': 0.9, 'tp': 9, 'Accuracy': 0.8631578947368421, 'Precision': 0.42857142857142855, 'DetectionRate': 94.00523560209425, 'Fscore': 0.5806451612903225, 'fp': 12, 'tn': 73, 'fn': 1}
{'Threshold': '90', 'Name': 'game-dldr-fenomen', 'Recall': 1.0, 'tp': 15, 'Accuracy': 0.9789473684210527, 'Precision': 0.8823529411764706, 'DetectionRate': 95.0, 'Fscore': 0.9375, 'fp': 2, 'tn': 78, 'fn': 0}
{'Threshold': '90', 'Name': 'game-casino', 'Recall': 1.0, 'tp': 1, 'Accuracy': 1.0, 'Precision': 1.0, 'DetectionRate': 95.0, 'Fscore': 1.0, 'fp': 0, 'tn': 94, 'fn': 0}
{'Threshold': '90', 'Name': 'game-dldr-trymedia', 'Recall': 0.43478260869565216, 'tp': 10, 'Accuracy': 0.8631578947368421, 'Precision': 1.0, 'DetectionRate': 82.06806282722513, 'Fscore': 0.6060606060606061, 'fp': 0, 'tn': 72, 'fn': 13}
{'Threshold': '90', 'Name': 'bds-udr', 'Recall': 1.0, 'tp': 13, 'Accuracy': 1.0, 'Precision': 1.0, 'DetectionRate': 95.0, 'Fscore': 1.0, 'fp': 0, 'tn': 82, 'fn': 0}
{'Threshold': '91', 'DetectionRate': 94.00523560209425, 'fn': 1, 'fp': 12, 'Recall': 0.9, 'tn': 73, 'Accuracy': 0.8631578947368421, 'Precision': 0.42857142857142855, 'tp': 9, 'Fscore': 0.5806451612903225, 'Name': 'w32-virut'}
{'Threshold': '91', 'DetectionRate': 83.06282722513089, 'fn': 12, 'fp': 1, 'Recall': 0.45454545454545453, 'tn': 72, 'Accuracy': 0.8631578947368421, 'Precision': 0.9090909090909091, 'tp': 10, 'Fscore': 0.6060606060606061, 'Name': 'worm-allaple'}
{'Threshold': '91', 'DetectionRate': 95.0, 'fn': 0, 'fp': 0, 'Recall': 1.0, 'tn': 94, 'Accuracy': 1.0, 'Precision': 1.0, 'tp': 1, 'Fscore': 1.0, 'Name': 'game-casino'}
{'Threshold': '91', 'DetectionRate': 95.0, 'fn': 0, 'fp': 13, 'Recall': 1.0, 'tn': 79, 'Accuracy': 0.8631578947368421, 'Precision': 0.1875, 'tp': 3, 'Fscore': 0.3157894736842105, 'Name': 'adspy'}
{'Threshold': '91', 'DetectionRate': 95.0, 'fn': 0, 'fp': 2, 'Recall': 1.0, 'tn': 78, 'Accuracy': 0.9789473684210527, 'Precision': 0.8823529411764706, 'tp': 15, 'Fscore': 0.9375, 'Name': 'game-dldr-fenomen'}
{'Threshold': '91', 'DetectionRate': 95.0, 'fn': 0, 'fp': 0, 'Recall': 1.0, 'tn': 92, 'Accuracy': 1.0, 'Precision': 1.0, 'tp': 3, 'Fscore': 1.0, 'Name': 'bds-hupigon'}
{'Threshold': '91', 'DetectionRate': 82.06806282722513, 'fn': 13, 'fp': 0, 'Recall': 0.43478260869565216, 'tn': 72, 'Accuracy': 0.8631578947368421, 'Precision': 1.0, 'tp': 10, 'Fscore': 0.6060606060606061, 'Name': 'game-dldr-trymedia'}
{'Threshold': '91', 'DetectionRate': 95.0, 'fn': 0, 'fp': 0, 'Recall': 1.0, 'tn': 93, 'Accuracy': 1.0, 'Precision': 1.0, 'tp': 2, 'Fscore': 1.0, 'Name': 'dial'}
{'Threshold': '91', 'DetectionRate': 93.01047120418848, 'fn': 2, 'fp': 0, 'Recall': 0.3333333333333333, 'tn': 92, 'Accuracy': 0.9789473684210527, 'Precision': 1.0, 'tp': 1, 'Fscore': 0.5, 'Name': 'tr-drop-'}
{'Threshold': '91', 'DetectionRate': 95.0, 'fn': 0, 'fp': 0, 'Recall': 1.0, 'tn': 82, 'Accuracy': 1.0, 'Precision': 1.0, 'tp': 13, 'Fscore': 1.0, 'Name': 'bds-udr'}
{'Fscore': 0.5, 'tn': 92, 'Precision': 1.0, 'Accuracy': 0.9789473684210527, 'tp': 1, 'fn': 2, 'DetectionRate': 93.01047120418848, 'fp': 0, 'Name': 'tr-drop-', 'Recall': 0.3333333333333333, 'Threshold': '92'}
{'Fscore': 0.6060606060606061, 'tn': 72, 'Precision': 1.0, 'Accuracy': 0.8631578947368421, 'tp': 10, 'fn': 13, 'DetectionRate': 82.06806282722513, 'fp': 0, 'Name': 'game-dldr-trymedia', 'Recall': 0.43478260869565216, 'Threshold': '92'}
{'Fscore': 0.5806451612903225, 'tn': 73, 'Precision': 0.42857142857142855, 'Accuracy': 0.8631578947368421, 'tp': 9, 'fn': 1, 'DetectionRate': 94.00523560209425, 'fp': 12, 'Name': 'w32-virut', 'Recall': 0.9, 'Threshold': '92'}
{'Fscore': 1.0, 'tn': 82, 'Precision': 1.0, 'Accuracy': 1.0, 'tp': 13, 'fn': 0, 'DetectionRate': 95.0, 'fp': 0, 'Name': 'bds-udr', 'Recall': 1.0, 'Threshold': '92'}
{'Fscore': 1.0, 'tn': 93, 'Precision': 1.0, 'Accuracy': 1.0, 'tp': 2, 'fn': 0, 'DetectionRate': 95.0, 'fp': 0, 'Name': 'dial', 'Recall': 1.0, 'Threshold': '92'}
{'Fscore': 1.0, 'tn': 94, 'Precision': 1.0, 'Accuracy': 1.0, 'tp': 1, 'fn': 0, 'DetectionRate': 95.0, 'fp': 0, 'Name': 'game-casino', 'Recall': 1.0, 'Threshold': '92'}
{'Fscore': 0.9375, 'tn': 78, 'Precision': 0.8823529411764706, 'Accuracy': 0.9789473684210527, 'tp': 15, 'fn': 0, 'DetectionRate': 95.0, 'fp': 2, 'Name': 'game-dldr-fenomen', 'Recall': 1.0, 'Threshold': '92'}
{'Fscore': 0.3157894736842105, 'tn': 79, 'Precision': 0.1875, 'Accuracy': 0.8631578947368421, 'tp': 3, 'fn': 0, 'DetectionRate': 95.0, 'fp': 13, 'Name': 'adspy', 'Recall': 1.0, 'Threshold': '92'}
{'Fscore': 0.6060606060606061, 'tn': 72, 'Precision': 0.9090909090909091, 'Accuracy': 0.8631578947368421, 'tp': 10, 'fn': 12, 'DetectionRate': 83.06282722513089, 'fp': 1, 'Name': 'worm-allaple', 'Recall': 0.45454545454545453, 'Threshold': '92'}
{'Fscore': 1.0, 'tn': 92, 'Precision': 1.0, 'Accuracy': 1.0, 'tp': 3, 'fn': 0, 'DetectionRate': 95.0, 'fp': 0, 'Name': 'bds-hupigon', 'Recall': 1.0, 'Threshold': '92'}
{'Threshold': '93', 'tn': 81, 'Fscore': 1.0, 'fp': 0, 'fn': 0, 'DetectionRate': 94.0, 'Precision': 1.0, 'Name': 'bds-udr', 'Recall': 1.0, 'Accuracy': 1.0, 'tp': 13}
{'Threshold': '93', 'tn': 77, 'Fscore': 0.9375, 'fp': 2, 'fn': 0, 'DetectionRate': 94.0, 'Precision': 0.8823529411764706, 'Name': 'game-dldr-fenomen', 'Recall': 1.0, 'Accuracy': 0.9787234042553191, 'tp': 15}
{'Threshold': '93', 'tn': 71, 'Fscore': 0.6060606060606061, 'fp': 0, 'fn': 13, 'DetectionRate': 81.06806282722513, 'Precision': 1.0, 'Name': 'game-dldr-trymedia', 'Recall': 0.43478260869565216, 'Accuracy': 0.8617021276595744, 'tp': 10}
{'Threshold': '93', 'tn': 92, 'Fscore': 1.0, 'fp': 0, 'fn': 0, 'DetectionRate': 94.0, 'Precision': 1.0, 'Name': 'bds-hupigon', 'Recall': 1.0, 'Accuracy': 1.0, 'tp': 2}
{'Threshold': '93', 'tn': 93, 'Fscore': 1.0, 'fp': 0, 'fn': 0, 'DetectionRate': 94.0, 'Precision': 1.0, 'Name': 'game-casino', 'Recall': 1.0, 'Accuracy': 1.0, 'tp': 1}
{'Threshold': '93', 'tn': 92, 'Fscore': 1.0, 'fp': 0, 'fn': 0, 'DetectionRate': 94.0, 'Precision': 1.0, 'Name': 'dial', 'Recall': 1.0, 'Accuracy': 1.0, 'tp': 2}
{'Threshold': '93', 'tn': 71, 'Fscore': 0.6060606060606061, 'fp': 1, 'fn': 12, 'DetectionRate': 82.06282722513089, 'Precision': 0.9090909090909091, 'Name': 'worm-allaple', 'Recall': 0.45454545454545453, 'Accuracy': 0.8617021276595744, 'tp': 10}
{'Threshold': '93', 'tn': 78, 'Fscore': 0.3157894736842105, 'fp': 13, 'fn': 0, 'DetectionRate': 94.0, 'Precision': 0.1875, 'Name': 'adspy', 'Recall': 1.0, 'Accuracy': 0.8617021276595744, 'tp': 3}
{'Threshold': '93', 'tn': 72, 'Fscore': 0.5806451612903225, 'fp': 12, 'fn': 1, 'DetectionRate': 93.00523560209425, 'Precision': 0.42857142857142855, 'Name': 'w32-virut', 'Recall': 0.9, 'Accuracy': 0.8617021276595744, 'tp': 9}
{'Threshold': '93', 'tn': 91, 'Fscore': 0.5, 'fp': 0, 'fn': 2, 'DetectionRate': 92.01047120418848, 'Precision': 1.0, 'Name': 'tr-drop-', 'Recall': 0.3333333333333333, 'Accuracy': 0.9787234042553191, 'tp': 1}
{'Precision': 1.0, 'DetectionRate': 93.0, 'Accuracy': 1.0, 'Threshold': '94', 'fp': 0, 'fn': 0, 'Fscore': 1.0, 'tp': 2, 'Recall': 1.0, 'tn': 91, 'Name': 'dial'}
{'Precision': 0.1875, 'DetectionRate': 93.0, 'Accuracy': 0.8602150537634409, 'Threshold': '94', 'fp': 13, 'fn': 0, 'Fscore': 0.3157894736842105, 'tp': 3, 'Recall': 1.0, 'tn': 77, 'Name': 'adspy'}
{'Precision': 1.0, 'DetectionRate': 91.01047120418848, 'Accuracy': 0.978494623655914, 'Threshold': '94', 'fp': 0, 'fn': 2, 'Fscore': 0.5, 'tp': 1, 'Recall': 0.3333333333333333, 'tn': 90, 'Name': 'tr-drop-'}
{'Precision': 1.0, 'DetectionRate': 93.0, 'Accuracy': 1.0, 'Threshold': '94', 'fp': 0, 'fn': 0, 'Fscore': 1.0, 'tp': 13, 'Recall': 1.0, 'tn': 80, 'Name': 'bds-udr'}
{'Precision': 1.0, 'DetectionRate': 93.0, 'Accuracy': 1.0, 'Threshold': '94', 'fp': 0, 'fn': 0, 'Fscore': 1.0, 'tp': 1, 'Recall': 1.0, 'tn': 92, 'Name': 'game-casino'}
{'Precision': 0.8823529411764706, 'DetectionRate': 93.0, 'Accuracy': 0.978494623655914, 'Threshold': '94', 'fp': 2, 'fn': 0, 'Fscore': 0.9375, 'tp': 15, 'Recall': 1.0, 'tn': 76, 'Name': 'game-dldr-fenomen'}
{'Precision': 1.0, 'DetectionRate': 80.06806282722513, 'Accuracy': 0.8602150537634409, 'Threshold': '94', 'fp': 0, 'fn': 13, 'Fscore': 0.6060606060606061, 'tp': 10, 'Recall': 0.43478260869565216, 'tn': 70, 'Name': 'game-dldr-trymedia'}
{'Precision': 0.42857142857142855, 'DetectionRate': 92.00523560209425, 'Accuracy': 0.8602150537634409, 'Threshold': '94', 'fp': 12, 'fn': 1, 'Fscore': 0.5806451612903225, 'tp': 9, 'Recall': 0.9, 'tn': 71, 'Name': 'w32-virut'}
{'Precision': 1.0, 'DetectionRate': 93.0, 'Accuracy': 1.0, 'Threshold': '94', 'fp': 0, 'fn': 0, 'Fscore': 1.0, 'tp': 2, 'Recall': 1.0, 'tn': 91, 'Name': 'bds-hupigon'}
{'Precision': 0.9, 'DetectionRate': 81.06282722513089, 'Accuracy': 0.8602150537634409, 'Threshold': '94', 'fp': 1, 'fn': 12, 'Fscore': 0.5806451612903225, 'tp': 9, 'Recall': 0.42857142857142855, 'tn': 71, 'Name': 'worm-allaple'}
{'Threshold': '95', 'tp': 3, 'Name': 'adspy', 'Recall': 1.0, 'Accuracy': 0.8602150537634409, 'Fscore': 0.3157894736842105, 'DetectionRate': 93.0, 'fn': 0, 'Precision': 0.1875, 'tn': 77, 'fp': 13}
{'Threshold': '95', 'tp': 9, 'Name': 'w32-virut', 'Recall': 0.9, 'Accuracy': 0.8602150537634409, 'Fscore': 0.5806451612903225, 'DetectionRate': 92.00523560209425, 'fn': 1, 'Precision': 0.42857142857142855, 'tn': 71, 'fp': 12}
{'Threshold': '95', 'tp': 15, 'Name': 'game-dldr-fenomen', 'Recall': 1.0, 'Accuracy': 0.978494623655914, 'Fscore': 0.9375, 'DetectionRate': 93.0, 'fn': 0, 'Precision': 0.8823529411764706, 'tn': 76, 'fp': 2}
{'Threshold': '95', 'tp': 2, 'Name': 'dial', 'Recall': 1.0, 'Accuracy': 1.0, 'Fscore': 1.0, 'DetectionRate': 93.0, 'fn': 0, 'Precision': 1.0, 'tn': 91, 'fp': 0}
{'Threshold': '95', 'tp': 13, 'Name': 'bds-udr', 'Recall': 1.0, 'Accuracy': 1.0, 'Fscore': 1.0, 'DetectionRate': 93.0, 'fn': 0, 'Precision': 1.0, 'tn': 80, 'fp': 0}
{'Threshold': '95', 'tp': 2, 'Name': 'bds-hupigon', 'Recall': 1.0, 'Accuracy': 1.0, 'Fscore': 1.0, 'DetectionRate': 93.0, 'fn': 0, 'Precision': 1.0, 'tn': 91, 'fp': 0}
{'Threshold': '95', 'tp': 9, 'Name': 'worm-allaple', 'Recall': 0.42857142857142855, 'Accuracy': 0.8602150537634409, 'Fscore': 0.5806451612903225, 'DetectionRate': 81.06282722513089, 'fn': 12, 'Precision': 0.9, 'tn': 71, 'fp': 1}
{'Threshold': '95', 'tp': 1, 'Name': 'tr-drop-', 'Recall': 0.3333333333333333, 'Accuracy': 0.978494623655914, 'Fscore': 0.5, 'DetectionRate': 91.01047120418848, 'fn': 2, 'Precision': 1.0, 'tn': 90, 'fp': 0}
{'Threshold': '95', 'tp': 1, 'Name': 'game-casino', 'Recall': 1.0, 'Accuracy': 1.0, 'Fscore': 1.0, 'DetectionRate': 93.0, 'fn': 0, 'Precision': 1.0, 'tn': 92, 'fp': 0}
{'Threshold': '95', 'tp': 10, 'Name': 'game-dldr-trymedia', 'Recall': 0.43478260869565216, 'Accuracy': 0.8602150537634409, 'Fscore': 0.6060606060606061, 'DetectionRate': 80.06806282722513, 'fn': 13, 'Precision': 1.0, 'tn': 70, 'fp': 0}