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
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
|
<?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="767.002963pt" height="233.544pt" viewBox="0 0 767.002963 233.544" 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-29T18:08:56.229221</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.544
L 767.002963 233.544
L 767.002963 0
L 0 0
z
" style="fill: #ffffff"/>
</g>
<g id="axes_1">
<g id="patch_2">
<path d="M 39.628963 182.418
L 240.177287 182.418
L 240.177287 47.79
L 39.628963 47.79
z
" style="fill: #ffffff"/>
</g>
<g id="matplotlib.axis_1">
<g id="xtick_1">
<g id="line2d_1">
<defs>
<path id="ma3248c20cb" d="M 0 0
L 0 3
" style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#ma3248c20cb" x="48.744796" y="182.418" 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="48.744796" y="194.99675" transform="rotate(-0 48.744796 194.99675)">32</text>
</g>
</g>
<g id="xtick_2">
<g id="line2d_2">
<g>
<use xlink:href="#ma3248c20cb" x="109.517015" y="182.418" 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="109.517015" y="194.99675" transform="rotate(-0 109.517015 194.99675)">128</text>
</g>
</g>
<g id="xtick_3">
<g id="line2d_3">
<g>
<use xlink:href="#ma3248c20cb" x="145.066485" y="182.418" 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="145.066485" y="194.99675" transform="rotate(-0 145.066485 194.99675)">288</text>
</g>
</g>
<g id="xtick_4">
<g id="line2d_4">
<g>
<use xlink:href="#ma3248c20cb" x="170.289235" y="182.418" 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="170.289235" y="194.99675" transform="rotate(-0 170.289235 194.99675)">512</text>
</g>
</g>
<g id="xtick_5">
<g id="line2d_5">
<g>
<use xlink:href="#ma3248c20cb" x="205.838704" y="182.418" 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="205.838704" y="194.99675" transform="rotate(-0 205.838704 194.99675)">1.2k</text>
</g>
</g>
<g id="xtick_6">
<g id="line2d_6">
<g>
<use xlink:href="#ma3248c20cb" x="231.061454" y="182.418" 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="231.061454" y="194.99675" transform="rotate(-0 231.061454 194.99675)">2.0k</text>
</g>
</g>
<g id="text_7">
<text style="font-size: 9px; font-family: 'DejaVu Sans'; text-anchor: middle" x="139.903125" y="207.499094" transform="rotate(-0 139.903125 207.499094)">Learnable edges</text>
</g>
</g>
<g id="matplotlib.axis_2">
<g id="ytick_1">
<g id="line2d_7">
<path d="M 39.628963 176.885342
L 240.177287 176.885342
" clip-path="url(#p45b2a52d21)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_8">
<defs>
<path id="m883fbe91cd" d="M 0 0
L -3 0
" style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#m883fbe91cd" x="39.628963" y="176.885342" 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="33.128963" y="179.924717" transform="rotate(-0 33.128963 179.924717)">0</text>
</g>
</g>
<g id="ytick_2">
<g id="line2d_9">
<path d="M 39.628963 158.443151
L 240.177287 158.443151
" clip-path="url(#p45b2a52d21)" 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="#m883fbe91cd" x="39.628963" y="158.443151" 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="33.128963" y="161.482526" transform="rotate(-0 33.128963 161.482526)">10</text>
</g>
</g>
<g id="ytick_3">
<g id="line2d_11">
<path d="M 39.628963 140.000959
L 240.177287 140.000959
" clip-path="url(#p45b2a52d21)" 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="#m883fbe91cd" x="39.628963" y="140.000959" 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="33.128963" y="143.040334" transform="rotate(-0 33.128963 143.040334)">20</text>
</g>
</g>
<g id="ytick_4">
<g id="line2d_13">
<path d="M 39.628963 121.558767
L 240.177287 121.558767
" clip-path="url(#p45b2a52d21)" 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="#m883fbe91cd" x="39.628963" y="121.558767" 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="33.128963" y="124.598142" transform="rotate(-0 33.128963 124.598142)">30</text>
</g>
</g>
<g id="ytick_5">
<g id="line2d_15">
<path d="M 39.628963 103.116575
L 240.177287 103.116575
" clip-path="url(#p45b2a52d21)" 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="#m883fbe91cd" x="39.628963" y="103.116575" 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="33.128963" y="106.15595" transform="rotate(-0 33.128963 106.15595)">40</text>
</g>
</g>
<g id="ytick_6">
<g id="line2d_17">
<path d="M 39.628963 84.674384
L 240.177287 84.674384
" clip-path="url(#p45b2a52d21)" 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="#m883fbe91cd" x="39.628963" y="84.674384" 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="33.128963" y="87.713759" transform="rotate(-0 33.128963 87.713759)">50</text>
</g>
</g>
<g id="ytick_7">
<g id="line2d_19">
<path d="M 39.628963 66.232192
L 240.177287 66.232192
" clip-path="url(#p45b2a52d21)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_20">
<g>
<use xlink:href="#m883fbe91cd" x="39.628963" y="66.232192" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_14">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="33.128963" y="69.271567" transform="rotate(-0 33.128963 69.271567)">60</text>
</g>
</g>
<g id="ytick_8">
<g id="line2d_21">
<path d="M 39.628963 47.79
L 240.177287 47.79
" clip-path="url(#p45b2a52d21)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_22">
<g>
<use xlink:href="#m883fbe91cd" x="39.628963" y="47.79" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_15">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="33.128963" y="50.829375" transform="rotate(-0 33.128963 50.829375)">70</text>
</g>
</g>
<g id="text_16">
<text style="font-size: 9px; font-family: 'DejaVu Sans'; text-anchor: middle" x="17.077244" y="115.104" transform="rotate(-90 17.077244 115.104)">Final classification error (%)</text>
</g>
</g>
<g id="LineCollection_1">
<path d="M 48.744796 176.885342
L 48.744796 176.885342
" clip-path="url(#p45b2a52d21)" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
<path d="M 109.517015 176.885342
L 109.517015 176.885342
" clip-path="url(#p45b2a52d21)" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
<path d="M 145.066485 176.885342
L 145.066485 163.053699
" clip-path="url(#p45b2a52d21)" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
<path d="M 170.289235 176.885342
L 170.289235 163.053699
" clip-path="url(#p45b2a52d21)" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
<path d="M 205.838704 176.885342
L 205.838704 163.053699
" clip-path="url(#p45b2a52d21)" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
<path d="M 231.061454 176.885342
L 231.061454 163.053699
" clip-path="url(#p45b2a52d21)" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
</g>
<g id="line2d_23">
<defs>
<path id="m5a28756987" d="M 2 0
L -2 -0
" style="stroke: #222222"/>
</defs>
<g clip-path="url(#p45b2a52d21)">
<use xlink:href="#m5a28756987" x="48.744796" y="176.885342" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m5a28756987" x="109.517015" y="176.885342" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m5a28756987" x="145.066485" y="176.885342" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m5a28756987" x="170.289235" y="176.885342" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m5a28756987" x="205.838704" y="176.885342" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m5a28756987" x="231.061454" y="176.885342" style="fill: #222222; stroke: #222222"/>
</g>
</g>
<g id="line2d_24">
<g clip-path="url(#p45b2a52d21)">
<use xlink:href="#m5a28756987" x="48.744796" y="176.885342" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m5a28756987" x="109.517015" y="176.885342" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m5a28756987" x="145.066485" y="163.053699" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m5a28756987" x="170.289235" y="163.053699" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m5a28756987" x="205.838704" y="163.053699" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m5a28756987" x="231.061454" y="163.053699" style="fill: #222222; stroke: #222222"/>
</g>
</g>
<g id="LineCollection_2">
<path d="M 48.744796 176.885342
L 48.744796 176.885342
" clip-path="url(#p45b2a52d21)" style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/>
<path d="M 109.517015 176.885342
L 109.517015 176.885342
" clip-path="url(#p45b2a52d21)" style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/>
<path d="M 145.066485 176.885342
L 145.066485 149.222055
" clip-path="url(#p45b2a52d21)" style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/>
<path d="M 170.289235 176.885342
L 170.289235 121.558767
" clip-path="url(#p45b2a52d21)" style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/>
<path d="M 205.838704 167.664247
L 205.838704 112.337671
" clip-path="url(#p45b2a52d21)" style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/>
<path d="M 231.061454 163.053699
L 231.061454 103.116575
" clip-path="url(#p45b2a52d21)" style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/>
</g>
<g id="line2d_25">
<defs>
<path id="ma8555511b6" d="M 2 0
L -2 -0
" style="stroke: #cc79a7"/>
</defs>
<g clip-path="url(#p45b2a52d21)">
<use xlink:href="#ma8555511b6" x="48.744796" y="176.885342" style="fill: #cc79a7; stroke: #cc79a7"/>
<use xlink:href="#ma8555511b6" x="109.517015" y="176.885342" style="fill: #cc79a7; stroke: #cc79a7"/>
<use xlink:href="#ma8555511b6" x="145.066485" y="176.885342" style="fill: #cc79a7; stroke: #cc79a7"/>
<use xlink:href="#ma8555511b6" x="170.289235" y="176.885342" style="fill: #cc79a7; stroke: #cc79a7"/>
<use xlink:href="#ma8555511b6" x="205.838704" y="167.664247" style="fill: #cc79a7; stroke: #cc79a7"/>
<use xlink:href="#ma8555511b6" x="231.061454" y="163.053699" style="fill: #cc79a7; stroke: #cc79a7"/>
</g>
</g>
<g id="line2d_26">
<g clip-path="url(#p45b2a52d21)">
<use xlink:href="#ma8555511b6" x="48.744796" y="176.885342" style="fill: #cc79a7; stroke: #cc79a7"/>
<use xlink:href="#ma8555511b6" x="109.517015" y="176.885342" style="fill: #cc79a7; stroke: #cc79a7"/>
<use xlink:href="#ma8555511b6" x="145.066485" y="149.222055" style="fill: #cc79a7; stroke: #cc79a7"/>
<use xlink:href="#ma8555511b6" x="170.289235" y="121.558767" style="fill: #cc79a7; stroke: #cc79a7"/>
<use xlink:href="#ma8555511b6" x="205.838704" y="112.337671" style="fill: #cc79a7; stroke: #cc79a7"/>
<use xlink:href="#ma8555511b6" x="231.061454" y="103.116575" style="fill: #cc79a7; stroke: #cc79a7"/>
</g>
</g>
<g id="LineCollection_3">
<path d="M 48.744796 84.674384
L 48.744796 84.674384
" clip-path="url(#p45b2a52d21)" style="fill: none; stroke: #d55e00; stroke-width: 1.15"/>
<path d="M 109.517015 61.621644
L 109.517015 61.621644
" clip-path="url(#p45b2a52d21)" style="fill: none; stroke: #d55e00; stroke-width: 1.15"/>
<path d="M 145.066485 84.674384
L 145.066485 70.84274
" clip-path="url(#p45b2a52d21)" style="fill: none; stroke: #d55e00; stroke-width: 1.15"/>
<path d="M 170.289235 98.506027
L 170.289235 84.674384
" clip-path="url(#p45b2a52d21)" style="fill: none; stroke: #d55e00; stroke-width: 1.15"/>
<path d="M 205.838704 84.674384
L 205.838704 84.674384
" clip-path="url(#p45b2a52d21)" style="fill: none; stroke: #d55e00; stroke-width: 1.15"/>
<path d="M 231.061454 107.727123
L 231.061454 107.727123
" clip-path="url(#p45b2a52d21)" style="fill: none; stroke: #d55e00; stroke-width: 1.15"/>
</g>
<g id="line2d_27">
<defs>
<path id="m5023a9231e" d="M 2 0
L -2 -0
" style="stroke: #d55e00"/>
</defs>
<g clip-path="url(#p45b2a52d21)">
<use xlink:href="#m5023a9231e" x="48.744796" y="84.674384" style="fill: #d55e00; stroke: #d55e00"/>
<use xlink:href="#m5023a9231e" x="109.517015" y="61.621644" style="fill: #d55e00; stroke: #d55e00"/>
<use xlink:href="#m5023a9231e" x="145.066485" y="84.674384" style="fill: #d55e00; stroke: #d55e00"/>
<use xlink:href="#m5023a9231e" x="170.289235" y="98.506027" style="fill: #d55e00; stroke: #d55e00"/>
<use xlink:href="#m5023a9231e" x="205.838704" y="84.674384" style="fill: #d55e00; stroke: #d55e00"/>
<use xlink:href="#m5023a9231e" x="231.061454" y="107.727123" style="fill: #d55e00; stroke: #d55e00"/>
</g>
</g>
<g id="line2d_28">
<g clip-path="url(#p45b2a52d21)">
<use xlink:href="#m5023a9231e" x="48.744796" y="84.674384" style="fill: #d55e00; stroke: #d55e00"/>
<use xlink:href="#m5023a9231e" x="109.517015" y="61.621644" style="fill: #d55e00; stroke: #d55e00"/>
<use xlink:href="#m5023a9231e" x="145.066485" y="70.84274" style="fill: #d55e00; stroke: #d55e00"/>
<use xlink:href="#m5023a9231e" x="170.289235" y="84.674384" style="fill: #d55e00; stroke: #d55e00"/>
<use xlink:href="#m5023a9231e" x="205.838704" y="84.674384" style="fill: #d55e00; stroke: #d55e00"/>
<use xlink:href="#m5023a9231e" x="231.061454" y="107.727123" style="fill: #d55e00; stroke: #d55e00"/>
</g>
</g>
<g id="LineCollection_4">
<path d="M 48.744796 176.885342
L 48.744796 163.053699
" clip-path="url(#p45b2a52d21)" style="fill: none; stroke: #666666; stroke-width: 1.15"/>
<path d="M 109.517015 176.885342
L 109.517015 163.053699
" clip-path="url(#p45b2a52d21)" style="fill: none; stroke: #666666; stroke-width: 1.15"/>
<path d="M 145.066485 176.885342
L 145.066485 163.053699
" clip-path="url(#p45b2a52d21)" style="fill: none; stroke: #666666; stroke-width: 1.15"/>
<path d="M 170.289235 176.885342
L 170.289235 158.443151
" clip-path="url(#p45b2a52d21)" style="fill: none; stroke: #666666; stroke-width: 1.15"/>
<path d="M 205.838704 176.885342
L 205.838704 121.558767
" clip-path="url(#p45b2a52d21)" style="fill: none; stroke: #666666; stroke-width: 1.15"/>
<path d="M 231.061454 149.222055
L 231.061454 93.895479
" clip-path="url(#p45b2a52d21)" style="fill: none; stroke: #666666; stroke-width: 1.15"/>
</g>
<g id="line2d_29">
<defs>
<path id="mdc72af2b3b" d="M 2 0
L -2 -0
" style="stroke: #666666"/>
</defs>
<g clip-path="url(#p45b2a52d21)">
<use xlink:href="#mdc72af2b3b" x="48.744796" y="176.885342" style="fill: #666666; stroke: #666666"/>
<use xlink:href="#mdc72af2b3b" x="109.517015" y="176.885342" style="fill: #666666; stroke: #666666"/>
<use xlink:href="#mdc72af2b3b" x="145.066485" y="176.885342" style="fill: #666666; stroke: #666666"/>
<use xlink:href="#mdc72af2b3b" x="170.289235" y="176.885342" style="fill: #666666; stroke: #666666"/>
<use xlink:href="#mdc72af2b3b" x="205.838704" y="176.885342" style="fill: #666666; stroke: #666666"/>
<use xlink:href="#mdc72af2b3b" x="231.061454" y="149.222055" style="fill: #666666; stroke: #666666"/>
</g>
</g>
<g id="line2d_30">
<g clip-path="url(#p45b2a52d21)">
<use xlink:href="#mdc72af2b3b" x="48.744796" y="163.053699" style="fill: #666666; stroke: #666666"/>
<use xlink:href="#mdc72af2b3b" x="109.517015" y="163.053699" style="fill: #666666; stroke: #666666"/>
<use xlink:href="#mdc72af2b3b" x="145.066485" y="163.053699" style="fill: #666666; stroke: #666666"/>
<use xlink:href="#mdc72af2b3b" x="170.289235" y="158.443151" style="fill: #666666; stroke: #666666"/>
<use xlink:href="#mdc72af2b3b" x="205.838704" y="121.558767" style="fill: #666666; stroke: #666666"/>
<use xlink:href="#mdc72af2b3b" x="231.061454" y="93.895479" style="fill: #666666; stroke: #666666"/>
</g>
</g>
<g id="LineCollection_5">
<path d="M 48.744796 176.885342
L 48.744796 176.885342
" clip-path="url(#p45b2a52d21)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
<path d="M 109.517015 176.885342
L 109.517015 176.885342
" clip-path="url(#p45b2a52d21)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
<path d="M 145.066485 176.885342
L 145.066485 163.053699
" clip-path="url(#p45b2a52d21)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
<path d="M 170.289235 176.885342
L 170.289235 163.053699
" clip-path="url(#p45b2a52d21)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
<path d="M 205.838704 176.885342
L 205.838704 144.611507
" clip-path="url(#p45b2a52d21)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
<path d="M 231.061454 176.885342
L 231.061454 163.053699
" clip-path="url(#p45b2a52d21)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
</g>
<g id="line2d_31">
<defs>
<path id="mf3fceadd2c" d="M 2 0
L -2 -0
" style="stroke: #0072b2"/>
</defs>
<g clip-path="url(#p45b2a52d21)">
<use xlink:href="#mf3fceadd2c" x="48.744796" y="176.885342" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf3fceadd2c" x="109.517015" y="176.885342" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf3fceadd2c" x="145.066485" y="176.885342" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf3fceadd2c" x="170.289235" y="176.885342" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf3fceadd2c" x="205.838704" y="176.885342" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf3fceadd2c" x="231.061454" y="176.885342" style="fill: #0072b2; stroke: #0072b2"/>
</g>
</g>
<g id="line2d_32">
<g clip-path="url(#p45b2a52d21)">
<use xlink:href="#mf3fceadd2c" x="48.744796" y="176.885342" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf3fceadd2c" x="109.517015" y="176.885342" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf3fceadd2c" x="145.066485" y="163.053699" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf3fceadd2c" x="170.289235" y="163.053699" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf3fceadd2c" x="205.838704" y="144.611507" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mf3fceadd2c" x="231.061454" y="163.053699" style="fill: #0072b2; stroke: #0072b2"/>
</g>
</g>
<g id="line2d_33">
<path d="M 48.744796 176.885342
L 109.517015 176.885342
L 145.066485 172.274795
L 170.289235 172.274795
L 205.838704 172.274795
L 231.061454 172.274795
" clip-path="url(#p45b2a52d21)" style="fill: none; stroke-dasharray: 1.15,1.8975; stroke-dashoffset: 0; stroke: #222222; stroke-width: 1.15"/>
<defs>
<path id="mc6aee44d85" 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(#p45b2a52d21)">
<use xlink:href="#mc6aee44d85" x="48.744796" y="176.885342" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
<use xlink:href="#mc6aee44d85" x="109.517015" y="176.885342" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
<use xlink:href="#mc6aee44d85" x="145.066485" y="172.274795" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
<use xlink:href="#mc6aee44d85" x="170.289235" y="172.274795" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
<use xlink:href="#mc6aee44d85" x="205.838704" y="172.274795" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
<use xlink:href="#mc6aee44d85" x="231.061454" y="172.274795" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
</g>
</g>
<g id="line2d_34">
<path d="M 48.744796 176.885342
L 109.517015 176.885342
L 145.066485 167.664247
L 170.289235 158.443151
L 205.838704 144.611507
L 231.061454 135.390411
" clip-path="url(#p45b2a52d21)" style="fill: none; stroke-dasharray: 4.255,1.84; stroke-dashoffset: 0; stroke: #cc79a7; stroke-width: 1.15"/>
<defs>
<path id="m267097d234" d="M -0 3.181981
L 3.181981 0
L 0 -3.181981
L -3.181981 -0
z
" style="stroke: #cc79a7; stroke-linejoin: miter"/>
</defs>
<g clip-path="url(#p45b2a52d21)">
<use xlink:href="#m267097d234" x="48.744796" y="176.885342" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/>
<use xlink:href="#m267097d234" x="109.517015" y="176.885342" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/>
<use xlink:href="#m267097d234" x="145.066485" y="167.664247" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/>
<use xlink:href="#m267097d234" x="170.289235" y="158.443151" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/>
<use xlink:href="#m267097d234" x="205.838704" y="144.611507" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/>
<use xlink:href="#m267097d234" x="231.061454" y="135.390411" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/>
</g>
</g>
<g id="line2d_35">
<path d="M 48.744796 84.674384
L 109.517015 61.621644
L 145.066485 80.063836
L 170.289235 89.284932
L 205.838704 84.674384
L 231.061454 107.727123
" clip-path="url(#p45b2a52d21)" style="fill: none; stroke: #d55e00; stroke-width: 1.15; stroke-linecap: square"/>
<defs>
<path id="m9198feb5e9" d="M -1.125 2.25
L 0 1.125
L 1.125 2.25
L 2.25 1.125
L 1.125 0
L 2.25 -1.125
L 1.125 -2.25
L 0 -1.125
L -1.125 -2.25
L -2.25 -1.125
L -1.125 0
L -2.25 1.125
z
" style="stroke: #d55e00; stroke-linejoin: miter"/>
</defs>
<g clip-path="url(#p45b2a52d21)">
<use xlink:href="#m9198feb5e9" x="48.744796" y="84.674384" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/>
<use xlink:href="#m9198feb5e9" x="109.517015" y="61.621644" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/>
<use xlink:href="#m9198feb5e9" x="145.066485" y="80.063836" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/>
<use xlink:href="#m9198feb5e9" x="170.289235" y="89.284932" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/>
<use xlink:href="#m9198feb5e9" x="205.838704" y="84.674384" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/>
<use xlink:href="#m9198feb5e9" x="231.061454" y="107.727123" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/>
</g>
</g>
<g id="line2d_36">
<path d="M 48.744796 172.274795
L 109.517015 172.274795
L 145.066485 172.274795
L 170.289235 167.664247
L 205.838704 158.443151
L 231.061454 121.558767
" clip-path="url(#p45b2a52d21)" style="fill: none; stroke-dasharray: 4.255,1.84; stroke-dashoffset: 0; stroke: #666666; stroke-width: 1.15"/>
<defs>
<path id="m87fbca6e18" d="M -2.25 2.25
L 2.25 2.25
L 2.25 -2.25
L -2.25 -2.25
z
" style="stroke: #666666; stroke-linejoin: miter"/>
</defs>
<g clip-path="url(#p45b2a52d21)">
<use xlink:href="#m87fbca6e18" x="48.744796" y="172.274795" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/>
<use xlink:href="#m87fbca6e18" x="109.517015" y="172.274795" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/>
<use xlink:href="#m87fbca6e18" x="145.066485" y="172.274795" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/>
<use xlink:href="#m87fbca6e18" x="170.289235" y="167.664247" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/>
<use xlink:href="#m87fbca6e18" x="205.838704" y="158.443151" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/>
<use xlink:href="#m87fbca6e18" x="231.061454" y="121.558767" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/>
</g>
</g>
<g id="line2d_37">
<path d="M 48.744796 176.885342
L 109.517015 176.885342
L 145.066485 172.274795
L 170.289235 172.274795
L 205.838704 163.053699
L 231.061454 172.274795
" clip-path="url(#p45b2a52d21)" style="fill: none; stroke: #0072b2; stroke-width: 1.7; stroke-linecap: square"/>
<defs>
<path id="ma2fa1acfec" 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(#p45b2a52d21)">
<use xlink:href="#ma2fa1acfec" x="48.744796" y="176.885342" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#ma2fa1acfec" x="109.517015" y="176.885342" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#ma2fa1acfec" x="145.066485" y="172.274795" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#ma2fa1acfec" x="170.289235" y="172.274795" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#ma2fa1acfec" x="205.838704" y="163.053699" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#ma2fa1acfec" x="231.061454" y="172.274795" style="fill: #0072b2; stroke: #0072b2"/>
</g>
</g>
<g id="patch_3">
<path d="M 39.628963 182.418
L 39.628963 47.79
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_4">
<path d="M 39.628963 182.418
L 240.177287 182.418
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="text_17">
<text style="font-size: 9.5px; font-family: 'DejaVu Sans'; text-anchor: middle" x="139.903125" y="41.79" transform="rotate(-0 139.903125 41.79)">(a) Error-growth slope reduced 88% vs static calibration</text>
</g>
</g>
<g id="axes_2">
<g id="patch_5">
<path d="M 292.979801 182.418
L 493.528125 182.418
L 493.528125 47.79
L 292.979801 47.79
z
" style="fill: #ffffff"/>
</g>
<g id="matplotlib.axis_3">
<g id="xtick_7">
<g id="line2d_38">
<g>
<use xlink:href="#ma3248c20cb" x="302.095634" y="182.418" 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="302.095634" y="194.99675" transform="rotate(-0 302.095634 194.99675)">32</text>
</g>
</g>
<g id="xtick_8">
<g id="line2d_39">
<g>
<use xlink:href="#ma3248c20cb" x="362.867853" y="182.418" 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="362.867853" y="194.99675" transform="rotate(-0 362.867853 194.99675)">128</text>
</g>
</g>
<g id="xtick_9">
<g id="line2d_40">
<g>
<use xlink:href="#ma3248c20cb" x="398.417323" y="182.418" 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="398.417323" y="194.99675" transform="rotate(-0 398.417323 194.99675)">288</text>
</g>
</g>
<g id="xtick_10">
<g id="line2d_41">
<g>
<use xlink:href="#ma3248c20cb" x="423.640073" y="182.418" 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="423.640073" y="194.99675" transform="rotate(-0 423.640073 194.99675)">512</text>
</g>
</g>
<g id="xtick_11">
<g id="line2d_42">
<g>
<use xlink:href="#ma3248c20cb" x="459.189542" y="182.418" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_22">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="459.189542" y="194.99675" transform="rotate(-0 459.189542 194.99675)">1.2k</text>
</g>
</g>
<g id="xtick_12">
<g id="line2d_43">
<g>
<use xlink:href="#ma3248c20cb" x="484.412292" y="182.418" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_23">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="484.412292" y="194.99675" transform="rotate(-0 484.412292 194.99675)">2.0k</text>
</g>
</g>
<g id="text_24">
<text style="font-size: 9px; font-family: 'DejaVu Sans'; text-anchor: middle" x="393.253963" y="207.499094" transform="rotate(-0 393.253963 207.499094)">Learnable edges</text>
</g>
</g>
<g id="matplotlib.axis_4">
<g id="ytick_9">
<g id="line2d_44">
<path d="M 292.979801 176.298545
L 493.528125 176.298545
" clip-path="url(#pffd4cd4bf2)" 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="#m883fbe91cd" x="292.979801" y="176.298545" 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="286.479801" y="179.33792" transform="rotate(-0 286.479801 179.33792)">0</text>
</g>
</g>
<g id="ytick_10">
<g id="line2d_46">
<path d="M 292.979801 151.820727
L 493.528125 151.820727
" clip-path="url(#pffd4cd4bf2)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_47">
<g>
<use xlink:href="#m883fbe91cd" x="292.979801" y="151.820727" 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="286.479801" y="154.860102" transform="rotate(-0 286.479801 154.860102)">20</text>
</g>
</g>
<g id="ytick_11">
<g id="line2d_48">
<path d="M 292.979801 127.342909
L 493.528125 127.342909
" clip-path="url(#pffd4cd4bf2)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_49">
<g>
<use xlink:href="#m883fbe91cd" x="292.979801" y="127.342909" 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="286.479801" y="130.382284" transform="rotate(-0 286.479801 130.382284)">40</text>
</g>
</g>
<g id="ytick_12">
<g id="line2d_50">
<path d="M 292.979801 102.865091
L 493.528125 102.865091
" clip-path="url(#pffd4cd4bf2)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_51">
<g>
<use xlink:href="#m883fbe91cd" x="292.979801" y="102.865091" 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="286.479801" y="105.904466" transform="rotate(-0 286.479801 105.904466)">60</text>
</g>
</g>
<g id="ytick_13">
<g id="line2d_52">
<path d="M 292.979801 78.387273
L 493.528125 78.387273
" clip-path="url(#pffd4cd4bf2)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_53">
<g>
<use xlink:href="#m883fbe91cd" x="292.979801" y="78.387273" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_29">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="286.479801" y="81.426648" transform="rotate(-0 286.479801 81.426648)">80</text>
</g>
</g>
<g id="ytick_14">
<g id="line2d_54">
<path d="M 292.979801 53.909455
L 493.528125 53.909455
" clip-path="url(#pffd4cd4bf2)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_55">
<g>
<use xlink:href="#m883fbe91cd" x="292.979801" y="53.909455" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_30">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="286.479801" y="56.94883" transform="rotate(-0 286.479801 56.94883)">100</text>
</g>
</g>
<g id="text_31">
<text style="font-size: 9px; font-family: 'DejaVu Sans'; text-anchor: middle" x="265.338082" y="115.104" transform="rotate(-90 265.338082 115.104)">Stable zero-error runs (%)</text>
</g>
</g>
<g id="line2d_56">
<path d="M 302.095634 53.909455
L 362.867853 53.909455
L 398.417323 78.387273
L 423.640073 78.387273
L 459.189542 78.387273
L 484.412292 78.387273
" clip-path="url(#pffd4cd4bf2)" style="fill: none; stroke-dasharray: 1.15,1.8975; stroke-dashoffset: 0; stroke: #222222; stroke-width: 1.15"/>
<g clip-path="url(#pffd4cd4bf2)">
<use xlink:href="#mc6aee44d85" x="302.095634" y="53.909455" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
<use xlink:href="#mc6aee44d85" x="362.867853" y="53.909455" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
<use xlink:href="#mc6aee44d85" x="398.417323" y="78.387273" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
<use xlink:href="#mc6aee44d85" x="423.640073" y="78.387273" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
<use xlink:href="#mc6aee44d85" x="459.189542" y="78.387273" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
<use xlink:href="#mc6aee44d85" x="484.412292" y="78.387273" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
</g>
</g>
<g id="line2d_57">
<path d="M 302.095634 53.909455
L 362.867853 53.909455
L 398.417323 78.387273
L 423.640073 78.387273
L 459.189542 151.820727
L 484.412292 151.820727
" clip-path="url(#pffd4cd4bf2)" style="fill: none; stroke-dasharray: 4.255,1.84; stroke-dashoffset: 0; stroke: #cc79a7; stroke-width: 1.15"/>
<g clip-path="url(#pffd4cd4bf2)">
<use xlink:href="#m267097d234" x="302.095634" y="53.909455" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/>
<use xlink:href="#m267097d234" x="362.867853" y="53.909455" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/>
<use xlink:href="#m267097d234" x="398.417323" y="78.387273" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/>
<use xlink:href="#m267097d234" x="423.640073" y="78.387273" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/>
<use xlink:href="#m267097d234" x="459.189542" y="151.820727" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/>
<use xlink:href="#m267097d234" x="484.412292" y="151.820727" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/>
</g>
</g>
<g id="line2d_58">
<path d="M 302.095634 176.298545
L 362.867853 176.298545
L 398.417323 176.298545
L 423.640073 176.298545
L 459.189542 176.298545
L 484.412292 176.298545
" clip-path="url(#pffd4cd4bf2)" style="fill: none; stroke: #d55e00; stroke-width: 1.15; stroke-linecap: square"/>
<g clip-path="url(#pffd4cd4bf2)">
<use xlink:href="#m9198feb5e9" x="302.095634" y="176.298545" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/>
<use xlink:href="#m9198feb5e9" x="362.867853" y="176.298545" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/>
<use xlink:href="#m9198feb5e9" x="398.417323" y="176.298545" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/>
<use xlink:href="#m9198feb5e9" x="423.640073" y="176.298545" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/>
<use xlink:href="#m9198feb5e9" x="459.189542" y="176.298545" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/>
<use xlink:href="#m9198feb5e9" x="484.412292" y="176.298545" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/>
</g>
</g>
<g id="line2d_59">
<path d="M 302.095634 78.387273
L 362.867853 78.387273
L 398.417323 78.387273
L 423.640073 102.865091
L 459.189542 78.387273
L 484.412292 176.298545
" clip-path="url(#pffd4cd4bf2)" style="fill: none; stroke-dasharray: 4.255,1.84; stroke-dashoffset: 0; stroke: #666666; stroke-width: 1.15"/>
<g clip-path="url(#pffd4cd4bf2)">
<use xlink:href="#m87fbca6e18" x="302.095634" y="78.387273" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/>
<use xlink:href="#m87fbca6e18" x="362.867853" y="78.387273" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/>
<use xlink:href="#m87fbca6e18" x="398.417323" y="78.387273" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/>
<use xlink:href="#m87fbca6e18" x="423.640073" y="102.865091" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/>
<use xlink:href="#m87fbca6e18" x="459.189542" y="78.387273" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/>
<use xlink:href="#m87fbca6e18" x="484.412292" y="176.298545" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/>
</g>
</g>
<g id="line2d_60">
<path d="M 302.095634 53.909455
L 362.867853 53.909455
L 398.417323 78.387273
L 423.640073 78.387273
L 459.189542 102.865091
L 484.412292 78.387273
" clip-path="url(#pffd4cd4bf2)" style="fill: none; stroke: #0072b2; stroke-width: 1.7; stroke-linecap: square"/>
<g clip-path="url(#pffd4cd4bf2)">
<use xlink:href="#ma2fa1acfec" x="302.095634" y="53.909455" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#ma2fa1acfec" x="362.867853" y="53.909455" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#ma2fa1acfec" x="398.417323" y="78.387273" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#ma2fa1acfec" x="423.640073" y="78.387273" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#ma2fa1acfec" x="459.189542" y="102.865091" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#ma2fa1acfec" x="484.412292" y="78.387273" style="fill: #0072b2; stroke: #0072b2"/>
</g>
</g>
<g id="patch_6">
<path d="M 292.979801 182.418
L 292.979801 47.79
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_7">
<path d="M 292.979801 182.418
L 493.528125 182.418
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="text_32">
<text style="font-size: 9.5px; font-family: 'DejaVu Sans'; text-anchor: middle" x="393.253963" y="41.79" transform="rotate(-0 393.253963 41.79)">(b) Recovery remains reliable</text>
</g>
</g>
<g id="axes_3">
<g id="patch_8">
<path d="M 546.330638 182.418
L 746.878963 182.418
L 746.878963 47.79
L 546.330638 47.79
z
" style="fill: #ffffff"/>
</g>
<g id="FillBetweenPolyCollection_1">
<defs>
<path id="m71e00b65da" d="M 546.330638 -148.869616
L 546.330638 -148.869616
L 549.67311 -115.507378
L 553.015583 -115.507378
L 556.358055 -115.507378
L 559.700527 -115.507378
L 563.042999 -115.507378
L 566.385471 -115.507378
L 569.727943 -115.507378
L 573.070415 -115.507378
L 576.412887 -115.507378
L 579.755359 -115.507378
L 583.097831 -115.507378
L 586.440303 -115.507378
L 589.782775 -115.507378
L 593.125247 -115.507378
L 596.467719 -115.507378
L 599.810192 -115.507378
L 603.152664 -115.507378
L 606.495136 -115.507378
L 609.837608 -119.133935
L 613.18008 -119.133935
L 616.522552 -119.133935
L 619.865024 -119.133935
L 623.207496 -119.133935
L 626.549968 -119.133935
L 629.89244 -119.133935
L 633.234912 -119.133935
L 636.577384 -119.133935
L 639.919856 -119.133935
L 643.262329 -119.133935
L 646.604801 -119.133935
L 649.947273 -115.507378
L 653.289745 -109.912839
L 656.632217 -109.912839
L 659.974689 -88.184304
L 663.317161 -96.081195
L 666.659633 -95.474221
L 670.002105 -87.896296
L 673.344577 -79.711397
L 676.687049 -69.401899
L 680.029521 -63.807359
L 683.371993 -61.269205
L 686.714465 -61.269205
L 690.056938 -60.233008
L 693.39941 -56.658658
L 696.741882 -56.658658
L 700.084354 -56.658658
L 703.426826 -56.658658
L 706.769298 -56.658658
L 710.11177 -56.658658
L 713.454242 -56.658658
L 716.796714 -56.658658
L 720.139186 -56.658658
L 723.481658 -56.658658
L 726.82413 -56.658658
L 730.166602 -56.658658
L 733.509074 -56.658658
L 736.851547 -56.658658
L 740.194019 -56.658658
L 743.536491 -56.658658
L 746.878963 -56.658658
L 746.878963 -65.879753
L 746.878963 -65.879753
L 743.536491 -65.879753
L 740.194019 -65.879753
L 736.851547 -56.658658
L 733.509074 -56.658658
L 730.166602 -56.658658
L 726.82413 -56.658658
L 723.481658 -56.658658
L 720.139186 -56.658658
L 716.796714 -65.879753
L 713.454242 -65.879753
L 710.11177 -65.879753
L 706.769298 -65.879753
L 703.426826 -65.879753
L 700.084354 -65.879753
L 696.741882 -65.879753
L 693.39941 -65.879753
L 690.056938 -71.526498
L 686.714465 -79.711397
L 683.371993 -79.711397
L 680.029521 -86.394339
L 676.687049 -90.020896
L 673.344577 -98.153589
L 670.002105 -99.189786
L 666.659633 -110.054053
L 663.317161 -118.668175
L 659.974689 -117.34397
L 656.632217 -132.499819
L 653.289745 -132.499819
L 649.947273 -136.126375
L 646.604801 -141.720915
L 643.262329 -141.720915
L 639.919856 -141.720915
L 636.577384 -141.720915
L 633.234912 -141.720915
L 629.89244 -141.720915
L 626.549968 -141.720915
L 623.207496 -141.720915
L 619.865024 -141.720915
L 616.522552 -141.720915
L 613.18008 -141.720915
L 609.837608 -141.720915
L 606.495136 -136.126375
L 603.152664 -136.126375
L 599.810192 -136.126375
L 596.467719 -136.126375
L 593.125247 -136.126375
L 589.782775 -136.126375
L 586.440303 -136.126375
L 583.097831 -136.126375
L 579.755359 -136.126375
L 576.412887 -136.126375
L 573.070415 -136.126375
L 569.727943 -136.126375
L 566.385471 -136.126375
L 563.042999 -136.126375
L 559.700527 -136.126375
L 556.358055 -136.126375
L 553.015583 -136.126375
L 549.67311 -136.126375
L 546.330638 -148.869616
z
"/>
</defs>
<g clip-path="url(#p40ac76b1b1)">
<use xlink:href="#m71e00b65da" x="0" y="233.544" style="fill: #222222; fill-opacity: 0.08"/>
</g>
</g>
<g id="FillBetweenPolyCollection_2">
<defs>
<path id="ma3d4073991" d="M 546.330638 -148.869616
L 546.330638 -148.869616
L 549.67311 -148.869616
L 553.015583 -148.869616
L 556.358055 -139.362578
L 559.700527 -136.712481
L 563.042999 -134.001776
L 566.385471 -125.816877
L 569.727943 -113.190371
L 573.070415 -111.237044
L 576.412887 -111.237044
L 579.755359 -116.985483
L 583.097831 -139.648521
L 586.440303 -141.5797
L 589.782775 -107.764387
L 593.125247 -90.607002
L 596.467719 -104.266094
L 599.810192 -111.237044
L 603.152664 -102.764137
L 606.495136 -96.350104
L 609.837608 -100.960652
L 613.18008 -102.764137
L 616.522552 -96.350104
L 619.865024 -102.764137
L 623.207496 -90.137631
L 626.549968 -84.711647
L 629.89244 -90.137631
L 633.234912 -88.184304
L 636.577384 -104.841144
L 639.919856 -93.932743
L 643.262329 -90.137631
L 646.604801 -96.350104
L 649.947273 -100.960652
L 653.289745 -98.153589
L 656.632217 -100.960652
L 659.974689 -107.764387
L 663.317161 -115.507378
L 666.659633 -96.350104
L 670.002105 -90.43445
L 673.344577 -96.350104
L 676.687049 -90.43445
L 680.029521 -90.43445
L 683.371993 -84.711647
L 686.714465 -81.213354
L 690.056938 -77.177856
L 693.39941 -71.681402
L 696.741882 -67.38171
L 700.084354 -71.681402
L 703.426826 -77.907912
L 706.769298 -72.421481
L 710.11177 -70.490301
L 713.454242 -70.490301
L 716.796714 -75.100849
L 720.139186 -71.681402
L 723.481658 -77.907912
L 726.82413 -77.025404
L 730.166602 -77.025404
L 733.509074 -79.711397
L 736.851547 -65.879753
L 740.194019 -65.879753
L 743.536491 -67.38171
L 746.878963 -81.213354
L 746.878963 -115.093824
L 746.878963 -115.093824
L 743.536491 -101.26218
L 740.194019 -102.764137
L 736.851547 -102.764137
L 733.509074 -116.595781
L 730.166602 -119.281774
L 726.82413 -119.281774
L 723.481658 -109.17817
L 720.139186 -106.183584
L 716.796714 -102.764137
L 713.454242 -79.711397
L 710.11177 -79.711397
L 706.769298 -87.001314
L 703.426826 -109.17817
L 700.084354 -106.183584
L 696.741882 -101.26218
L 693.39941 -106.183584
L 690.056938 -100.68713
L 686.714465 -115.093824
L 683.371993 -111.595531
L 680.029521 -124.31492
L 676.687049 -124.31492
L 673.344577 -127.620362
L 670.002105 -124.31492
L 666.659633 -127.620362
L 663.317161 -136.126375
L 659.974689 -134.64827
L 656.632217 -132.23091
L 653.289745 -125.816877
L 649.947273 -132.23091
L 646.604801 -127.620362
L 643.262329 -115.390643
L 639.919856 -120.816627
L 636.577384 -128.350418
L 633.234912 -117.34397
L 629.89244 -115.390643
L 626.549968 -111.595531
L 623.207496 -115.390643
L 619.865024 -130.427425
L 616.522552 -127.620362
L 613.18008 -130.427425
L 609.837608 -132.23091
L 606.495136 -127.620362
L 603.152664 -139.648521
L 599.810192 -140.396709
L 596.467719 -138.146564
L 593.125247 -133.363464
L 589.782775 -134.64827
L 586.440303 -156.159533
L 583.097831 -148.869616
L 579.755359 -143.869366
L 576.412887 -140.396709
L 573.070415 -140.396709
L 569.727943 -138.443382
L 566.385471 -144.259068
L 563.042999 -145.295265
L 559.700527 -179.468944
L 556.358055 -176.818847
L 553.015583 -167.311808
L 549.67311 -185.754
L 546.330638 -148.869616
z
"/>
</defs>
<g clip-path="url(#p40ac76b1b1)">
<use xlink:href="#ma3d4073991" x="0" y="233.544" style="fill: #cc79a7; fill-opacity: 0.08"/>
</g>
</g>
<g id="FillBetweenPolyCollection_3">
<defs>
<path id="mbc1a13e1c7" d="M 546.330638 -148.869616
L 546.330638 -148.869616
L 549.67311 -148.869616
L 553.015583 -148.869616
L 556.358055 -148.869616
L 559.700527 -148.869616
L 563.042999 -148.869616
L 566.385471 -148.869616
L 569.727943 -139.648521
L 573.070415 -130.427425
L 576.412887 -130.427425
L 579.755359 -139.648521
L 583.097831 -139.648521
L 586.440303 -139.648521
L 589.782775 -139.648521
L 593.125247 -139.648521
L 596.467719 -134.001776
L 599.810192 -139.648521
L 603.152664 -129.391228
L 606.495136 -129.391228
L 609.837608 -139.648521
L 613.18008 -139.648521
L 616.522552 -139.648521
L 619.865024 -125.816877
L 623.207496 -125.816877
L 626.549968 -125.816877
L 629.89244 -125.816877
L 633.234912 -125.816877
L 636.577384 -125.816877
L 639.919856 -125.816877
L 643.262329 -125.816877
L 646.604801 -125.816877
L 649.947273 -125.816877
L 653.289745 -125.816877
L 656.632217 -125.816877
L 659.974689 -125.816877
L 663.317161 -125.816877
L 666.659633 -125.816877
L 670.002105 -125.816877
L 673.344577 -125.816877
L 676.687049 -125.816877
L 680.029521 -125.816877
L 683.371993 -125.816877
L 686.714465 -125.816877
L 690.056938 -125.816877
L 693.39941 -125.816877
L 696.741882 -125.816877
L 700.084354 -125.816877
L 703.426826 -125.816877
L 706.769298 -125.816877
L 710.11177 -125.816877
L 713.454242 -125.816877
L 716.796714 -125.816877
L 720.139186 -125.816877
L 723.481658 -125.816877
L 726.82413 -125.816877
L 730.166602 -125.816877
L 733.509074 -125.816877
L 736.851547 -125.816877
L 740.194019 -125.816877
L 743.536491 -125.816877
L 746.878963 -125.816877
L 746.878963 -125.816877
L 746.878963 -125.816877
L 743.536491 -125.816877
L 740.194019 -125.816877
L 736.851547 -125.816877
L 733.509074 -125.816877
L 730.166602 -125.816877
L 726.82413 -125.816877
L 723.481658 -135.037973
L 720.139186 -135.037973
L 716.796714 -135.037973
L 713.454242 -135.037973
L 710.11177 -135.037973
L 706.769298 -135.037973
L 703.426826 -135.037973
L 700.084354 -135.037973
L 696.741882 -135.037973
L 693.39941 -135.037973
L 690.056938 -135.037973
L 686.714465 -125.816877
L 683.371993 -125.816877
L 680.029521 -125.816877
L 676.687049 -125.816877
L 673.344577 -135.037973
L 670.002105 -135.037973
L 666.659633 -135.037973
L 663.317161 -135.037973
L 659.974689 -135.037973
L 656.632217 -135.037973
L 653.289745 -135.037973
L 649.947273 -125.816877
L 646.604801 -125.816877
L 643.262329 -125.816877
L 639.919856 -125.816877
L 636.577384 -125.816877
L 633.234912 -125.816877
L 629.89244 -135.037973
L 626.549968 -125.816877
L 623.207496 -135.037973
L 619.865024 -125.816877
L 616.522552 -148.869616
L 613.18008 -148.869616
L 609.837608 -148.869616
L 606.495136 -140.684718
L 603.152664 -140.684718
L 599.810192 -148.869616
L 596.467719 -145.295265
L 593.125247 -148.869616
L 589.782775 -148.869616
L 586.440303 -148.869616
L 583.097831 -148.869616
L 579.755359 -148.869616
L 576.412887 -148.869616
L 573.070415 -148.869616
L 569.727943 -148.869616
L 566.385471 -148.869616
L 563.042999 -148.869616
L 559.700527 -148.869616
L 556.358055 -148.869616
L 553.015583 -148.869616
L 549.67311 -148.869616
L 546.330638 -148.869616
z
"/>
</defs>
<g clip-path="url(#p40ac76b1b1)">
<use xlink:href="#mbc1a13e1c7" x="0" y="233.544" style="fill: #d55e00; fill-opacity: 0.08"/>
</g>
</g>
<g id="FillBetweenPolyCollection_4">
<defs>
<path id="md89b93d062" d="M 546.330638 -148.869616
L 546.330638 -148.869616
L 549.67311 -96.498868
L 553.015583 -89.398253
L 556.358055 -89.398253
L 559.700527 -89.398253
L 563.042999 -89.398253
L 566.385471 -96.498868
L 569.727943 -96.498868
L 573.070415 -102.764137
L 576.412887 -104.266094
L 579.755359 -96.498868
L 583.097831 -104.266094
L 586.440303 -104.266094
L 589.782775 -104.266094
L 593.125247 -104.266094
L 596.467719 -104.266094
L 599.810192 -104.266094
L 603.152664 -104.266094
L 606.495136 -104.266094
L 609.837608 -111.237044
L 613.18008 -111.237044
L 616.522552 -111.237044
L 619.865024 -119.133935
L 623.207496 -119.133935
L 626.549968 -119.133935
L 629.89244 -119.133935
L 633.234912 -119.133935
L 636.577384 -119.133935
L 639.919856 -119.133935
L 643.262329 -119.133935
L 646.604801 -119.133935
L 649.947273 -119.133935
L 653.289745 -119.133935
L 656.632217 -119.133935
L 659.974689 -119.133935
L 663.317161 -107.764387
L 666.659633 -100.960652
L 670.002105 -100.960652
L 673.344577 -100.960652
L 676.687049 -100.960652
L 680.029521 -100.960652
L 683.371993 -100.960652
L 686.714465 -96.350104
L 690.056938 -96.350104
L 693.39941 -96.350104
L 696.741882 -96.350104
L 700.084354 -96.350104
L 703.426826 -96.350104
L 706.769298 -96.350104
L 710.11177 -96.350104
L 713.454242 -96.350104
L 716.796714 -96.350104
L 720.139186 -96.350104
L 723.481658 -96.350104
L 726.82413 -96.350104
L 730.166602 -96.350104
L 733.509074 -96.350104
L 736.851547 -96.350104
L 740.194019 -96.350104
L 743.536491 -96.350104
L 746.878963 -96.350104
L 746.878963 -127.620362
L 746.878963 -127.620362
L 743.536491 -127.620362
L 740.194019 -127.620362
L 736.851547 -127.620362
L 733.509074 -127.620362
L 730.166602 -127.620362
L 726.82413 -127.620362
L 723.481658 -127.620362
L 720.139186 -127.620362
L 716.796714 -127.620362
L 713.454242 -127.620362
L 710.11177 -127.620362
L 706.769298 -127.620362
L 703.426826 -127.620362
L 700.084354 -127.620362
L 696.741882 -127.620362
L 693.39941 -127.620362
L 690.056938 -127.620362
L 686.714465 -127.620362
L 683.371993 -132.23091
L 680.029521 -132.23091
L 676.687049 -132.23091
L 673.344577 -132.23091
L 670.002105 -132.23091
L 666.659633 -132.23091
L 663.317161 -134.64827
L 659.974689 -141.720915
L 656.632217 -141.720915
L 653.289745 -141.720915
L 649.947273 -141.720915
L 646.604801 -141.720915
L 643.262329 -141.720915
L 639.919856 -141.720915
L 636.577384 -141.720915
L 633.234912 -141.720915
L 629.89244 -141.720915
L 626.549968 -141.720915
L 623.207496 -141.720915
L 619.865024 -141.720915
L 616.522552 -140.396709
L 613.18008 -140.396709
L 609.837608 -140.396709
L 606.495136 -138.146564
L 603.152664 -138.146564
L 599.810192 -138.146564
L 596.467719 -138.146564
L 593.125247 -138.146564
L 589.782775 -138.146564
L 586.440303 -138.146564
L 583.097831 -138.146564
L 579.755359 -136.692693
L 576.412887 -138.146564
L 573.070415 -139.648521
L 569.727943 -136.692693
L 566.385471 -136.692693
L 563.042999 -134.572213
L 559.700527 -134.572213
L 556.358055 -134.572213
L 553.015583 -134.572213
L 549.67311 -136.692693
L 546.330638 -148.869616
z
"/>
</defs>
<g clip-path="url(#p40ac76b1b1)">
<use xlink:href="#md89b93d062" x="0" y="233.544" style="fill: #666666; fill-opacity: 0.08"/>
</g>
</g>
<g id="FillBetweenPolyCollection_5">
<defs>
<path id="mbddbf871fd" d="M 546.330638 -148.869616
L 546.330638 -148.869616
L 549.67311 -115.507378
L 553.015583 -115.507378
L 556.358055 -115.507378
L 559.700527 -115.507378
L 563.042999 -115.507378
L 566.385471 -115.507378
L 569.727943 -115.507378
L 573.070415 -115.507378
L 576.412887 -115.507378
L 579.755359 -115.507378
L 583.097831 -115.507378
L 586.440303 -115.507378
L 589.782775 -115.507378
L 593.125247 -115.507378
L 596.467719 -115.507378
L 599.810192 -115.507378
L 603.152664 -115.507378
L 606.495136 -119.133935
L 609.837608 -119.133935
L 613.18008 -119.133935
L 616.522552 -119.133935
L 619.865024 -119.133935
L 623.207496 -119.133935
L 626.549968 -119.133935
L 629.89244 -119.133935
L 633.234912 -119.133935
L 636.577384 -119.133935
L 639.919856 -119.133935
L 643.262329 -119.133935
L 646.604801 -119.133935
L 649.947273 -119.133935
L 653.289745 -119.133935
L 656.632217 -109.912839
L 659.974689 -96.081195
L 663.317161 -96.081195
L 666.659633 -95.474221
L 670.002105 -87.896296
L 673.344577 -75.6964
L 676.687049 -83.285748
L 680.029521 -72.421481
L 683.371993 -70.490301
L 686.714465 -70.490301
L 690.056938 -70.490301
L 693.39941 -64.843556
L 696.741882 -60.233008
L 700.084354 -60.233008
L 703.426826 -60.233008
L 706.769298 -60.233008
L 710.11177 -60.233008
L 713.454242 -60.233008
L 716.796714 -60.233008
L 720.139186 -56.658658
L 723.481658 -56.658658
L 726.82413 -56.658658
L 730.166602 -56.658658
L 733.509074 -56.658658
L 736.851547 -56.658658
L 740.194019 -56.658658
L 743.536491 -56.658658
L 746.878963 -56.658658
L 746.878963 -65.879753
L 746.878963 -65.879753
L 743.536491 -65.879753
L 740.194019 -65.879753
L 736.851547 -65.879753
L 733.509074 -65.879753
L 730.166602 -65.879753
L 726.82413 -65.879753
L 723.481658 -65.879753
L 720.139186 -65.879753
L 716.796714 -71.526498
L 713.454242 -71.526498
L 710.11177 -71.526498
L 706.769298 -71.526498
L 703.426826 -71.526498
L 700.084354 -71.526498
L 696.741882 -71.526498
L 693.39941 -76.137046
L 690.056938 -79.711397
L 686.714465 -79.711397
L 683.371993 -79.711397
L 680.029521 -87.001314
L 676.687049 -94.579238
L 673.344577 -92.947491
L 670.002105 -99.189786
L 666.659633 -110.054053
L 663.317161 -118.668175
L 659.974689 -118.668175
L 656.632217 -132.499819
L 653.289745 -141.720915
L 649.947273 -141.720915
L 646.604801 -141.720915
L 643.262329 -141.720915
L 639.919856 -141.720915
L 636.577384 -141.720915
L 633.234912 -141.720915
L 629.89244 -141.720915
L 626.549968 -141.720915
L 623.207496 -141.720915
L 619.865024 -141.720915
L 616.522552 -141.720915
L 613.18008 -141.720915
L 609.837608 -141.720915
L 606.495136 -141.720915
L 603.152664 -136.126375
L 599.810192 -136.126375
L 596.467719 -136.126375
L 593.125247 -136.126375
L 589.782775 -136.126375
L 586.440303 -136.126375
L 583.097831 -136.126375
L 579.755359 -136.126375
L 576.412887 -136.126375
L 573.070415 -136.126375
L 569.727943 -136.126375
L 566.385471 -136.126375
L 563.042999 -136.126375
L 559.700527 -136.126375
L 556.358055 -136.126375
L 553.015583 -136.126375
L 549.67311 -136.126375
L 546.330638 -148.869616
z
"/>
</defs>
<g clip-path="url(#p40ac76b1b1)">
<use xlink:href="#mbddbf871fd" x="0" y="233.544" style="fill: #0072b2; fill-opacity: 0.08"/>
</g>
</g>
<g id="matplotlib.axis_5">
<g id="xtick_13">
<g id="line2d_61">
<g>
<use xlink:href="#ma3248c20cb" x="546.330638" y="182.418" 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="546.330638" y="194.99675" transform="rotate(-0 546.330638 194.99675)">0</text>
</g>
</g>
<g id="xtick_14">
<g id="line2d_62">
<g>
<use xlink:href="#ma3248c20cb" x="579.755359" y="182.418" 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="579.755359" y="194.99675" transform="rotate(-0 579.755359 194.99675)">100</text>
</g>
</g>
<g id="xtick_15">
<g id="line2d_63">
<g>
<use xlink:href="#ma3248c20cb" x="613.18008" y="182.418" 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="613.18008" y="194.99675" transform="rotate(-0 613.18008 194.99675)">200</text>
</g>
</g>
<g id="xtick_16">
<g id="line2d_64">
<g>
<use xlink:href="#ma3248c20cb" x="646.604801" y="182.418" 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="646.604801" y="194.99675" transform="rotate(-0 646.604801 194.99675)">300</text>
</g>
</g>
<g id="xtick_17">
<g id="line2d_65">
<g>
<use xlink:href="#ma3248c20cb" x="680.029521" y="182.418" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_37">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="680.029521" y="194.99675" transform="rotate(-0 680.029521 194.99675)">400</text>
</g>
</g>
<g id="xtick_18">
<g id="line2d_66">
<g>
<use xlink:href="#ma3248c20cb" x="713.454242" y="182.418" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_38">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="713.454242" y="194.99675" transform="rotate(-0 713.454242 194.99675)">500</text>
</g>
</g>
<g id="xtick_19">
<g id="line2d_67">
<g>
<use xlink:href="#ma3248c20cb" x="746.878963" y="182.418" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_39">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="746.878963" y="194.99675" transform="rotate(-0 746.878963 194.99675)">600</text>
</g>
</g>
<g id="text_40">
<text style="font-size: 9px; font-family: 'DejaVu Sans'; text-anchor: middle" x="646.604801" y="207.499094" transform="rotate(-0 646.604801 207.499094)">Training epoch</text>
</g>
</g>
<g id="matplotlib.axis_6">
<g id="ytick_15">
<g id="line2d_68">
<path d="M 546.330638 176.885342
L 746.878963 176.885342
" clip-path="url(#p40ac76b1b1)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_69">
<g>
<use xlink:href="#m883fbe91cd" x="546.330638" y="176.885342" 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="539.830638" y="179.924717" transform="rotate(-0 539.830638 179.924717)">0</text>
</g>
</g>
<g id="ytick_16">
<g id="line2d_70">
<path d="M 546.330638 158.443151
L 746.878963 158.443151
" clip-path="url(#p40ac76b1b1)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_71">
<g>
<use xlink:href="#m883fbe91cd" x="546.330638" y="158.443151" 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="539.830638" y="161.482526" transform="rotate(-0 539.830638 161.482526)">10</text>
</g>
</g>
<g id="ytick_17">
<g id="line2d_72">
<path d="M 546.330638 140.000959
L 746.878963 140.000959
" clip-path="url(#p40ac76b1b1)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_73">
<g>
<use xlink:href="#m883fbe91cd" x="546.330638" y="140.000959" 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="539.830638" y="143.040334" transform="rotate(-0 539.830638 143.040334)">20</text>
</g>
</g>
<g id="ytick_18">
<g id="line2d_74">
<path d="M 546.330638 121.558767
L 746.878963 121.558767
" clip-path="url(#p40ac76b1b1)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_75">
<g>
<use xlink:href="#m883fbe91cd" x="546.330638" y="121.558767" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_44">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="539.830638" y="124.598142" transform="rotate(-0 539.830638 124.598142)">30</text>
</g>
</g>
<g id="ytick_19">
<g id="line2d_76">
<path d="M 546.330638 103.116575
L 746.878963 103.116575
" clip-path="url(#p40ac76b1b1)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_77">
<g>
<use xlink:href="#m883fbe91cd" x="546.330638" y="103.116575" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_45">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="539.830638" y="106.15595" transform="rotate(-0 539.830638 106.15595)">40</text>
</g>
</g>
<g id="ytick_20">
<g id="line2d_78">
<path d="M 546.330638 84.674384
L 746.878963 84.674384
" clip-path="url(#p40ac76b1b1)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_79">
<g>
<use xlink:href="#m883fbe91cd" x="546.330638" y="84.674384" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_46">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="539.830638" y="87.713759" transform="rotate(-0 539.830638 87.713759)">50</text>
</g>
</g>
<g id="ytick_21">
<g id="line2d_80">
<path d="M 546.330638 66.232192
L 746.878963 66.232192
" clip-path="url(#p40ac76b1b1)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_81">
<g>
<use xlink:href="#m883fbe91cd" x="546.330638" y="66.232192" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_47">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="539.830638" y="69.271567" transform="rotate(-0 539.830638 69.271567)">60</text>
</g>
</g>
<g id="ytick_22">
<g id="line2d_82">
<path d="M 546.330638 47.79
L 746.878963 47.79
" clip-path="url(#p40ac76b1b1)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_83">
<g>
<use xlink:href="#m883fbe91cd" x="546.330638" y="47.79" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_48">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="539.830638" y="50.829375" transform="rotate(-0 539.830638 50.829375)">70</text>
</g>
</g>
<g id="text_49">
<text style="font-size: 9px; font-family: 'DejaVu Sans'; text-anchor: middle" x="523.77892" y="115.104" transform="rotate(-90 523.77892 115.104)">Classification error (%)</text>
</g>
</g>
<g id="line2d_84">
<path d="M 546.330638 84.674384
L 549.67311 107.727123
L 553.015583 107.727123
L 556.358055 107.727123
L 559.700527 107.727123
L 563.042999 107.727123
L 566.385471 107.727123
L 569.727943 107.727123
L 573.070415 107.727123
L 576.412887 107.727123
L 579.755359 107.727123
L 583.097831 107.727123
L 586.440303 107.727123
L 589.782775 107.727123
L 593.125247 107.727123
L 596.467719 107.727123
L 599.810192 107.727123
L 603.152664 107.727123
L 606.495136 107.727123
L 609.837608 103.116575
L 613.18008 103.116575
L 616.522552 103.116575
L 619.865024 103.116575
L 623.207496 103.116575
L 626.549968 103.116575
L 629.89244 103.116575
L 633.234912 103.116575
L 636.577384 103.116575
L 639.919856 103.116575
L 643.262329 103.116575
L 646.604801 103.116575
L 649.947273 107.727123
L 653.289745 112.337671
L 656.632217 112.337671
L 659.974689 130.779863
L 663.317161 126.169315
L 666.659633 130.779863
L 670.002105 140.000959
L 673.344577 144.611507
L 676.687049 153.832603
L 680.029521 158.443151
L 683.371993 163.053699
L 686.714465 163.053699
L 690.056938 167.664247
L 693.39941 172.274795
L 696.741882 172.274795
L 700.084354 172.274795
L 703.426826 172.274795
L 706.769298 172.274795
L 710.11177 172.274795
L 713.454242 172.274795
L 716.796714 172.274795
L 720.139186 176.885342
L 723.481658 176.885342
L 726.82413 176.885342
L 730.166602 176.885342
L 733.509074 176.885342
L 736.851547 176.885342
L 740.194019 172.274795
L 743.536491 172.274795
L 746.878963 172.274795
" clip-path="url(#p40ac76b1b1)" style="fill: none; stroke-dasharray: 1.15,1.8975; stroke-dashoffset: 0; stroke: #222222; stroke-width: 1.15"/>
</g>
<g id="line2d_85">
<path d="M 546.330638 84.674384
L 549.67311 66.232192
L 553.015583 75.453288
L 556.358055 75.453288
L 559.700527 75.453288
L 563.042999 93.895479
L 566.385471 98.506027
L 569.727943 107.727123
L 573.070415 107.727123
L 576.412887 107.727123
L 579.755359 103.116575
L 583.097831 89.284932
L 586.440303 84.674384
L 589.782775 112.337671
L 593.125247 121.558767
L 596.467719 112.337671
L 599.810192 107.727123
L 603.152664 112.337671
L 606.495136 121.558767
L 609.837608 116.948219
L 613.18008 116.948219
L 616.522552 121.558767
L 619.865024 116.948219
L 623.207496 130.779863
L 626.549968 135.390411
L 629.89244 130.779863
L 633.234912 130.779863
L 636.577384 116.948219
L 639.919856 126.169315
L 643.262329 130.779863
L 646.604801 121.558767
L 649.947273 116.948219
L 653.289745 121.558767
L 656.632217 116.948219
L 659.974689 112.337671
L 663.317161 107.727123
L 666.659633 121.558767
L 670.002105 126.169315
L 673.344577 121.558767
L 676.687049 126.169315
L 680.029521 126.169315
L 683.371993 135.390411
L 686.714465 135.390411
L 690.056938 144.611507
L 693.39941 144.611507
L 696.741882 149.222055
L 700.084354 144.611507
L 703.426826 140.000959
L 706.769298 153.832603
L 710.11177 158.443151
L 713.454242 158.443151
L 716.796714 144.611507
L 720.139186 144.611507
L 723.481658 140.000959
L 726.82413 135.390411
L 730.166602 135.390411
L 733.509074 135.390411
L 736.851547 149.222055
L 740.194019 149.222055
L 743.536491 149.222055
L 746.878963 135.390411
" clip-path="url(#p40ac76b1b1)" style="fill: none; stroke-dasharray: 4.255,1.84; stroke-dashoffset: 0; stroke: #cc79a7; stroke-width: 1.15"/>
</g>
<g id="line2d_86">
<path d="M 546.330638 84.674384
L 549.67311 84.674384
L 553.015583 84.674384
L 556.358055 84.674384
L 559.700527 84.674384
L 563.042999 84.674384
L 566.385471 84.674384
L 569.727943 89.284932
L 573.070415 93.895479
L 576.412887 93.895479
L 579.755359 89.284932
L 583.097831 89.284932
L 586.440303 89.284932
L 589.782775 89.284932
L 593.125247 89.284932
L 596.467719 93.895479
L 599.810192 89.284932
L 603.152664 98.506027
L 606.495136 98.506027
L 609.837608 89.284932
L 613.18008 89.284932
L 616.522552 89.284932
L 619.865024 107.727123
L 623.207496 103.116575
L 626.549968 107.727123
L 629.89244 103.116575
L 633.234912 107.727123
L 636.577384 107.727123
L 639.919856 107.727123
L 643.262329 107.727123
L 646.604801 107.727123
L 649.947273 107.727123
L 653.289745 103.116575
L 656.632217 103.116575
L 659.974689 103.116575
L 663.317161 103.116575
L 666.659633 103.116575
L 670.002105 103.116575
L 673.344577 103.116575
L 676.687049 107.727123
L 680.029521 107.727123
L 683.371993 107.727123
L 686.714465 107.727123
L 690.056938 103.116575
L 693.39941 103.116575
L 696.741882 103.116575
L 700.084354 103.116575
L 703.426826 103.116575
L 706.769298 103.116575
L 710.11177 103.116575
L 713.454242 103.116575
L 716.796714 103.116575
L 720.139186 103.116575
L 723.481658 103.116575
L 726.82413 107.727123
L 730.166602 107.727123
L 733.509074 107.727123
L 736.851547 107.727123
L 740.194019 107.727123
L 743.536491 107.727123
L 746.878963 107.727123
" clip-path="url(#p40ac76b1b1)" style="fill: none; stroke: #d55e00; stroke-width: 1.15; stroke-linecap: square"/>
</g>
<g id="line2d_87">
<path d="M 546.330638 84.674384
L 549.67311 116.948219
L 553.015583 121.558767
L 556.358055 121.558767
L 559.700527 121.558767
L 563.042999 121.558767
L 566.385471 116.948219
L 569.727943 116.948219
L 573.070415 112.337671
L 576.412887 112.337671
L 579.755359 116.948219
L 583.097831 112.337671
L 586.440303 112.337671
L 589.782775 112.337671
L 593.125247 112.337671
L 596.467719 112.337671
L 599.810192 112.337671
L 603.152664 112.337671
L 606.495136 112.337671
L 609.837608 107.727123
L 613.18008 107.727123
L 616.522552 107.727123
L 619.865024 103.116575
L 623.207496 103.116575
L 626.549968 103.116575
L 629.89244 103.116575
L 633.234912 103.116575
L 636.577384 103.116575
L 639.919856 103.116575
L 643.262329 103.116575
L 646.604801 103.116575
L 649.947273 103.116575
L 653.289745 103.116575
L 656.632217 103.116575
L 659.974689 103.116575
L 663.317161 112.337671
L 666.659633 116.948219
L 670.002105 116.948219
L 673.344577 116.948219
L 676.687049 116.948219
L 680.029521 116.948219
L 683.371993 116.948219
L 686.714465 121.558767
L 690.056938 121.558767
L 693.39941 121.558767
L 696.741882 121.558767
L 700.084354 121.558767
L 703.426826 121.558767
L 706.769298 121.558767
L 710.11177 121.558767
L 713.454242 121.558767
L 716.796714 121.558767
L 720.139186 121.558767
L 723.481658 121.558767
L 726.82413 121.558767
L 730.166602 121.558767
L 733.509074 121.558767
L 736.851547 121.558767
L 740.194019 121.558767
L 743.536491 121.558767
L 746.878963 121.558767
" clip-path="url(#p40ac76b1b1)" style="fill: none; stroke-dasharray: 4.255,1.84; stroke-dashoffset: 0; stroke: #666666; stroke-width: 1.15"/>
</g>
<g id="line2d_88">
<path d="M 546.330638 84.674384
L 549.67311 107.727123
L 553.015583 107.727123
L 556.358055 107.727123
L 559.700527 107.727123
L 563.042999 107.727123
L 566.385471 107.727123
L 569.727943 107.727123
L 573.070415 107.727123
L 576.412887 107.727123
L 579.755359 107.727123
L 583.097831 107.727123
L 586.440303 107.727123
L 589.782775 107.727123
L 593.125247 107.727123
L 596.467719 107.727123
L 599.810192 107.727123
L 603.152664 107.727123
L 606.495136 103.116575
L 609.837608 103.116575
L 613.18008 103.116575
L 616.522552 103.116575
L 619.865024 103.116575
L 623.207496 103.116575
L 626.549968 103.116575
L 629.89244 103.116575
L 633.234912 103.116575
L 636.577384 103.116575
L 639.919856 103.116575
L 643.262329 103.116575
L 646.604801 103.116575
L 649.947273 103.116575
L 653.289745 103.116575
L 656.632217 112.337671
L 659.974689 126.169315
L 663.317161 126.169315
L 666.659633 130.779863
L 670.002105 140.000959
L 673.344577 149.222055
L 676.687049 144.611507
L 680.029521 153.832603
L 683.371993 158.443151
L 686.714465 158.443151
L 690.056938 158.443151
L 693.39941 163.053699
L 696.741882 167.664247
L 700.084354 167.664247
L 703.426826 167.664247
L 706.769298 167.664247
L 710.11177 167.664247
L 713.454242 167.664247
L 716.796714 167.664247
L 720.139186 172.274795
L 723.481658 172.274795
L 726.82413 172.274795
L 730.166602 172.274795
L 733.509074 172.274795
L 736.851547 172.274795
L 740.194019 172.274795
L 743.536491 172.274795
L 746.878963 172.274795
" clip-path="url(#p40ac76b1b1)" style="fill: none; stroke: #0072b2; stroke-width: 1.7; stroke-linecap: square"/>
</g>
<g id="patch_9">
<path d="M 546.330638 182.418
L 546.330638 47.79
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_10">
<path d="M 546.330638 182.418
L 746.878963 182.418
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="text_50">
<text style="font-size: 9.5px; font-family: 'DejaVu Sans'; text-anchor: middle" x="646.604801" y="41.79" transform="rotate(-0 646.604801 41.79)">(c) Learning at 2,048 edges</text>
</g>
</g>
<g id="text_51">
<text style="font-size: 7px; font-family: 'DejaVu Sans'; text-anchor: end; fill: #666666" x="759.802963" y="224.888219" transform="rotate(-0 759.802963 224.888219)">Exploratory pilot: 5 tasks, 1 component draw per task and size</text>
</g>
<g id="legend_1">
<g id="LineCollection_6">
<path d="M 191.897478 17.023828
L 191.897478 9.523828
" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
</g>
<g id="line2d_89">
<g>
<use xlink:href="#m5a28756987" x="191.897478" y="17.023828" style="fill: #222222; stroke: #222222"/>
</g>
</g>
<g id="line2d_90">
<g>
<use xlink:href="#m5a28756987" x="191.897478" y="9.523828" style="fill: #222222; stroke: #222222"/>
</g>
</g>
<g id="line2d_91">
<path d="M 184.397478 13.273828
L 199.397478 13.273828
" style="fill: none; stroke-dasharray: 1.15,1.8975; stroke-dashoffset: 0; stroke: #222222; stroke-width: 1.15"/>
</g>
<g id="line2d_92">
<g>
<use xlink:href="#mc6aee44d85" x="191.897478" y="13.273828" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
</g>
</g>
<g id="text_52">
<text style="font-size: 7.5px; font-family: 'DejaVu Sans'; text-anchor: start" x="205.397478" y="15.898828" transform="rotate(-0 205.397478 15.898828)">Clean</text>
</g>
<g id="LineCollection_7">
<path d="M 249.182244 17.023828
L 249.182244 9.523828
" style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/>
</g>
<g id="line2d_93">
<g>
<use xlink:href="#ma8555511b6" x="249.182244" y="17.023828" style="fill: #cc79a7; stroke: #cc79a7"/>
</g>
</g>
<g id="line2d_94">
<g>
<use xlink:href="#ma8555511b6" x="249.182244" y="9.523828" style="fill: #cc79a7; stroke: #cc79a7"/>
</g>
</g>
<g id="line2d_95">
<path d="M 241.682244 13.273828
L 256.682244 13.273828
" style="fill: none; stroke-dasharray: 4.255,1.84; stroke-dashoffset: 0; stroke: #cc79a7; stroke-width: 1.15"/>
</g>
<g id="line2d_96">
<g>
<use xlink:href="#m267097d234" x="249.182244" y="13.273828" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/>
</g>
</g>
<g id="text_53">
<text style="font-size: 7.5px; font-family: 'DejaVu Sans'; text-anchor: start" x="262.682244" y="15.898828" transform="rotate(-0 262.682244 15.898828)">Same-RMS noise</text>
</g>
<g id="LineCollection_8">
<path d="M 347.940838 17.023828
L 347.940838 9.523828
" style="fill: none; stroke: #d55e00; stroke-width: 1.15"/>
</g>
<g id="line2d_97">
<g>
<use xlink:href="#m5023a9231e" x="347.940838" y="17.023828" style="fill: #d55e00; stroke: #d55e00"/>
</g>
</g>
<g id="line2d_98">
<g>
<use xlink:href="#m5023a9231e" x="347.940838" y="9.523828" style="fill: #d55e00; stroke: #d55e00"/>
</g>
</g>
<g id="line2d_99">
<path d="M 340.440838 13.273828
L 355.440838 13.273828
" style="fill: none; stroke: #d55e00; stroke-width: 1.15; stroke-linecap: square"/>
</g>
<g id="line2d_100">
<g>
<use xlink:href="#m9198feb5e9" x="347.940838" y="13.273828" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/>
</g>
</g>
<g id="text_54">
<text style="font-size: 7.5px; font-family: 'DejaVu Sans'; text-anchor: start" x="361.440838" y="15.898828" transform="rotate(-0 361.440838 15.898828)">Raw imperfection</text>
</g>
<g id="LineCollection_9">
<path d="M 449.690057 17.023828
L 449.690057 9.523828
" style="fill: none; stroke: #666666; stroke-width: 1.15"/>
</g>
<g id="line2d_101">
<g>
<use xlink:href="#mdc72af2b3b" x="449.690057" y="17.023828" style="fill: #666666; stroke: #666666"/>
</g>
</g>
<g id="line2d_102">
<g>
<use xlink:href="#mdc72af2b3b" x="449.690057" y="9.523828" style="fill: #666666; stroke: #666666"/>
</g>
</g>
<g id="line2d_103">
<path d="M 442.190057 13.273828
L 457.190057 13.273828
" style="fill: none; stroke-dasharray: 4.255,1.84; stroke-dashoffset: 0; stroke: #666666; stroke-width: 1.15"/>
</g>
<g id="line2d_104">
<g>
<use xlink:href="#m87fbca6e18" x="449.690057" y="13.273828" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/>
</g>
</g>
<g id="text_55">
<text style="font-size: 7.5px; font-family: 'DejaVu Sans'; text-anchor: start" x="463.190057" y="15.898828" transform="rotate(-0 463.190057 15.898828)">Static calibration</text>
</g>
<g id="LineCollection_10">
<path d="M 549.212713 17.023828
L 549.212713 9.523828
" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
</g>
<g id="line2d_105">
<g>
<use xlink:href="#mf3fceadd2c" x="549.212713" y="17.023828" style="fill: #0072b2; stroke: #0072b2"/>
</g>
</g>
<g id="line2d_106">
<g>
<use xlink:href="#mf3fceadd2c" x="549.212713" y="9.523828" style="fill: #0072b2; stroke: #0072b2"/>
</g>
</g>
<g id="line2d_107">
<path d="M 541.712713 13.273828
L 556.712713 13.273828
" style="fill: none; stroke: #0072b2; stroke-width: 1.7; stroke-linecap: square"/>
</g>
<g id="line2d_108">
<g>
<use xlink:href="#ma2fa1acfec" x="549.212713" y="13.273828" style="fill: #0072b2; stroke: #0072b2"/>
</g>
</g>
<g id="text_56">
<text style="font-size: 7.5px; font-family: 'DejaVu Sans'; text-anchor: start" x="562.712713" y="15.898828" transform="rotate(-0 562.712713 15.898828)">SDIL</text>
</g>
</g>
</g>
<defs>
<clipPath id="p45b2a52d21">
<rect x="39.628963" y="47.79" width="200.548324" height="134.628"/>
</clipPath>
<clipPath id="pffd4cd4bf2">
<rect x="292.979801" y="47.79" width="200.548324" height="134.628"/>
</clipPath>
<clipPath id="p40ac76b1b1">
<rect x="546.330638" y="47.79" width="200.548324" height="134.628"/>
</clipPath>
</defs>
</svg>
|