blob: 148ebb43af69f8599b178dcc0ecc952cbe62f077 (
plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="763.964313pt" height="233.294pt" viewBox="0 0 763.964313 233.294" xmlns="http://www.w3.org/2000/svg" version="1.1">
<metadata>
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2026-08-29T21:16:09.841621</dc:date>
<dc:format>image/svg+xml</dc:format>
<dc:creator>
<cc:Agent>
<dc:title>Matplotlib v3.10.8, https://matplotlib.org/</dc:title>
</cc:Agent>
</dc:creator>
</cc:Work>
</rdf:RDF>
</metadata>
<defs>
<style type="text/css">*{stroke-linejoin: round; stroke-linecap: butt}</style>
</defs>
<g id="figure_1">
<g id="patch_1">
<path d="M 0 233.294
L 763.964313 233.294
L 763.964313 -0
L 0 -0
z
" style="fill: #ffffff"/>
</g>
<g id="axes_1">
<g id="patch_2">
<path d="M 37.090313 181.668
L 239.384466 181.668
L 239.384466 58.34
L 37.090313 58.34
z
" style="fill: #ffffff"/>
</g>
<g id="matplotlib.axis_1">
<g id="xtick_1">
<g id="line2d_1">
<defs>
<path id="md260677d5d" d="M 0 0
L 0 3.5
" style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#md260677d5d" x="46.285501" y="181.668" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_1">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="46.285501" y="194.74675" transform="rotate(-0 46.285501 194.74675)">32</text>
</g>
</g>
<g id="xtick_2">
<g id="line2d_2">
<g>
<use xlink:href="#md260677d5d" x="107.58676" y="181.668" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_2">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="107.58676" y="194.74675" transform="rotate(-0 107.58676 194.74675)">128</text>
</g>
</g>
<g id="xtick_3">
<g id="line2d_3">
<g>
<use xlink:href="#md260677d5d" x="143.445697" y="181.668" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_3">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="143.445697" y="194.74675" transform="rotate(-0 143.445697 194.74675)">288</text>
</g>
</g>
<g id="xtick_4">
<g id="line2d_4">
<g>
<use xlink:href="#md260677d5d" x="168.888018" y="181.668" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_4">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="168.888018" y="194.74675" transform="rotate(-0 168.888018 194.74675)">512</text>
</g>
</g>
<g id="xtick_5">
<g id="line2d_5">
<g>
<use xlink:href="#md260677d5d" x="204.746956" y="181.668" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_5">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="204.746956" y="194.74675" transform="rotate(-0 204.746956 194.74675)">1.2k</text>
</g>
</g>
<g id="xtick_6">
<g id="line2d_6">
<g>
<use xlink:href="#md260677d5d" x="230.189277" y="181.668" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_6">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="230.189277" y="194.74675" transform="rotate(-0 230.189277 194.74675)">2.0k</text>
</g>
</g>
<g id="text_7">
<text style="font-size: 9px; font-family: 'DejaVu Sans'; text-anchor: middle" x="138.237389" y="207.249094" transform="rotate(-0 138.237389 207.249094)">Learnable edges</text>
</g>
</g>
<g id="matplotlib.axis_2">
<g id="ytick_1">
<g id="line2d_7">
<path d="M 37.090313 176.062182
L 239.384466 176.062182
" clip-path="url(#pb22993c8c7)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_8">
<defs>
<path id="m70bfac7449" d="M 0 0
L -3.5 0
" style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#m70bfac7449" x="37.090313" y="176.062182" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_8">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="30.090313" y="179.101557" transform="rotate(-0 30.090313 179.101557)">0</text>
</g>
</g>
<g id="ytick_2">
<g id="line2d_9">
<path d="M 37.090313 153.497882
L 239.384466 153.497882
" clip-path="url(#pb22993c8c7)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_10">
<g>
<use xlink:href="#m70bfac7449" x="37.090313" y="153.497882" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_9">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="30.090313" y="156.537257" transform="rotate(-0 30.090313 156.537257)">10</text>
</g>
</g>
<g id="ytick_3">
<g id="line2d_11">
<path d="M 37.090313 130.933583
L 239.384466 130.933583
" clip-path="url(#pb22993c8c7)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_12">
<g>
<use xlink:href="#m70bfac7449" x="37.090313" y="130.933583" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_10">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="30.090313" y="133.972958" transform="rotate(-0 30.090313 133.972958)">20</text>
</g>
</g>
<g id="ytick_4">
<g id="line2d_13">
<path d="M 37.090313 108.369283
L 239.384466 108.369283
" clip-path="url(#pb22993c8c7)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_14">
<g>
<use xlink:href="#m70bfac7449" x="37.090313" y="108.369283" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_11">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="30.090313" y="111.408658" transform="rotate(-0 30.090313 111.408658)">30</text>
</g>
</g>
<g id="ytick_5">
<g id="line2d_15">
<path d="M 37.090313 85.804983
L 239.384466 85.804983
" clip-path="url(#pb22993c8c7)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_16">
<g>
<use xlink:href="#m70bfac7449" x="37.090313" y="85.804983" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_12">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="30.090313" y="88.844358" transform="rotate(-0 30.090313 88.844358)">40</text>
</g>
</g>
<g id="ytick_6">
<g id="line2d_17">
<path d="M 37.090313 63.240684
L 239.384466 63.240684
" clip-path="url(#pb22993c8c7)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_18">
<g>
<use xlink:href="#m70bfac7449" x="37.090313" y="63.240684" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_13">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="30.090313" y="66.280059" transform="rotate(-0 30.090313 66.280059)">50</text>
</g>
</g>
<g id="text_14">
<text style="font-size: 9px; font-family: 'DejaVu Sans'; text-anchor: middle" x="14.038594" y="120.004" transform="rotate(-90 14.038594 120.004)">Final classification error (%)</text>
</g>
</g>
<g id="LineCollection_1">
<path d="M 46.285501 165.485166
L 46.285501 148.561942
" clip-path="url(#pb22993c8c7)" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
<path d="M 107.58676 176.062182
L 107.58676 172.53651
" clip-path="url(#pb22993c8c7)" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
<path d="M 143.445697 176.062182
L 143.445697 172.53651
" clip-path="url(#pb22993c8c7)" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
<path d="M 168.888018 175.357047
L 168.888018 170.421107
" clip-path="url(#pb22993c8c7)" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
<path d="M 204.746956 175.357047
L 204.746956 170.421107
" clip-path="url(#pb22993c8c7)" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
<path d="M 230.189277 176.062182
L 230.189277 172.53651
" clip-path="url(#pb22993c8c7)" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
</g>
<g id="line2d_19">
<defs>
<path id="m9959c8c0c0" d="M 2 0
L -2 -0
" style="stroke: #222222"/>
</defs>
<g clip-path="url(#pb22993c8c7)">
<use xlink:href="#m9959c8c0c0" x="46.285501" y="165.485166" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m9959c8c0c0" x="107.58676" y="176.062182" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m9959c8c0c0" x="143.445697" y="176.062182" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m9959c8c0c0" x="168.888018" y="175.357047" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m9959c8c0c0" x="204.746956" y="175.357047" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m9959c8c0c0" x="230.189277" y="176.062182" style="fill: #222222; stroke: #222222"/>
</g>
</g>
<g id="line2d_20">
<g clip-path="url(#pb22993c8c7)">
<use xlink:href="#m9959c8c0c0" x="46.285501" y="148.561942" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m9959c8c0c0" x="107.58676" y="172.53651" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m9959c8c0c0" x="143.445697" y="172.53651" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m9959c8c0c0" x="168.888018" y="170.421107" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m9959c8c0c0" x="204.746956" y="170.421107" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m9959c8c0c0" x="230.189277" y="172.53651" style="fill: #222222; stroke: #222222"/>
</g>
</g>
<g id="LineCollection_2">
<path d="M 46.285501 114.480447
L 46.285501 88.625521
" clip-path="url(#pb22993c8c7)" style="fill: none; stroke: #e69f00; stroke-width: 1.15"/>
<path d="M 107.58676 107.194059
L 107.58676 84.15967
" clip-path="url(#pb22993c8c7)" style="fill: none; stroke: #e69f00; stroke-width: 1.15"/>
<path d="M 143.445697 110.954776
L 143.445697 89.089734
" clip-path="url(#pb22993c8c7)" style="fill: none; stroke: #e69f00; stroke-width: 1.15"/>
<path d="M 168.888018 95.911909
L 168.888018 74.992923
" clip-path="url(#pb22993c8c7)" style="fill: none; stroke: #e69f00; stroke-width: 1.15"/>
<path d="M 204.746956 81.104088
L 204.746956 66.766356
" clip-path="url(#pb22993c8c7)" style="fill: none; stroke: #e69f00; stroke-width: 1.15"/>
<path d="M 230.189277 76.873281
L 230.189277 63.945818
" clip-path="url(#pb22993c8c7)" style="fill: none; stroke: #e69f00; stroke-width: 1.15"/>
</g>
<g id="line2d_21">
<defs>
<path id="m2511f4f594" d="M 2 0
L -2 -0
" style="stroke: #e69f00"/>
</defs>
<g clip-path="url(#pb22993c8c7)">
<use xlink:href="#m2511f4f594" x="46.285501" y="114.480447" style="fill: #e69f00; stroke: #e69f00"/>
<use xlink:href="#m2511f4f594" x="107.58676" y="107.194059" style="fill: #e69f00; stroke: #e69f00"/>
<use xlink:href="#m2511f4f594" x="143.445697" y="110.954776" style="fill: #e69f00; stroke: #e69f00"/>
<use xlink:href="#m2511f4f594" x="168.888018" y="95.911909" style="fill: #e69f00; stroke: #e69f00"/>
<use xlink:href="#m2511f4f594" x="204.746956" y="81.104088" style="fill: #e69f00; stroke: #e69f00"/>
<use xlink:href="#m2511f4f594" x="230.189277" y="76.873281" style="fill: #e69f00; stroke: #e69f00"/>
</g>
</g>
<g id="line2d_22">
<g clip-path="url(#pb22993c8c7)">
<use xlink:href="#m2511f4f594" x="46.285501" y="88.625521" style="fill: #e69f00; stroke: #e69f00"/>
<use xlink:href="#m2511f4f594" x="107.58676" y="84.15967" style="fill: #e69f00; stroke: #e69f00"/>
<use xlink:href="#m2511f4f594" x="143.445697" y="89.089734" style="fill: #e69f00; stroke: #e69f00"/>
<use xlink:href="#m2511f4f594" x="168.888018" y="74.992923" style="fill: #e69f00; stroke: #e69f00"/>
<use xlink:href="#m2511f4f594" x="204.746956" y="66.766356" style="fill: #e69f00; stroke: #e69f00"/>
<use xlink:href="#m2511f4f594" x="230.189277" y="63.945818" style="fill: #e69f00; stroke: #e69f00"/>
</g>
</g>
<g id="LineCollection_3">
<path d="M 46.285501 165.485166
L 46.285501 149.032031
" clip-path="url(#pb22993c8c7)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
<path d="M 107.58676 176.062182
L 107.58676 172.53651
" clip-path="url(#pb22993c8c7)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
<path d="M 143.445697 175.827137
L 143.445697 171.596331
" clip-path="url(#pb22993c8c7)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
<path d="M 168.888018 175.357047
L 168.888018 170.421107
" clip-path="url(#pb22993c8c7)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
<path d="M 204.746956 175.357047
L 204.746956 170.421107
" clip-path="url(#pb22993c8c7)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
<path d="M 230.189277 175.827137
L 230.189277 172.06642
" clip-path="url(#pb22993c8c7)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
</g>
<g id="line2d_23">
<defs>
<path id="mf104b0d1c2" d="M 2 0
L -2 -0
" style="stroke: #0072b2"/>
</defs>
<g clip-path="url(#pb22993c8c7)">
<use xlink:href="#mf104b0d1c2" x="46.285501" y="165.485166" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf104b0d1c2" x="107.58676" y="176.062182" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf104b0d1c2" x="143.445697" y="175.827137" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf104b0d1c2" x="168.888018" y="175.357047" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf104b0d1c2" x="204.746956" y="175.357047" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf104b0d1c2" x="230.189277" y="175.827137" style="fill: #0072b2; stroke: #0072b2"/>
</g>
</g>
<g id="line2d_24">
<g clip-path="url(#pb22993c8c7)">
<use xlink:href="#mf104b0d1c2" x="46.285501" y="149.032031" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf104b0d1c2" x="107.58676" y="172.53651" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf104b0d1c2" x="143.445697" y="171.596331" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf104b0d1c2" x="168.888018" y="170.421107" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf104b0d1c2" x="204.746956" y="170.421107" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf104b0d1c2" x="230.189277" y="172.06642" style="fill: #0072b2; stroke: #0072b2"/>
</g>
</g>
<g id="line2d_25">
<path d="M 46.285501 157.728688
L 107.58676 174.651913
L 143.445697 174.651913
L 168.888018 173.241644
L 204.746956 173.241644
L 230.189277 174.651913
" clip-path="url(#pb22993c8c7)" style="fill: none; stroke-dasharray: 1.15,1.8975; stroke-dashoffset: 0; stroke: #222222; stroke-width: 1.15"/>
<defs>
<path id="m1008eedc9f" d="M 0 -2.25
L -2.25 2.25
L 2.25 2.25
z
" style="stroke: #222222; stroke-linejoin: miter"/>
</defs>
<g clip-path="url(#pb22993c8c7)">
<use xlink:href="#m1008eedc9f" x="46.285501" y="157.728688" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
<use xlink:href="#m1008eedc9f" x="107.58676" y="174.651913" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
<use xlink:href="#m1008eedc9f" x="143.445697" y="174.651913" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
<use xlink:href="#m1008eedc9f" x="168.888018" y="173.241644" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
<use xlink:href="#m1008eedc9f" x="204.746956" y="173.241644" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
<use xlink:href="#m1008eedc9f" x="230.189277" y="174.651913" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
</g>
</g>
<g id="line2d_26">
<path d="M 46.285501 101.317939
L 107.58676 95.44182
L 143.445697 99.907671
L 168.888018 85.334894
L 204.746956 73.817699
L 230.189277 70.292027
" clip-path="url(#pb22993c8c7)" style="fill: none; stroke-dasharray: 4.255,1.84; stroke-dashoffset: 0; stroke: #e69f00; stroke-width: 1.15"/>
<defs>
<path id="mc6ecd3d87d" d="M -2.25 2.25
L 2.25 2.25
L 2.25 -2.25
L -2.25 -2.25
z
" style="stroke: #e69f00; stroke-linejoin: miter"/>
</defs>
<g clip-path="url(#pb22993c8c7)">
<use xlink:href="#mc6ecd3d87d" x="46.285501" y="101.317939" style="fill: #e69f00; stroke: #e69f00; stroke-linejoin: miter"/>
<use xlink:href="#mc6ecd3d87d" x="107.58676" y="95.44182" style="fill: #e69f00; stroke: #e69f00; stroke-linejoin: miter"/>
<use xlink:href="#mc6ecd3d87d" x="143.445697" y="99.907671" style="fill: #e69f00; stroke: #e69f00; stroke-linejoin: miter"/>
<use xlink:href="#mc6ecd3d87d" x="168.888018" y="85.334894" style="fill: #e69f00; stroke: #e69f00; stroke-linejoin: miter"/>
<use xlink:href="#mc6ecd3d87d" x="204.746956" y="73.817699" style="fill: #e69f00; stroke: #e69f00; stroke-linejoin: miter"/>
<use xlink:href="#mc6ecd3d87d" x="230.189277" y="70.292027" style="fill: #e69f00; stroke: #e69f00; stroke-linejoin: miter"/>
</g>
</g>
<g id="line2d_27">
<path d="M 46.285501 157.963733
L 107.58676 174.651913
L 143.445697 173.946779
L 168.888018 173.241644
L 204.746956 173.241644
L 230.189277 174.181824
" clip-path="url(#pb22993c8c7)" style="fill: none; stroke: #0072b2; stroke-width: 1.7; stroke-linecap: square"/>
<defs>
<path id="m0a95ac534b" d="M 0 2.25
C 0.596707 2.25 1.169055 2.012926 1.59099 1.59099
C 2.012926 1.169055 2.25 0.596707 2.25 0
C 2.25 -0.596707 2.012926 -1.169055 1.59099 -1.59099
C 1.169055 -2.012926 0.596707 -2.25 0 -2.25
C -0.596707 -2.25 -1.169055 -2.012926 -1.59099 -1.59099
C -2.012926 -1.169055 -2.25 -0.596707 -2.25 0
C -2.25 0.596707 -2.012926 1.169055 -1.59099 1.59099
C -1.169055 2.012926 -0.596707 2.25 0 2.25
z
" style="stroke: #0072b2"/>
</defs>
<g clip-path="url(#pb22993c8c7)">
<use xlink:href="#m0a95ac534b" x="46.285501" y="157.963733" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#m0a95ac534b" x="107.58676" y="174.651913" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#m0a95ac534b" x="143.445697" y="173.946779" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#m0a95ac534b" x="168.888018" y="173.241644" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#m0a95ac534b" x="204.746956" y="173.241644" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#m0a95ac534b" x="230.189277" y="174.181824" style="fill: #0072b2; stroke: #0072b2"/>
</g>
</g>
<g id="patch_3">
<path d="M 37.090313 181.668
L 37.090313 58.34
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_4">
<path d="M 37.090312 181.668
L 239.384466 181.668
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="text_15">
<text style="font-size: 9.5px; font-family: 'DejaVu Sans'" transform="translate(73.922389 41.702078)">(a) Final classification error</text>
<text style="font-size: 9.5px; font-family: 'DejaVu Sans'" transform="translate(81.001374 52.34)">99% lower growth slope</text>
</g>
</g>
<g id="axes_2">
<g id="patch_5">
<path d="M 292.686979 181.668
L 494.981132 181.668
L 494.981132 58.34
L 292.686979 58.34
z
" style="fill: #ffffff"/>
</g>
<g id="matplotlib.axis_3">
<g id="xtick_7">
<g id="line2d_28">
<g>
<use xlink:href="#md260677d5d" x="301.882168" y="181.668" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_16">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="301.882168" y="194.74675" transform="rotate(-0 301.882168 194.74675)">32</text>
</g>
</g>
<g id="xtick_8">
<g id="line2d_29">
<g>
<use xlink:href="#md260677d5d" x="363.183427" y="181.668" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_17">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="363.183427" y="194.74675" transform="rotate(-0 363.183427 194.74675)">128</text>
</g>
</g>
<g id="xtick_9">
<g id="line2d_30">
<g>
<use xlink:href="#md260677d5d" x="399.042364" y="181.668" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_18">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="399.042364" y="194.74675" transform="rotate(-0 399.042364 194.74675)">288</text>
</g>
</g>
<g id="xtick_10">
<g id="line2d_31">
<g>
<use xlink:href="#md260677d5d" x="424.484685" y="181.668" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_19">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="424.484685" y="194.74675" transform="rotate(-0 424.484685 194.74675)">512</text>
</g>
</g>
<g id="xtick_11">
<g id="line2d_32">
<g>
<use xlink:href="#md260677d5d" x="460.343623" y="181.668" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_20">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="460.343623" y="194.74675" transform="rotate(-0 460.343623 194.74675)">1.2k</text>
</g>
</g>
<g id="xtick_12">
<g id="line2d_33">
<g>
<use xlink:href="#md260677d5d" x="485.785944" y="181.668" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_21">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="485.785944" y="194.74675" transform="rotate(-0 485.785944 194.74675)">2.0k</text>
</g>
</g>
<g id="text_22">
<text style="font-size: 9px; font-family: 'DejaVu Sans'; text-anchor: middle" x="393.834056" y="207.249094" transform="rotate(-0 393.834056 207.249094)">Learnable edges</text>
</g>
</g>
<g id="matplotlib.axis_4">
<g id="ytick_7">
<g id="line2d_34">
<path d="M 292.686979 180.439321
L 494.981132 180.439321
" clip-path="url(#p02be825de3)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_35">
<g>
<use xlink:href="#m70bfac7449" x="292.686979" y="180.439321" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_23">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="285.686979" y="183.478696" transform="rotate(-0 285.686979 183.478696)">0.0</text>
</g>
</g>
<g id="ytick_8">
<g id="line2d_36">
<path d="M 292.686979 157.02928
L 494.981132 157.02928
" clip-path="url(#p02be825de3)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_37">
<g>
<use xlink:href="#m70bfac7449" x="292.686979" y="157.02928" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_24">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="285.686979" y="160.068655" transform="rotate(-0 285.686979 160.068655)">0.1</text>
</g>
</g>
<g id="ytick_9">
<g id="line2d_38">
<path d="M 292.686979 133.61924
L 494.981132 133.61924
" clip-path="url(#p02be825de3)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_39">
<g>
<use xlink:href="#m70bfac7449" x="292.686979" y="133.61924" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_25">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="285.686979" y="136.658615" transform="rotate(-0 285.686979 136.658615)">0.2</text>
</g>
</g>
<g id="ytick_10">
<g id="line2d_40">
<path d="M 292.686979 110.209199
L 494.981132 110.209199
" clip-path="url(#p02be825de3)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_41">
<g>
<use xlink:href="#m70bfac7449" x="292.686979" y="110.209199" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_26">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="285.686979" y="113.248574" transform="rotate(-0 285.686979 113.248574)">0.3</text>
</g>
</g>
<g id="ytick_11">
<g id="line2d_42">
<path d="M 292.686979 86.799159
L 494.981132 86.799159
" clip-path="url(#p02be825de3)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_43">
<g>
<use xlink:href="#m70bfac7449" x="292.686979" y="86.799159" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_27">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="285.686979" y="89.838534" transform="rotate(-0 285.686979 89.838534)">0.4</text>
</g>
</g>
<g id="ytick_12">
<g id="line2d_44">
<path d="M 292.686979 63.389118
L 494.981132 63.389118
" clip-path="url(#p02be825de3)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_45">
<g>
<use xlink:href="#m70bfac7449" x="292.686979" y="63.389118" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_28">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="285.686979" y="66.428493" transform="rotate(-0 285.686979 66.428493)">0.5</text>
</g>
</g>
<g id="text_29">
<text style="font-size: 9px; font-family: 'DejaVu Sans'; text-anchor: middle" x="267.09276" y="120.004" transform="rotate(-90 267.09276 120.004)">Classification-error AUC</text>
</g>
</g>
<g id="LineCollection_4">
<path d="M 301.882168 160.431357
L 301.882168 142.416294
" clip-path="url(#p02be825de3)" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
<path d="M 363.183427 171.038726
L 363.183427 161.595458
" clip-path="url(#p02be825de3)" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
<path d="M 399.042364 173.032238
L 399.042364 167.850175
" clip-path="url(#p02be825de3)" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
<path d="M 424.484685 175.909722
L 424.484685 166.820042
" clip-path="url(#p02be825de3)" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
<path d="M 460.343623 174.769702
L 460.343623 167.825942
" clip-path="url(#p02be825de3)" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
<path d="M 485.785944 172.599396
L 485.785944 165.777564
" clip-path="url(#p02be825de3)" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
</g>
<g id="line2d_46">
<g clip-path="url(#p02be825de3)">
<use xlink:href="#m9959c8c0c0" x="301.882168" y="160.431357" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m9959c8c0c0" x="363.183427" y="171.038726" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m9959c8c0c0" x="399.042364" y="173.032238" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m9959c8c0c0" x="424.484685" y="175.909722" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m9959c8c0c0" x="460.343623" y="174.769702" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m9959c8c0c0" x="485.785944" y="172.599396" style="fill: #222222; stroke: #222222"/>
</g>
</g>
<g id="line2d_47">
<g clip-path="url(#p02be825de3)">
<use xlink:href="#m9959c8c0c0" x="301.882168" y="142.416294" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m9959c8c0c0" x="363.183427" y="161.595458" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m9959c8c0c0" x="399.042364" y="167.850175" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m9959c8c0c0" x="424.484685" y="166.820042" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m9959c8c0c0" x="460.343623" y="167.825942" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m9959c8c0c0" x="485.785944" y="165.777564" style="fill: #222222; stroke: #222222"/>
</g>
</g>
<g id="LineCollection_5">
<path d="M 301.882168 116.073902
L 301.882168 89.672426
" clip-path="url(#p02be825de3)" style="fill: none; stroke: #e69f00; stroke-width: 1.15"/>
<path d="M 363.183427 111.129751
L 363.183427 88.117549
" clip-path="url(#p02be825de3)" style="fill: none; stroke: #e69f00; stroke-width: 1.15"/>
<path d="M 399.042364 111.688635
L 399.042364 89.765853
" clip-path="url(#p02be825de3)" style="fill: none; stroke: #e69f00; stroke-width: 1.15"/>
<path d="M 424.484685 96.764886
L 424.484685 75.567572
" clip-path="url(#p02be825de3)" style="fill: none; stroke: #e69f00; stroke-width: 1.15"/>
<path d="M 460.343623 81.076755
L 460.343623 66.274731
" clip-path="url(#p02be825de3)" style="fill: none; stroke: #e69f00; stroke-width: 1.15"/>
<path d="M 485.785944 77.069361
L 485.785944 63.945818
" clip-path="url(#p02be825de3)" style="fill: none; stroke: #e69f00; stroke-width: 1.15"/>
</g>
<g id="line2d_48">
<g clip-path="url(#p02be825de3)">
<use xlink:href="#m2511f4f594" x="301.882168" y="116.073902" style="fill: #e69f00; stroke: #e69f00"/>
<use xlink:href="#m2511f4f594" x="363.183427" y="111.129751" style="fill: #e69f00; stroke: #e69f00"/>
<use xlink:href="#m2511f4f594" x="399.042364" y="111.688635" style="fill: #e69f00; stroke: #e69f00"/>
<use xlink:href="#m2511f4f594" x="424.484685" y="96.764886" style="fill: #e69f00; stroke: #e69f00"/>
<use xlink:href="#m2511f4f594" x="460.343623" y="81.076755" style="fill: #e69f00; stroke: #e69f00"/>
<use xlink:href="#m2511f4f594" x="485.785944" y="77.069361" style="fill: #e69f00; stroke: #e69f00"/>
</g>
</g>
<g id="line2d_49">
<g clip-path="url(#p02be825de3)">
<use xlink:href="#m2511f4f594" x="301.882168" y="89.672426" style="fill: #e69f00; stroke: #e69f00"/>
<use xlink:href="#m2511f4f594" x="363.183427" y="88.117549" style="fill: #e69f00; stroke: #e69f00"/>
<use xlink:href="#m2511f4f594" x="399.042364" y="89.765853" style="fill: #e69f00; stroke: #e69f00"/>
<use xlink:href="#m2511f4f594" x="424.484685" y="75.567572" style="fill: #e69f00; stroke: #e69f00"/>
<use xlink:href="#m2511f4f594" x="460.343623" y="66.274731" style="fill: #e69f00; stroke: #e69f00"/>
<use xlink:href="#m2511f4f594" x="485.785944" y="63.945818" style="fill: #e69f00; stroke: #e69f00"/>
</g>
</g>
<g id="LineCollection_6">
<path d="M 301.882168 160.337574
L 301.882168 142.306356
" clip-path="url(#p02be825de3)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
<path d="M 363.183427 170.941185
L 363.183427 161.351451
" clip-path="url(#p02be825de3)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
<path d="M 399.042364 172.904214
L 399.042364 167.71824
" clip-path="url(#p02be825de3)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
<path d="M 424.484685 176.062182
L 424.484685 167.427646
" clip-path="url(#p02be825de3)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
<path d="M 460.343623 174.763707
L 460.343623 167.494706
" clip-path="url(#p02be825de3)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
<path d="M 485.785944 172.619768
L 485.785944 165.720664
" clip-path="url(#p02be825de3)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
</g>
<g id="line2d_50">
<g clip-path="url(#p02be825de3)">
<use xlink:href="#mf104b0d1c2" x="301.882168" y="160.337574" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf104b0d1c2" x="363.183427" y="170.941185" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf104b0d1c2" x="399.042364" y="172.904214" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf104b0d1c2" x="424.484685" y="176.062182" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf104b0d1c2" x="460.343623" y="174.763707" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf104b0d1c2" x="485.785944" y="172.619768" style="fill: #0072b2; stroke: #0072b2"/>
</g>
</g>
<g id="line2d_51">
<g clip-path="url(#p02be825de3)">
<use xlink:href="#mf104b0d1c2" x="301.882168" y="142.306356" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf104b0d1c2" x="363.183427" y="161.351451" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf104b0d1c2" x="399.042364" y="167.71824" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf104b0d1c2" x="424.484685" y="167.427646" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf104b0d1c2" x="460.343623" y="167.494706" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf104b0d1c2" x="485.785944" y="165.720664" style="fill: #0072b2; stroke: #0072b2"/>
</g>
</g>
<g id="line2d_52">
<path d="M 301.882168 151.804696
L 363.183427 166.624958
L 399.042364 170.514439
L 424.484685 171.77029
L 460.343623 171.514243
L 485.785944 169.343937
" clip-path="url(#p02be825de3)" style="fill: none; stroke-dasharray: 1.15,1.8975; stroke-dashoffset: 0; stroke: #222222; stroke-width: 1.15"/>
<g clip-path="url(#p02be825de3)">
<use xlink:href="#m1008eedc9f" x="301.882168" y="151.804696" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
<use xlink:href="#m1008eedc9f" x="363.183427" y="166.624958" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
<use xlink:href="#m1008eedc9f" x="399.042364" y="170.514439" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
<use xlink:href="#m1008eedc9f" x="424.484685" y="171.77029" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
<use xlink:href="#m1008eedc9f" x="460.343623" y="171.514243" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
<use xlink:href="#m1008eedc9f" x="485.785944" y="169.343937" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
</g>
</g>
<g id="line2d_53">
<path d="M 301.882168 102.659868
L 363.183427 99.550722
L 399.042364 100.739513
L 424.484685 86.152944
L 460.343623 73.6493
L 485.785944 70.387745
" clip-path="url(#p02be825de3)" style="fill: none; stroke-dasharray: 4.255,1.84; stroke-dashoffset: 0; stroke: #e69f00; stroke-width: 1.15"/>
<g clip-path="url(#p02be825de3)">
<use xlink:href="#mc6ecd3d87d" x="301.882168" y="102.659868" style="fill: #e69f00; stroke: #e69f00; stroke-linejoin: miter"/>
<use xlink:href="#mc6ecd3d87d" x="363.183427" y="99.550722" style="fill: #e69f00; stroke: #e69f00; stroke-linejoin: miter"/>
<use xlink:href="#mc6ecd3d87d" x="399.042364" y="100.739513" style="fill: #e69f00; stroke: #e69f00; stroke-linejoin: miter"/>
<use xlink:href="#mc6ecd3d87d" x="424.484685" y="86.152944" style="fill: #e69f00; stroke: #e69f00; stroke-linejoin: miter"/>
<use xlink:href="#mc6ecd3d87d" x="460.343623" y="73.6493" style="fill: #e69f00; stroke: #e69f00; stroke-linejoin: miter"/>
<use xlink:href="#mc6ecd3d87d" x="485.785944" y="70.387745" style="fill: #e69f00; stroke: #e69f00; stroke-linejoin: miter"/>
</g>
</g>
<g id="line2d_54">
<path d="M 301.882168 151.757957
L 363.183427 166.478646
L 399.042364 170.386415
L 424.484685 172.042595
L 460.343623 171.335416
L 485.785944 169.319552
" clip-path="url(#p02be825de3)" style="fill: none; stroke: #0072b2; stroke-width: 1.7; stroke-linecap: square"/>
<g clip-path="url(#p02be825de3)">
<use xlink:href="#m0a95ac534b" x="301.882168" y="151.757957" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#m0a95ac534b" x="363.183427" y="166.478646" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#m0a95ac534b" x="399.042364" y="170.386415" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#m0a95ac534b" x="424.484685" y="172.042595" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#m0a95ac534b" x="460.343623" y="171.335416" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#m0a95ac534b" x="485.785944" y="169.319552" style="fill: #0072b2; stroke: #0072b2"/>
</g>
</g>
<g id="patch_6">
<path d="M 292.686979 181.668
L 292.686979 58.34
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_7">
<path d="M 292.686979 181.668
L 494.981132 181.668
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="text_30">
<text style="font-size: 9.5px; font-family: 'DejaVu Sans'" transform="translate(329.410696 41.702078)">(b) Classification-error AUC</text>
<text style="font-size: 9.5px; font-family: 'DejaVu Sans'" transform="translate(333.575853 52.34)">100% lower growth slope</text>
</g>
</g>
<g id="axes_3">
<g id="patch_8">
<path d="M 548.283646 181.668
L 750.577799 181.668
L 750.577799 58.34
L 548.283646 58.34
z
" style="fill: #ffffff"/>
</g>
<g id="matplotlib.axis_5">
<g id="xtick_13">
<g id="line2d_55">
<g>
<use xlink:href="#md260677d5d" x="557.478835" y="181.668" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_31">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="557.478835" y="194.74675" transform="rotate(-0 557.478835 194.74675)">32</text>
</g>
</g>
<g id="xtick_14">
<g id="line2d_56">
<g>
<use xlink:href="#md260677d5d" x="618.780093" y="181.668" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_32">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="618.780093" y="194.74675" transform="rotate(-0 618.780093 194.74675)">128</text>
</g>
</g>
<g id="xtick_15">
<g id="line2d_57">
<g>
<use xlink:href="#md260677d5d" x="654.639031" y="181.668" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_33">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="654.639031" y="194.74675" transform="rotate(-0 654.639031 194.74675)">288</text>
</g>
</g>
<g id="xtick_16">
<g id="line2d_58">
<g>
<use xlink:href="#md260677d5d" x="680.081352" y="181.668" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_34">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="680.081352" y="194.74675" transform="rotate(-0 680.081352 194.74675)">512</text>
</g>
</g>
<g id="xtick_17">
<g id="line2d_59">
<g>
<use xlink:href="#md260677d5d" x="715.940289" y="181.668" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_35">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="715.940289" y="194.74675" transform="rotate(-0 715.940289 194.74675)">1.2k</text>
</g>
</g>
<g id="xtick_18">
<g id="line2d_60">
<g>
<use xlink:href="#md260677d5d" x="741.38261" y="181.668" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_36">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="741.38261" y="194.74675" transform="rotate(-0 741.38261 194.74675)">2.0k</text>
</g>
</g>
<g id="text_37">
<text style="font-size: 9px; font-family: 'DejaVu Sans'; text-anchor: middle" x="649.430722" y="207.249094" transform="rotate(-0 649.430722 207.249094)">Learnable edges</text>
</g>
</g>
<g id="matplotlib.axis_6">
<g id="ytick_13">
<g id="line2d_61">
<path d="M 548.283646 176.062182
L 750.577799 176.062182
" clip-path="url(#p356e8715b4)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_62">
<g>
<use xlink:href="#m70bfac7449" x="548.283646" y="176.062182" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_38">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="541.283646" y="179.101557" transform="rotate(-0 541.283646 179.101557)">0</text>
</g>
</g>
<g id="ytick_14">
<g id="line2d_63">
<path d="M 548.283646 153.638909
L 750.577799 153.638909
" clip-path="url(#p356e8715b4)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_64">
<g>
<use xlink:href="#m70bfac7449" x="548.283646" y="153.638909" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_39">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="541.283646" y="156.678284" transform="rotate(-0 541.283646 156.678284)">20</text>
</g>
</g>
<g id="ytick_15">
<g id="line2d_65">
<path d="M 548.283646 131.215636
L 750.577799 131.215636
" clip-path="url(#p356e8715b4)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_66">
<g>
<use xlink:href="#m70bfac7449" x="548.283646" y="131.215636" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_40">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="541.283646" y="134.255011" transform="rotate(-0 541.283646 134.255011)">40</text>
</g>
</g>
<g id="ytick_16">
<g id="line2d_67">
<path d="M 548.283646 108.792364
L 750.577799 108.792364
" clip-path="url(#p356e8715b4)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_68">
<g>
<use xlink:href="#m70bfac7449" x="548.283646" y="108.792364" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_41">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="541.283646" y="111.831739" transform="rotate(-0 541.283646 111.831739)">60</text>
</g>
</g>
<g id="ytick_17">
<g id="line2d_69">
<path d="M 548.283646 86.369091
L 750.577799 86.369091
" clip-path="url(#p356e8715b4)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_70">
<g>
<use xlink:href="#m70bfac7449" x="548.283646" y="86.369091" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_42">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="541.283646" y="89.408466" transform="rotate(-0 541.283646 89.408466)">80</text>
</g>
</g>
<g id="ytick_18">
<g id="line2d_71">
<path d="M 548.283646 63.945818
L 750.577799 63.945818
" clip-path="url(#p356e8715b4)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_72">
<g>
<use xlink:href="#m70bfac7449" x="548.283646" y="63.945818" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_43">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="541.283646" y="66.985193" transform="rotate(-0 541.283646 66.985193)">100</text>
</g>
</g>
<g id="text_44">
<text style="font-size: 9px; font-family: 'DejaVu Sans'; text-anchor: middle" x="520.141927" y="120.004" transform="rotate(-90 520.141927 120.004)">Stable failure fraction (%)</text>
</g>
</g>
<g id="LineCollection_7">
<path d="M 557.478835 142.427273
L 557.478835 108.792364
" clip-path="url(#p356e8715b4)" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
<path d="M 618.780093 176.062182
L 618.780093 162.047636
" clip-path="url(#p356e8715b4)" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
<path d="M 654.639031 176.062182
L 654.639031 162.047636
" clip-path="url(#p356e8715b4)" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
<path d="M 680.081352 173.259273
L 680.081352 153.638909
" clip-path="url(#p356e8715b4)" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
<path d="M 715.940289 173.259273
L 715.940289 153.638909
" clip-path="url(#p356e8715b4)" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
<path d="M 741.38261 176.062182
L 741.38261 162.047636
" clip-path="url(#p356e8715b4)" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
</g>
<g id="line2d_73">
<g clip-path="url(#p356e8715b4)">
<use xlink:href="#m9959c8c0c0" x="557.478835" y="142.427273" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m9959c8c0c0" x="618.780093" y="176.062182" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m9959c8c0c0" x="654.639031" y="176.062182" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m9959c8c0c0" x="680.081352" y="173.259273" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m9959c8c0c0" x="715.940289" y="173.259273" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m9959c8c0c0" x="741.38261" y="176.062182" style="fill: #222222; stroke: #222222"/>
</g>
</g>
<g id="line2d_74">
<g clip-path="url(#p356e8715b4)">
<use xlink:href="#m9959c8c0c0" x="557.478835" y="108.792364" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m9959c8c0c0" x="618.780093" y="162.047636" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m9959c8c0c0" x="654.639031" y="162.047636" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m9959c8c0c0" x="680.081352" y="153.638909" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m9959c8c0c0" x="715.940289" y="153.638909" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m9959c8c0c0" x="741.38261" y="162.047636" style="fill: #222222; stroke: #222222"/>
</g>
</g>
<g id="LineCollection_8">
<path d="M 557.478835 97.580727
L 557.478835 76.091758
" clip-path="url(#p356e8715b4)" style="fill: none; stroke: #e69f00; stroke-width: 1.15"/>
<path d="M 618.780093 96.646424
L 618.780093 77.026061
" clip-path="url(#p356e8715b4)" style="fill: none; stroke: #e69f00; stroke-width: 1.15"/>
<path d="M 654.639031 90.106303
L 654.639031 74.223152
" clip-path="url(#p356e8715b4)" style="fill: none; stroke: #e69f00; stroke-width: 1.15"/>
<path d="M 680.081352 77.960364
L 680.081352 65.814424
" clip-path="url(#p356e8715b4)" style="fill: none; stroke: #e69f00; stroke-width: 1.15"/>
<path d="M 715.940289 71.420242
L 715.940289 64.880121
" clip-path="url(#p356e8715b4)" style="fill: none; stroke: #e69f00; stroke-width: 1.15"/>
<path d="M 741.38261 70.485939
L 741.38261 63.945818
" clip-path="url(#p356e8715b4)" style="fill: none; stroke: #e69f00; stroke-width: 1.15"/>
</g>
<g id="line2d_75">
<g clip-path="url(#p356e8715b4)">
<use xlink:href="#m2511f4f594" x="557.478835" y="97.580727" style="fill: #e69f00; stroke: #e69f00"/>
<use xlink:href="#m2511f4f594" x="618.780093" y="96.646424" style="fill: #e69f00; stroke: #e69f00"/>
<use xlink:href="#m2511f4f594" x="654.639031" y="90.106303" style="fill: #e69f00; stroke: #e69f00"/>
<use xlink:href="#m2511f4f594" x="680.081352" y="77.960364" style="fill: #e69f00; stroke: #e69f00"/>
<use xlink:href="#m2511f4f594" x="715.940289" y="71.420242" style="fill: #e69f00; stroke: #e69f00"/>
<use xlink:href="#m2511f4f594" x="741.38261" y="70.485939" style="fill: #e69f00; stroke: #e69f00"/>
</g>
</g>
<g id="line2d_76">
<g clip-path="url(#p356e8715b4)">
<use xlink:href="#m2511f4f594" x="557.478835" y="76.091758" style="fill: #e69f00; stroke: #e69f00"/>
<use xlink:href="#m2511f4f594" x="618.780093" y="77.026061" style="fill: #e69f00; stroke: #e69f00"/>
<use xlink:href="#m2511f4f594" x="654.639031" y="74.223152" style="fill: #e69f00; stroke: #e69f00"/>
<use xlink:href="#m2511f4f594" x="680.081352" y="65.814424" style="fill: #e69f00; stroke: #e69f00"/>
<use xlink:href="#m2511f4f594" x="715.940289" y="64.880121" style="fill: #e69f00; stroke: #e69f00"/>
<use xlink:href="#m2511f4f594" x="741.38261" y="63.945818" style="fill: #e69f00; stroke: #e69f00"/>
</g>
</g>
<g id="LineCollection_9">
<path d="M 557.478835 142.427273
L 557.478835 108.792364
" clip-path="url(#p356e8715b4)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
<path d="M 618.780093 176.062182
L 618.780093 162.047636
" clip-path="url(#p356e8715b4)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
<path d="M 654.639031 175.127879
L 654.639031 158.310424
" clip-path="url(#p356e8715b4)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
<path d="M 680.081352 173.259273
L 680.081352 153.638909
" clip-path="url(#p356e8715b4)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
<path d="M 715.940289 173.259273
L 715.940289 153.638909
" clip-path="url(#p356e8715b4)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
<path d="M 741.38261 175.127879
L 741.38261 160.17903
" clip-path="url(#p356e8715b4)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
</g>
<g id="line2d_77">
<g clip-path="url(#p356e8715b4)">
<use xlink:href="#mf104b0d1c2" x="557.478835" y="142.427273" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf104b0d1c2" x="618.780093" y="176.062182" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf104b0d1c2" x="654.639031" y="175.127879" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf104b0d1c2" x="680.081352" y="173.259273" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf104b0d1c2" x="715.940289" y="173.259273" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf104b0d1c2" x="741.38261" y="175.127879" style="fill: #0072b2; stroke: #0072b2"/>
</g>
</g>
<g id="line2d_78">
<g clip-path="url(#p356e8715b4)">
<use xlink:href="#mf104b0d1c2" x="557.478835" y="108.792364" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf104b0d1c2" x="618.780093" y="162.047636" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf104b0d1c2" x="654.639031" y="158.310424" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf104b0d1c2" x="680.081352" y="153.638909" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf104b0d1c2" x="715.940289" y="153.638909" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf104b0d1c2" x="741.38261" y="160.17903" style="fill: #0072b2; stroke: #0072b2"/>
</g>
</g>
<g id="line2d_79">
<path d="M 557.478835 125.609818
L 618.780093 170.456364
L 654.639031 170.456364
L 680.081352 164.850545
L 715.940289 164.850545
L 741.38261 170.456364
" clip-path="url(#p356e8715b4)" style="fill: none; stroke-dasharray: 1.15,1.8975; stroke-dashoffset: 0; stroke: #222222; stroke-width: 1.15"/>
<g clip-path="url(#p356e8715b4)">
<use xlink:href="#m1008eedc9f" x="557.478835" y="125.609818" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
<use xlink:href="#m1008eedc9f" x="618.780093" y="170.456364" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
<use xlink:href="#m1008eedc9f" x="654.639031" y="170.456364" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
<use xlink:href="#m1008eedc9f" x="680.081352" y="164.850545" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
<use xlink:href="#m1008eedc9f" x="715.940289" y="164.850545" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
<use xlink:href="#m1008eedc9f" x="741.38261" y="170.456364" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
</g>
</g>
<g id="line2d_80">
<path d="M 557.478835 86.369091
L 618.780093 86.369091
L 654.639031 81.697576
L 680.081352 71.420242
L 715.940289 67.68303
L 741.38261 66.748727
" clip-path="url(#p356e8715b4)" style="fill: none; stroke-dasharray: 4.255,1.84; stroke-dashoffset: 0; stroke: #e69f00; stroke-width: 1.15"/>
<g clip-path="url(#p356e8715b4)">
<use xlink:href="#mc6ecd3d87d" x="557.478835" y="86.369091" style="fill: #e69f00; stroke: #e69f00; stroke-linejoin: miter"/>
<use xlink:href="#mc6ecd3d87d" x="618.780093" y="86.369091" style="fill: #e69f00; stroke: #e69f00; stroke-linejoin: miter"/>
<use xlink:href="#mc6ecd3d87d" x="654.639031" y="81.697576" style="fill: #e69f00; stroke: #e69f00; stroke-linejoin: miter"/>
<use xlink:href="#mc6ecd3d87d" x="680.081352" y="71.420242" style="fill: #e69f00; stroke: #e69f00; stroke-linejoin: miter"/>
<use xlink:href="#mc6ecd3d87d" x="715.940289" y="67.68303" style="fill: #e69f00; stroke: #e69f00; stroke-linejoin: miter"/>
<use xlink:href="#mc6ecd3d87d" x="741.38261" y="66.748727" style="fill: #e69f00; stroke: #e69f00; stroke-linejoin: miter"/>
</g>
</g>
<g id="line2d_81">
<path d="M 557.478835 125.609818
L 618.780093 170.456364
L 654.639031 167.653455
L 680.081352 164.850545
L 715.940289 164.850545
L 741.38261 168.587758
" clip-path="url(#p356e8715b4)" style="fill: none; stroke: #0072b2; stroke-width: 1.7; stroke-linecap: square"/>
<g clip-path="url(#p356e8715b4)">
<use xlink:href="#m0a95ac534b" x="557.478835" y="125.609818" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#m0a95ac534b" x="618.780093" y="170.456364" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#m0a95ac534b" x="654.639031" y="167.653455" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#m0a95ac534b" x="680.081352" y="164.850545" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#m0a95ac534b" x="715.940289" y="164.850545" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#m0a95ac534b" x="741.38261" y="168.587758" style="fill: #0072b2; stroke: #0072b2"/>
</g>
</g>
<g id="patch_9">
<path d="M 548.283646 181.668
L 548.283646 58.34
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_10">
<path d="M 548.283646 181.668
L 750.577799 181.668
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="text_45">
<text style="font-size: 9.5px; font-family: 'DejaVu Sans'" transform="translate(590.290254 41.702078)">(c) Stable failure fraction</text>
<text style="font-size: 9.5px; font-family: 'DejaVu Sans'" transform="translate(592.194707 52.34)">98% lower growth slope</text>
</g>
</g>
<g id="text_46">
<text style="font-size: 7px; font-family: 'DejaVu Sans'; text-anchor: end; fill: #666666" x="756.764312" y="224.638219" transform="rotate(-0 756.764312 224.638219)">Confirmation: 40 tasks, 3 component draws</text>
</g>
<g id="legend_1">
<g id="LineCollection_10">
<path d="M 225.419687 17.67875
L 225.419687 9.67875
" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
</g>
<g id="line2d_82">
<g>
<use xlink:href="#m9959c8c0c0" x="225.419687" y="17.67875" style="fill: #222222; stroke: #222222"/>
</g>
</g>
<g id="line2d_83">
<g>
<use xlink:href="#m9959c8c0c0" x="225.419687" y="9.67875" style="fill: #222222; stroke: #222222"/>
</g>
</g>
<g id="line2d_84">
<path d="M 217.419687 13.67875
L 233.419687 13.67875
" style="fill: none; stroke-dasharray: 1.15,1.8975; stroke-dashoffset: 0; stroke: #222222; stroke-width: 1.15"/>
</g>
<g id="line2d_85">
<g>
<use xlink:href="#m1008eedc9f" x="225.419687" y="13.67875" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
</g>
</g>
<g id="text_47">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: start" x="239.819687" y="16.47875" transform="rotate(-0 239.819687 16.47875)">Clean overclamp</text>
</g>
<g id="LineCollection_11">
<path d="M 331.122187 17.67875
L 331.122187 9.67875
" style="fill: none; stroke: #e69f00; stroke-width: 1.15"/>
</g>
<g id="line2d_86">
<g>
<use xlink:href="#m2511f4f594" x="331.122187" y="17.67875" style="fill: #e69f00; stroke: #e69f00"/>
</g>
</g>
<g id="line2d_87">
<g>
<use xlink:href="#m2511f4f594" x="331.122187" y="9.67875" style="fill: #e69f00; stroke: #e69f00"/>
</g>
</g>
<g id="line2d_88">
<path d="M 323.122187 13.67875
L 339.122187 13.67875
" style="fill: none; stroke-dasharray: 4.255,1.84; stroke-dashoffset: 0; stroke: #e69f00; stroke-width: 1.15"/>
</g>
<g id="line2d_89">
<g>
<use xlink:href="#mc6ecd3d87d" x="331.122187" y="13.67875" style="fill: #e69f00; stroke: #e69f00; stroke-linejoin: miter"/>
</g>
</g>
<g id="text_48">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: start" x="345.522187" y="16.47875" transform="rotate(-0 345.522187 16.47875)">Imperfect overclamp</text>
</g>
<g id="LineCollection_12">
<path d="M 452.837187 17.67875
L 452.837187 9.67875
" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
</g>
<g id="line2d_90">
<g>
<use xlink:href="#mf104b0d1c2" x="452.837187" y="17.67875" style="fill: #0072b2; stroke: #0072b2"/>
</g>
</g>
<g id="line2d_91">
<g>
<use xlink:href="#mf104b0d1c2" x="452.837187" y="9.67875" style="fill: #0072b2; stroke: #0072b2"/>
</g>
</g>
<g id="line2d_92">
<path d="M 444.837187 13.67875
L 460.837187 13.67875
" style="fill: none; stroke: #0072b2; stroke-width: 1.7; stroke-linecap: square"/>
</g>
<g id="line2d_93">
<g>
<use xlink:href="#m0a95ac534b" x="452.837187" y="13.67875" style="fill: #0072b2; stroke: #0072b2"/>
</g>
</g>
<g id="text_49">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: start" x="467.237187" y="16.47875" transform="rotate(-0 467.237187 16.47875)">Overclamp + SDIL</text>
</g>
</g>
</g>
<defs>
<clipPath id="pb22993c8c7">
<rect x="37.090313" y="58.34" width="202.294153" height="123.328"/>
</clipPath>
<clipPath id="p02be825de3">
<rect x="292.686979" y="58.34" width="202.294153" height="123.328"/>
</clipPath>
<clipPath id="p356e8715b4">
<rect x="548.283646" y="58.34" width="202.294153" height="123.328"/>
</clipPath>
</defs>
</svg>
|