diff options
| -rw-r--r-- | experiments/analyze_coupled_ladder_scaling.py | 130 | ||||
| -rw-r--r-- | results/coupled_ladder/p1_scaling_analysis.json | 56 | ||||
| -rw-r--r-- | results/figs/figure_clln_scaling_pilot.pdf | bin | 24101 -> 23584 bytes | |||
| -rw-r--r-- | results/figs/figure_clln_scaling_pilot.png | bin | 243640 -> 209252 bytes | |||
| -rw-r--r-- | results/figs/figure_clln_scaling_pilot.svg | 2937 | ||||
| -rw-r--r-- | visual-composer/coupled-ladder-scaling.md | 12 | ||||
| -rw-r--r-- | visual-composer/qa-ledger.md | 1 |
7 files changed, 1308 insertions, 1828 deletions
diff --git a/experiments/analyze_coupled_ladder_scaling.py b/experiments/analyze_coupled_ladder_scaling.py index bfa31f0..4db593e 100644 --- a/experiments/analyze_coupled_ladder_scaling.py +++ b/experiments/analyze_coupled_ladder_scaling.py @@ -198,20 +198,26 @@ def task_size_matrix( return task_indices, matrix -def slope_bootstrap( +def metric_slope_bootstrap( records: list[dict], sizes: list[int], edges: np.ndarray, *, + metric: str, + y_axis: str, replicates: int, seed: int, ) -> dict: _, clean = task_size_matrix( - records, sizes, "clean", "classification_error") + records, sizes, "clean", metric) _, constant = task_size_matrix( - records, sizes, "constant", "classification_error") + records, sizes, "constant", metric) _, sdil = task_size_matrix( - records, sizes, "sdil", "classification_error") + records, sizes, "sdil", metric) + if metric == "reached_stable_zero_error": + clean = 1.0 - clean + constant = 1.0 - constant + sdil = 1.0 - sdil x = np.log10(edges) def slope(matrix: np.ndarray) -> float: @@ -250,7 +256,8 @@ def slope_bootstrap( return { "x_axis": "log10 learnable edges", - "y_axis": "classification error excess over clean", + "metric": metric, + "y_axis": y_axis, "static_calibration_slope": point_constant, "static_calibration_slope_95ci": interval(constant_slopes), "sdil_slope": point_sdil, @@ -371,13 +378,33 @@ def build_analysis( }, "sizes": sizes, "summaries": summaries, - "excess_error_scaling": slope_bootstrap( + "excess_error_scaling": metric_slope_bootstrap( records, sizes, edges, + metric="classification_error", + y_axis="final classification error excess over clean", replicates=replicates, seed=seed + 1, ), + "excess_error_auc_scaling": metric_slope_bootstrap( + records, + sizes, + edges, + metric="classification_error_auc", + y_axis="classification error AUC excess over clean", + replicates=replicates, + seed=seed + 2, + ), + "excess_stable_failure_scaling": metric_slope_bootstrap( + records, + sizes, + edges, + metric="reached_stable_zero_error", + y_axis="stable failure fraction excess over clean", + replicates=replicates, + seed=seed + 3, + ), "largest_grid_learning_curves": { method: trace_summary(records, sizes[-1], method) for method in METHOD_ORDER @@ -462,64 +489,86 @@ def plot_figure(path: Path, analysis: dict) -> None: axes[0].set_ylim(-3, 70) axes[0].set_xlabel("Learnable edges") axes[0].set_ylabel("Final classification error (%)") - reduction = analysis["excess_error_scaling"][ - "relative_slope_reduction_percent"] - axes[0].set_title( - f"(a) Error-growth slope reduced {reduction:.0f}% vs static calibration") + def scaling_title(letter: str, label: str, key: str) -> str: + scaling = analysis[key] + reduction = scaling["relative_slope_reduction_percent"] + difference_low = scaling["paired_slope_difference_95ci"][0] + if reduction is not None and difference_low > 0.0: + return ( + f"({letter}) {label}\n{reduction:.0f}% lower slope vs static calibration") + return f"({letter}) {label}\nNo resolved slope reduction" + + axes[0].set_title(scaling_title( + "a", "Final-error growth", "excess_error_scaling")) for method in METHOD_ORDER: means = np.asarray([ analysis["summaries"][str(side)]["methods"][method][ - "reached_stable_zero_error" - ]["mean"] * 100.0 + "classification_error_auc" + ]["mean"] + for side in sizes + ]) + intervals = np.asarray([ + analysis["summaries"][str(side)]["methods"][method][ + "classification_error_auc" + ]["task_bootstrap_95ci"] for side in sizes ]) - axes[1].plot( + axes[1].errorbar( edges, means, + yerr=np.vstack((means - intervals[:, 0], intervals[:, 1] - means)), linewidth=1.7 if method == "sdil" else 1.15, markersize=4.5, + capsize=2.0, label=DISPLAY[method], **STYLE[method], ) axes[1].set_xscale("log", base=2) axes[1].set_xticks(edges, edge_labels) - axes[1].set_ylim(-5, 105) + axes[1].set_ylim(-0.03, 0.72) axes[1].set_xlabel("Learnable edges") - axes[1].set_ylabel("Stable zero-error runs (%)") - axes[1].set_title("(b) Recovery remains reliable") + axes[1].set_ylabel("Classification-error AUC") + axes[1].set_title(scaling_title( + "b", "Error-AUC growth", "excess_error_auc_scaling")) for method in METHOD_ORDER: - trace = analysis["largest_grid_learning_curves"][method] - epochs = np.asarray([record["epoch"] for record in trace]) means = np.asarray([ - record["mean_classification_error"] * 100.0 - for record in trace + (1.0 - analysis["summaries"][str(side)]["methods"][method][ + "reached_stable_zero_error" + ]["mean"]) * 100.0 + for side in sizes ]) - standard_errors = np.asarray([ - record["standard_error"] * 100.0 for record in trace + success_intervals = np.asarray([ + analysis["summaries"][str(side)]["methods"][method][ + "reached_stable_zero_error" + ]["task_bootstrap_95ci"] + for side in sizes ]) - axes[2].plot( - epochs, + failure_intervals = np.column_stack(( + 1.0 - success_intervals[:, 1], + 1.0 - success_intervals[:, 0], + )) * 100.0 + axes[2].errorbar( + edges, means, + yerr=np.vstack(( + means - failure_intervals[:, 0], + failure_intervals[:, 1] - means, + )), linewidth=1.7 if method == "sdil" else 1.15, + markersize=4.5, + capsize=2.0, label=DISPLAY[method], - **{key: value for key, value in STYLE[method].items() - if key != "marker"}, - ) - axes[2].fill_between( - epochs, - np.maximum(0.0, means - standard_errors), - means + standard_errors, - color=STYLE[method]["color"], - alpha=0.08, - linewidth=0, + **STYLE[method], ) - axes[2].set_xlim(0, 600) - axes[2].set_ylim(-3, 70) - axes[2].set_xlabel("Training epoch") - axes[2].set_ylabel("Classification error (%)") - axes[2].set_title("(c) Learning at 2,048 edges") + axes[2].set_xscale("log", base=2) + axes[2].set_xticks(edges, edge_labels) + axes[2].set_ylim(-5, 105) + axes[2].set_xlabel("Learnable edges") + axes[2].set_ylabel("Stable failure fraction (%)") + axes[2].set_title(scaling_title( + "c", "Stable-failure growth", "excess_stable_failure_scaling")) for axis in axes: axis.grid(axis="y", color="#D9D9D9", linewidth=0.55, alpha=0.8) @@ -574,6 +623,9 @@ def main() -> None: plot_figure(args.output_figure, analysis) print(json.dumps({ "excess_error_scaling": analysis["excess_error_scaling"], + "excess_error_auc_scaling": analysis["excess_error_auc_scaling"], + "excess_stable_failure_scaling": analysis[ + "excess_stable_failure_scaling"], "largest_side": analysis["sizes"][-1], "largest_side_methods": analysis["summaries"][ str(analysis["sizes"][-1]) diff --git a/results/coupled_ladder/p1_scaling_analysis.json b/results/coupled_ladder/p1_scaling_analysis.json index 4d4866a..d06c232 100644 --- a/results/coupled_ladder/p1_scaling_analysis.json +++ b/results/coupled_ladder/p1_scaling_analysis.json @@ -4,6 +4,7 @@ "bootstrap": { "unit": "task; component draws averaged within task", "task_clusters": 5, + "component_draws_per_task_size": 1, "replicates": 20000, "seed": 20260829, "interval": "percentile 95%" @@ -746,7 +747,8 @@ }, "excess_error_scaling": { "x_axis": "log10 learnable edges", - "y_axis": "classification error excess over clean", + "metric": "classification_error", + "y_axis": "final classification error excess over clean", "static_calibration_slope": 0.10415531736549301, "static_calibration_slope_95ci": [ 0.04974245841148715, @@ -769,6 +771,58 @@ ], "relative_reduction_valid_bootstrap_fraction": 1.0 }, + "excess_error_auc_scaling": { + "x_axis": "log10 learnable edges", + "metric": "classification_error_auc", + "y_axis": "classification error AUC excess over clean", + "static_calibration_slope": 0.02723285591782782, + "static_calibration_slope_95ci": [ + -0.018469611777622092, + 0.06799878937945103 + ], + "sdil_slope": 0.0050630936021534975, + "sdil_slope_95ci": [ + 0.0009725048424469787, + 0.009883683346965023 + ], + "paired_slope_difference": 0.022169762315674323, + "paired_slope_difference_95ci": [ + -0.021041329819854505, + 0.0613401506085447 + ], + "relative_slope_reduction_percent": 81.40814309953083, + "relative_slope_reduction_95ci": [ + -11.782270478082541, + 94.49463684558907 + ], + "relative_reduction_valid_bootstrap_fraction": 0.88435 + }, + "excess_stable_failure_scaling": { + "x_axis": "log10 learnable edges", + "metric": "reached_stable_zero_error", + "y_axis": "stable failure fraction excess over clean", + "static_calibration_slope": 0.17485078862811346, + "static_calibration_slope_95ci": [ + -0.15978252936756204, + 0.39793966729189717 + ], + "sdil_slope": 0.04963588122401385, + "sdil_slope_95ci": [ + -0.16871445018618145, + 0.24817940612006928 + ], + "paired_slope_difference": 0.1252149074040996, + "paired_slope_difference_95ci": [ + -0.08086274712223154, + 0.33129256193043083 + ], + "relative_slope_reduction_percent": 71.6124350290559, + "relative_slope_reduction_95ci": [ + -50.860158714747875, + 597.0884428984873 + ], + "relative_reduction_valid_bootstrap_fraction": 0.87555 + }, "largest_grid_learning_curves": { "clean": [ { diff --git a/results/figs/figure_clln_scaling_pilot.pdf b/results/figs/figure_clln_scaling_pilot.pdf Binary files differindex 07e1e1b..0a2c184 100644 --- a/results/figs/figure_clln_scaling_pilot.pdf +++ b/results/figs/figure_clln_scaling_pilot.pdf diff --git a/results/figs/figure_clln_scaling_pilot.png b/results/figs/figure_clln_scaling_pilot.png Binary files differindex df77b47..b5cfa05 100644 --- a/results/figs/figure_clln_scaling_pilot.png +++ b/results/figs/figure_clln_scaling_pilot.png diff --git a/results/figs/figure_clln_scaling_pilot.svg b/results/figs/figure_clln_scaling_pilot.svg index c1c1a18..f7b3440 100644 --- a/results/figs/figure_clln_scaling_pilot.svg +++ b/results/figs/figure_clln_scaling_pilot.svg @@ -1,12 +1,12 @@ <?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"> +<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="763.964313pt" height="233.544pt" viewBox="0 0 763.964313 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:date>2026-08-29T18:44:35.223930</dc:date> <dc:format>image/svg+xml</dc:format> <dc:creator> <cc:Agent> @@ -21,19 +21,19 @@ </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 + <path d="M 0 233.544 +L 763.964313 233.544 +L 763.964313 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 + <path d="M 36.590313 182.418 +L 239.384466 182.418 +L 239.384466 58.59 +L 36.590313 58.59 z " style="fill: #ffffff"/> </g> @@ -41,2209 +41,1582 @@ z <g id="xtick_1"> <g id="line2d_1"> <defs> - <path id="ma3248c20cb" d="M 0 0 -L 0 3 + <path id="m9b41b0197e" 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"/> + <use xlink:href="#m9b41b0197e" x="45.808229" 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> + <text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="45.808229" y="194.99675" transform="rotate(-0 45.808229 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"/> + <use xlink:href="#m9b41b0197e" x="107.261002" 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> + <text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="107.261002" y="194.99675" transform="rotate(-0 107.261002 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"/> + <use xlink:href="#m9b41b0197e" x="143.20857" 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> + <text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="143.20857" y="194.99675" transform="rotate(-0 143.20857 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"/> + <use xlink:href="#m9b41b0197e" x="168.713776" 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> + <text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="168.713776" y="194.99675" transform="rotate(-0 168.713776 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"/> + <use xlink:href="#m9b41b0197e" x="204.661344" 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> + <text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="204.661344" y="194.99675" transform="rotate(-0 204.661344 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"/> + <use xlink:href="#m9b41b0197e" x="230.16655" 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> + <text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="230.16655" y="194.99675" transform="rotate(-0 230.16655 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> + <text style="font-size: 9px; font-family: 'DejaVu Sans'; text-anchor: middle" x="137.987389" y="207.499094" transform="rotate(-0 137.987389 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"/> + <path d="M 36.590313 177.329178 +L 239.384466 177.329178 +" clip-path="url(#p4664308beb)" 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 + <path id="m5d6e2abc71" 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"/> + <use xlink:href="#m5d6e2abc71" x="36.590313" y="177.329178" 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> + <text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="30.090313" y="180.368553" transform="rotate(-0 30.090313 180.368553)">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"/> + <path d="M 36.590313 143.403699 +L 239.384466 143.403699 +" clip-path="url(#p4664308beb)" 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"/> + <use xlink:href="#m5d6e2abc71" x="36.590313" y="143.403699" 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> + <text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="30.090313" y="146.443074" transform="rotate(-0 30.090313 146.443074)">20</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"/> + <path d="M 36.590313 109.478219 +L 239.384466 109.478219 +" clip-path="url(#p4664308beb)" 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"/> + <use xlink:href="#m5d6e2abc71" x="36.590313" y="109.478219" 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> + <text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="30.090313" y="112.517594" transform="rotate(-0 30.090313 112.517594)">40</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"/> + <path d="M 36.590313 75.55274 +L 239.384466 75.55274 +" clip-path="url(#p4664308beb)" 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"/> + <use xlink:href="#m5d6e2abc71" x="36.590313" y="75.55274" 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> + <text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="30.090313" y="78.592115" transform="rotate(-0 30.090313 78.592115)">60</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 id="text_12"> + <text style="font-size: 9px; font-family: 'DejaVu Sans'; text-anchor: middle" x="14.038594" y="120.504" transform="rotate(-90 14.038594 120.504)">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"> + <path d="M 45.808229 177.329178 +L 45.808229 177.329178 +" clip-path="url(#p4664308beb)" style="fill: none; stroke: #222222; stroke-width: 1.15"/> + <path d="M 107.261002 177.329178 +L 107.261002 177.329178 +" clip-path="url(#p4664308beb)" style="fill: none; stroke: #222222; stroke-width: 1.15"/> + <path d="M 143.20857 177.329178 +L 143.20857 164.607123 +" clip-path="url(#p4664308beb)" style="fill: none; stroke: #222222; stroke-width: 1.15"/> + <path d="M 168.713776 177.329178 +L 168.713776 164.607123 +" clip-path="url(#p4664308beb)" style="fill: none; stroke: #222222; stroke-width: 1.15"/> + <path d="M 204.661344 177.329178 +L 204.661344 164.607123 +" clip-path="url(#p4664308beb)" style="fill: none; stroke: #222222; stroke-width: 1.15"/> + <path d="M 230.16655 177.329178 +L 230.16655 164.607123 +" clip-path="url(#p4664308beb)" style="fill: none; stroke: #222222; stroke-width: 1.15"/> + </g> + <g id="line2d_15"> <defs> - <path id="m5a28756987" d="M 2 0 -L -2 -0 + <path id="m77a354ae1b" 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 clip-path="url(#p4664308beb)"> + <use xlink:href="#m77a354ae1b" x="45.808229" y="177.329178" style="fill: #222222; stroke: #222222"/> + <use xlink:href="#m77a354ae1b" x="107.261002" y="177.329178" style="fill: #222222; stroke: #222222"/> + <use xlink:href="#m77a354ae1b" x="143.20857" y="177.329178" style="fill: #222222; stroke: #222222"/> + <use xlink:href="#m77a354ae1b" x="168.713776" y="177.329178" style="fill: #222222; stroke: #222222"/> + <use xlink:href="#m77a354ae1b" x="204.661344" y="177.329178" style="fill: #222222; stroke: #222222"/> + <use xlink:href="#m77a354ae1b" x="230.16655" y="177.329178" 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 id="line2d_16"> + <g clip-path="url(#p4664308beb)"> + <use xlink:href="#m77a354ae1b" x="45.808229" y="177.329178" style="fill: #222222; stroke: #222222"/> + <use xlink:href="#m77a354ae1b" x="107.261002" y="177.329178" style="fill: #222222; stroke: #222222"/> + <use xlink:href="#m77a354ae1b" x="143.20857" y="164.607123" style="fill: #222222; stroke: #222222"/> + <use xlink:href="#m77a354ae1b" x="168.713776" y="164.607123" style="fill: #222222; stroke: #222222"/> + <use xlink:href="#m77a354ae1b" x="204.661344" y="164.607123" style="fill: #222222; stroke: #222222"/> + <use xlink:href="#m77a354ae1b" x="230.16655" y="164.607123" 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"> + <path d="M 45.808229 177.329178 +L 45.808229 177.329178 +" clip-path="url(#p4664308beb)" style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/> + <path d="M 107.261002 177.329178 +L 107.261002 177.329178 +" clip-path="url(#p4664308beb)" style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/> + <path d="M 143.20857 177.329178 +L 143.20857 151.885068 +" clip-path="url(#p4664308beb)" style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/> + <path d="M 168.713776 177.329178 +L 168.713776 126.440959 +" clip-path="url(#p4664308beb)" style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/> + <path d="M 204.661344 168.847808 +L 204.661344 117.959589 +" clip-path="url(#p4664308beb)" style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/> + <path d="M 230.16655 164.607123 +L 230.16655 109.478219 +" clip-path="url(#p4664308beb)" style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/> + </g> + <g id="line2d_17"> <defs> - <path id="ma8555511b6" d="M 2 0 -L -2 -0 + <path id="m6eb09e5562" 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 clip-path="url(#p4664308beb)"> + <use xlink:href="#m6eb09e5562" x="45.808229" y="177.329178" style="fill: #cc79a7; stroke: #cc79a7"/> + <use xlink:href="#m6eb09e5562" x="107.261002" y="177.329178" style="fill: #cc79a7; stroke: #cc79a7"/> + <use xlink:href="#m6eb09e5562" x="143.20857" y="177.329178" style="fill: #cc79a7; stroke: #cc79a7"/> + <use xlink:href="#m6eb09e5562" x="168.713776" y="177.329178" style="fill: #cc79a7; stroke: #cc79a7"/> + <use xlink:href="#m6eb09e5562" x="204.661344" y="168.847808" style="fill: #cc79a7; stroke: #cc79a7"/> + <use xlink:href="#m6eb09e5562" x="230.16655" y="164.607123" 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 id="line2d_18"> + <g clip-path="url(#p4664308beb)"> + <use xlink:href="#m6eb09e5562" x="45.808229" y="177.329178" style="fill: #cc79a7; stroke: #cc79a7"/> + <use xlink:href="#m6eb09e5562" x="107.261002" y="177.329178" style="fill: #cc79a7; stroke: #cc79a7"/> + <use xlink:href="#m6eb09e5562" x="143.20857" y="151.885068" style="fill: #cc79a7; stroke: #cc79a7"/> + <use xlink:href="#m6eb09e5562" x="168.713776" y="126.440959" style="fill: #cc79a7; stroke: #cc79a7"/> + <use xlink:href="#m6eb09e5562" x="204.661344" y="117.959589" style="fill: #cc79a7; stroke: #cc79a7"/> + <use xlink:href="#m6eb09e5562" x="230.16655" y="109.478219" 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"> + <path d="M 45.808229 92.515479 +L 45.808229 92.515479 +" clip-path="url(#p4664308beb)" style="fill: none; stroke: #d55e00; stroke-width: 1.15"/> + <path d="M 107.261002 71.312055 +L 107.261002 71.312055 +" clip-path="url(#p4664308beb)" style="fill: none; stroke: #d55e00; stroke-width: 1.15"/> + <path d="M 143.20857 92.515479 +L 143.20857 79.793425 +" clip-path="url(#p4664308beb)" style="fill: none; stroke: #d55e00; stroke-width: 1.15"/> + <path d="M 168.713776 105.237534 +L 168.713776 92.515479 +" clip-path="url(#p4664308beb)" style="fill: none; stroke: #d55e00; stroke-width: 1.15"/> + <path d="M 204.661344 92.515479 +L 204.661344 92.515479 +" clip-path="url(#p4664308beb)" style="fill: none; stroke: #d55e00; stroke-width: 1.15"/> + <path d="M 230.16655 113.718904 +L 230.16655 113.718904 +" clip-path="url(#p4664308beb)" style="fill: none; stroke: #d55e00; stroke-width: 1.15"/> + </g> + <g id="line2d_19"> <defs> - <path id="m5023a9231e" d="M 2 0 -L -2 -0 + <path id="m5ecc597777" 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 clip-path="url(#p4664308beb)"> + <use xlink:href="#m5ecc597777" x="45.808229" y="92.515479" style="fill: #d55e00; stroke: #d55e00"/> + <use xlink:href="#m5ecc597777" x="107.261002" y="71.312055" style="fill: #d55e00; stroke: #d55e00"/> + <use xlink:href="#m5ecc597777" x="143.20857" y="92.515479" style="fill: #d55e00; stroke: #d55e00"/> + <use xlink:href="#m5ecc597777" x="168.713776" y="105.237534" style="fill: #d55e00; stroke: #d55e00"/> + <use xlink:href="#m5ecc597777" x="204.661344" y="92.515479" style="fill: #d55e00; stroke: #d55e00"/> + <use xlink:href="#m5ecc597777" x="230.16655" y="113.718904" 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 id="line2d_20"> + <g clip-path="url(#p4664308beb)"> + <use xlink:href="#m5ecc597777" x="45.808229" y="92.515479" style="fill: #d55e00; stroke: #d55e00"/> + <use xlink:href="#m5ecc597777" x="107.261002" y="71.312055" style="fill: #d55e00; stroke: #d55e00"/> + <use xlink:href="#m5ecc597777" x="143.20857" y="79.793425" style="fill: #d55e00; stroke: #d55e00"/> + <use xlink:href="#m5ecc597777" x="168.713776" y="92.515479" style="fill: #d55e00; stroke: #d55e00"/> + <use xlink:href="#m5ecc597777" x="204.661344" y="92.515479" style="fill: #d55e00; stroke: #d55e00"/> + <use xlink:href="#m5ecc597777" x="230.16655" y="113.718904" 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"> + <path d="M 45.808229 177.329178 +L 45.808229 164.607123 +" clip-path="url(#p4664308beb)" style="fill: none; stroke: #666666; stroke-width: 1.15"/> + <path d="M 107.261002 177.329178 +L 107.261002 164.607123 +" clip-path="url(#p4664308beb)" style="fill: none; stroke: #666666; stroke-width: 1.15"/> + <path d="M 143.20857 177.329178 +L 143.20857 164.607123 +" clip-path="url(#p4664308beb)" style="fill: none; stroke: #666666; stroke-width: 1.15"/> + <path d="M 168.713776 177.329178 +L 168.713776 160.366438 +" clip-path="url(#p4664308beb)" style="fill: none; stroke: #666666; stroke-width: 1.15"/> + <path d="M 204.661344 177.329178 +L 204.661344 126.440959 +" clip-path="url(#p4664308beb)" style="fill: none; stroke: #666666; stroke-width: 1.15"/> + <path d="M 230.16655 151.885068 +L 230.16655 100.996849 +" clip-path="url(#p4664308beb)" style="fill: none; stroke: #666666; stroke-width: 1.15"/> + </g> + <g id="line2d_21"> <defs> - <path id="mdc72af2b3b" d="M 2 0 -L -2 -0 + <path id="m0f60229d9a" 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 clip-path="url(#p4664308beb)"> + <use xlink:href="#m0f60229d9a" x="45.808229" y="177.329178" style="fill: #666666; stroke: #666666"/> + <use xlink:href="#m0f60229d9a" x="107.261002" y="177.329178" style="fill: #666666; stroke: #666666"/> + <use xlink:href="#m0f60229d9a" x="143.20857" y="177.329178" style="fill: #666666; stroke: #666666"/> + <use xlink:href="#m0f60229d9a" x="168.713776" y="177.329178" style="fill: #666666; stroke: #666666"/> + <use xlink:href="#m0f60229d9a" x="204.661344" y="177.329178" style="fill: #666666; stroke: #666666"/> + <use xlink:href="#m0f60229d9a" x="230.16655" y="151.885068" 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 id="line2d_22"> + <g clip-path="url(#p4664308beb)"> + <use xlink:href="#m0f60229d9a" x="45.808229" y="164.607123" style="fill: #666666; stroke: #666666"/> + <use xlink:href="#m0f60229d9a" x="107.261002" y="164.607123" style="fill: #666666; stroke: #666666"/> + <use xlink:href="#m0f60229d9a" x="143.20857" y="164.607123" style="fill: #666666; stroke: #666666"/> + <use xlink:href="#m0f60229d9a" x="168.713776" y="160.366438" style="fill: #666666; stroke: #666666"/> + <use xlink:href="#m0f60229d9a" x="204.661344" y="126.440959" style="fill: #666666; stroke: #666666"/> + <use xlink:href="#m0f60229d9a" x="230.16655" y="100.996849" 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"> + <path d="M 45.808229 177.329178 +L 45.808229 177.329178 +" clip-path="url(#p4664308beb)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/> + <path d="M 107.261002 177.329178 +L 107.261002 177.329178 +" clip-path="url(#p4664308beb)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/> + <path d="M 143.20857 177.329178 +L 143.20857 164.607123 +" clip-path="url(#p4664308beb)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/> + <path d="M 168.713776 177.329178 +L 168.713776 164.607123 +" clip-path="url(#p4664308beb)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/> + <path d="M 204.661344 177.329178 +L 204.661344 147.644384 +" clip-path="url(#p4664308beb)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/> + <path d="M 230.16655 177.329178 +L 230.16655 164.607123 +" clip-path="url(#p4664308beb)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/> + </g> + <g id="line2d_23"> <defs> - <path id="mf3fceadd2c" d="M 2 0 -L -2 -0 + <path id="m49e24804b4" 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"/> + <g clip-path="url(#p4664308beb)"> + <use xlink:href="#m49e24804b4" x="45.808229" y="177.329178" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m49e24804b4" x="107.261002" y="177.329178" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m49e24804b4" x="143.20857" y="177.329178" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m49e24804b4" x="168.713776" y="177.329178" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m49e24804b4" x="204.661344" y="177.329178" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m49e24804b4" x="230.16655" y="177.329178" style="fill: #0072b2; stroke: #0072b2"/> + </g> + </g> + <g id="line2d_24"> + <g clip-path="url(#p4664308beb)"> + <use xlink:href="#m49e24804b4" x="45.808229" y="177.329178" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m49e24804b4" x="107.261002" y="177.329178" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m49e24804b4" x="143.20857" y="164.607123" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m49e24804b4" x="168.713776" y="164.607123" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m49e24804b4" x="204.661344" y="147.644384" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m49e24804b4" x="230.16655" y="164.607123" style="fill: #0072b2; stroke: #0072b2"/> + </g> + </g> + <g id="line2d_25"> + <path d="M 45.808229 177.329178 +L 107.261002 177.329178 +L 143.20857 173.088493 +L 168.713776 173.088493 +L 204.661344 173.088493 +L 230.16655 173.088493 +" clip-path="url(#p4664308beb)" 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 + <path id="m81e7bf8b20" 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"/> + <g clip-path="url(#p4664308beb)"> + <use xlink:href="#m81e7bf8b20" x="45.808229" y="177.329178" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/> + <use xlink:href="#m81e7bf8b20" x="107.261002" y="177.329178" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/> + <use xlink:href="#m81e7bf8b20" x="143.20857" y="173.088493" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/> + <use xlink:href="#m81e7bf8b20" x="168.713776" y="173.088493" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/> + <use xlink:href="#m81e7bf8b20" x="204.661344" y="173.088493" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/> + <use xlink:href="#m81e7bf8b20" x="230.16655" y="173.088493" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/> + </g> + </g> + <g id="line2d_26"> + <path d="M 45.808229 177.329178 +L 107.261002 177.329178 +L 143.20857 168.847808 +L 168.713776 160.366438 +L 204.661344 147.644384 +L 230.16655 139.163014 +" clip-path="url(#p4664308beb)" 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 + <path id="m66aa982c3e" 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"/> + <g clip-path="url(#p4664308beb)"> + <use xlink:href="#m66aa982c3e" x="45.808229" y="177.329178" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/> + <use xlink:href="#m66aa982c3e" x="107.261002" y="177.329178" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/> + <use xlink:href="#m66aa982c3e" x="143.20857" y="168.847808" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/> + <use xlink:href="#m66aa982c3e" x="168.713776" y="160.366438" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/> + <use xlink:href="#m66aa982c3e" x="204.661344" y="147.644384" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/> + <use xlink:href="#m66aa982c3e" x="230.16655" y="139.163014" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/> + </g> + </g> + <g id="line2d_27"> + <path d="M 45.808229 92.515479 +L 107.261002 71.312055 +L 143.20857 88.274795 +L 168.713776 96.756164 +L 204.661344 92.515479 +L 230.16655 113.718904 +" clip-path="url(#p4664308beb)" 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 + <path id="mdc3e7d603c" 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"/> + <g clip-path="url(#p4664308beb)"> + <use xlink:href="#mdc3e7d603c" x="45.808229" y="92.515479" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/> + <use xlink:href="#mdc3e7d603c" x="107.261002" y="71.312055" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/> + <use xlink:href="#mdc3e7d603c" x="143.20857" y="88.274795" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/> + <use xlink:href="#mdc3e7d603c" x="168.713776" y="96.756164" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/> + <use xlink:href="#mdc3e7d603c" x="204.661344" y="92.515479" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/> + <use xlink:href="#mdc3e7d603c" x="230.16655" y="113.718904" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/> + </g> + </g> + <g id="line2d_28"> + <path d="M 45.808229 173.088493 +L 107.261002 173.088493 +L 143.20857 173.088493 +L 168.713776 168.847808 +L 204.661344 160.366438 +L 230.16655 126.440959 +" clip-path="url(#p4664308beb)" 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 + <path id="mb0f2541c0f" 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"/> + <g clip-path="url(#p4664308beb)"> + <use xlink:href="#mb0f2541c0f" x="45.808229" y="173.088493" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/> + <use xlink:href="#mb0f2541c0f" x="107.261002" y="173.088493" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/> + <use xlink:href="#mb0f2541c0f" x="143.20857" y="173.088493" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/> + <use xlink:href="#mb0f2541c0f" x="168.713776" y="168.847808" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/> + <use xlink:href="#mb0f2541c0f" x="204.661344" y="160.366438" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/> + <use xlink:href="#mb0f2541c0f" x="230.16655" y="126.440959" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/> + </g> + </g> + <g id="line2d_29"> + <path d="M 45.808229 177.329178 +L 107.261002 177.329178 +L 143.20857 173.088493 +L 168.713776 173.088493 +L 204.661344 164.607123 +L 230.16655 173.088493 +" clip-path="url(#p4664308beb)" 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 + <path id="m5efd9f5213" 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 clip-path="url(#p4664308beb)"> + <use xlink:href="#m5efd9f5213" x="45.808229" y="177.329178" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m5efd9f5213" x="107.261002" y="177.329178" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m5efd9f5213" x="143.20857" y="173.088493" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m5efd9f5213" x="168.713776" y="173.088493" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m5efd9f5213" x="204.661344" y="164.607123" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m5efd9f5213" x="230.16655" y="173.088493" style="fill: #0072b2; stroke: #0072b2"/> </g> </g> <g id="patch_3"> - <path d="M 39.628963 182.418 -L 39.628963 47.79 + <path d="M 36.590313 182.418 +L 36.590313 58.59 " 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 + <path d="M 36.590312 182.418 +L 239.384466 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 id="text_13"> + <text style="font-size: 9.5px; font-family: 'DejaVu Sans'" transform="translate(87.667077 41.952078)">(a) Final-error growth</text> + <text style="font-size: 9.5px; font-family: 'DejaVu Sans'" transform="translate(50.790749 52.59)">88% lower slope 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 + <path d="M 292.186979 182.418 +L 494.981132 182.418 +L 494.981132 58.59 +L 292.186979 58.59 z " style="fill: #ffffff"/> </g> <g id="matplotlib.axis_3"> <g id="xtick_7"> - <g id="line2d_38"> + <g id="line2d_30"> <g> - <use xlink:href="#ma3248c20cb" x="302.095634" y="182.418" style="stroke: #000000; stroke-width: 0.8"/> + <use xlink:href="#m9b41b0197e" x="301.404895" 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 id="text_14"> + <text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="301.404895" y="194.99675" transform="rotate(-0 301.404895 194.99675)">32</text> </g> </g> <g id="xtick_8"> - <g id="line2d_39"> + <g id="line2d_31"> <g> - <use xlink:href="#ma3248c20cb" x="362.867853" y="182.418" style="stroke: #000000; stroke-width: 0.8"/> + <use xlink:href="#m9b41b0197e" x="362.857669" 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 id="text_15"> + <text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="362.857669" y="194.99675" transform="rotate(-0 362.857669 194.99675)">128</text> </g> </g> <g id="xtick_9"> - <g id="line2d_40"> + <g id="line2d_32"> <g> - <use xlink:href="#ma3248c20cb" x="398.417323" y="182.418" style="stroke: #000000; stroke-width: 0.8"/> + <use xlink:href="#m9b41b0197e" x="398.805237" 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 id="text_16"> + <text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="398.805237" y="194.99675" transform="rotate(-0 398.805237 194.99675)">288</text> </g> </g> <g id="xtick_10"> - <g id="line2d_41"> + <g id="line2d_33"> <g> - <use xlink:href="#ma3248c20cb" x="423.640073" y="182.418" style="stroke: #000000; stroke-width: 0.8"/> + <use xlink:href="#m9b41b0197e" x="424.310443" 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 id="text_17"> + <text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="424.310443" y="194.99675" transform="rotate(-0 424.310443 194.99675)">512</text> </g> </g> <g id="xtick_11"> - <g id="line2d_42"> + <g id="line2d_34"> <g> - <use xlink:href="#ma3248c20cb" x="459.189542" y="182.418" style="stroke: #000000; stroke-width: 0.8"/> + <use xlink:href="#m9b41b0197e" x="460.258011" 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 id="text_18"> + <text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="460.258011" y="194.99675" transform="rotate(-0 460.258011 194.99675)">1.2k</text> </g> </g> <g id="xtick_12"> - <g id="line2d_43"> + <g id="line2d_35"> <g> - <use xlink:href="#ma3248c20cb" x="484.412292" y="182.418" style="stroke: #000000; stroke-width: 0.8"/> + <use xlink:href="#m9b41b0197e" x="485.763216" 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 id="text_19"> + <text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="485.763216" y="194.99675" transform="rotate(-0 485.763216 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 id="text_20"> + <text style="font-size: 9px; font-family: 'DejaVu Sans'; text-anchor: middle" x="393.584056" y="207.499094" transform="rotate(-0 393.584056 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 id="ytick_5"> + <g id="line2d_36"> + <path d="M 292.186979 177.46488 +L 494.981132 177.46488 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/> </g> - <g id="line2d_45"> + <g id="line2d_37"> <g> - <use xlink:href="#m883fbe91cd" x="292.979801" y="176.298545" style="stroke: #000000; stroke-width: 0.8"/> + <use xlink:href="#m5d6e2abc71" x="292.186979" y="177.46488" 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 id="text_21"> + <text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="285.686979" y="180.504255" transform="rotate(-0 285.686979 180.504255)">0.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 id="ytick_6"> + <g id="line2d_38"> + <path d="M 292.186979 144.44408 +L 494.981132 144.44408 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/> </g> - <g id="line2d_47"> + <g id="line2d_39"> <g> - <use xlink:href="#m883fbe91cd" x="292.979801" y="151.820727" style="stroke: #000000; stroke-width: 0.8"/> + <use xlink:href="#m5d6e2abc71" x="292.186979" y="144.44408" 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 id="text_22"> + <text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="285.686979" y="147.483455" transform="rotate(-0 285.686979 147.483455)">0.2</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 id="ytick_7"> + <g id="line2d_40"> + <path d="M 292.186979 111.42328 +L 494.981132 111.42328 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/> </g> - <g id="line2d_49"> + <g id="line2d_41"> <g> - <use xlink:href="#m883fbe91cd" x="292.979801" y="127.342909" style="stroke: #000000; stroke-width: 0.8"/> + <use xlink:href="#m5d6e2abc71" x="292.186979" y="111.42328" 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 id="text_23"> + <text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="285.686979" y="114.462655" transform="rotate(-0 285.686979 114.462655)">0.4</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 id="ytick_8"> + <g id="line2d_42"> + <path d="M 292.186979 78.40248 +L 494.981132 78.40248 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/> </g> - <g id="line2d_51"> + <g id="line2d_43"> <g> - <use xlink:href="#m883fbe91cd" x="292.979801" y="102.865091" style="stroke: #000000; stroke-width: 0.8"/> + <use xlink:href="#m5d6e2abc71" x="292.186979" y="78.40248" 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 id="text_24"> + <text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="285.686979" y="81.441855" transform="rotate(-0 285.686979 81.441855)">0.6</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 id="text_25"> + <text style="font-size: 9px; font-family: 'DejaVu Sans'; text-anchor: middle" x="267.09276" y="120.504" transform="rotate(-90 267.09276 120.504)">Classification-error AUC</text> </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="LineCollection_6"> + <path d="M 301.404895 176.570567 +L 301.404895 173.199693 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke: #222222; stroke-width: 1.15"/> + <path d="M 362.857669 176.089013 +L 362.857669 167.627433 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke: #222222; stroke-width: 1.15"/> + <path d="M 398.805237 175.573063 +L 398.805237 156.895673 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke: #222222; stroke-width: 1.15"/> + <path d="M 424.310443 174.850733 +L 424.310443 154.178337 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke: #222222; stroke-width: 1.15"/> + <path d="M 460.258011 171.27348 +L 460.258011 146.267103 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke: #222222; stroke-width: 1.15"/> + <path d="M 485.763216 144.96003 +L 485.763216 129.240753 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke: #222222; stroke-width: 1.15"/> + </g> + <g id="line2d_44"> + <g clip-path="url(#pa9d90a30ac)"> + <use xlink:href="#m77a354ae1b" x="301.404895" y="176.570567" style="fill: #222222; stroke: #222222"/> + <use xlink:href="#m77a354ae1b" x="362.857669" y="176.089013" style="fill: #222222; stroke: #222222"/> + <use xlink:href="#m77a354ae1b" x="398.805237" y="175.573063" style="fill: #222222; stroke: #222222"/> + <use xlink:href="#m77a354ae1b" x="424.310443" y="174.850733" style="fill: #222222; stroke: #222222"/> + <use xlink:href="#m77a354ae1b" x="460.258011" y="171.27348" style="fill: #222222; stroke: #222222"/> + <use xlink:href="#m77a354ae1b" x="485.763216" y="144.96003" style="fill: #222222; stroke: #222222"/> + </g> + </g> + <g id="line2d_45"> + <g clip-path="url(#pa9d90a30ac)"> + <use xlink:href="#m77a354ae1b" x="301.404895" y="173.199693" style="fill: #222222; stroke: #222222"/> + <use xlink:href="#m77a354ae1b" x="362.857669" y="167.627433" style="fill: #222222; stroke: #222222"/> + <use xlink:href="#m77a354ae1b" x="398.805237" y="156.895673" style="fill: #222222; stroke: #222222"/> + <use xlink:href="#m77a354ae1b" x="424.310443" y="154.178337" style="fill: #222222; stroke: #222222"/> + <use xlink:href="#m77a354ae1b" x="460.258011" y="146.267103" style="fill: #222222; stroke: #222222"/> + <use xlink:href="#m77a354ae1b" x="485.763216" y="129.240753" style="fill: #222222; stroke: #222222"/> </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 id="LineCollection_7"> + <path d="M 301.404895 176.708153 +L 301.404895 171.755033 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/> + <path d="M 362.857669 175.538667 +L 362.857669 163.155867 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/> + <path d="M 398.805237 171.720637 +L 398.805237 137.73673 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/> + <path d="M 424.310443 169.278473 +L 424.310443 137.0144 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/> + <path d="M 460.258011 157.205243 +L 460.258011 127.31454 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/> + <path d="M 485.763216 143.962527 +L 485.763216 112.04242 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/> + </g> + <g id="line2d_46"> + <g clip-path="url(#pa9d90a30ac)"> + <use xlink:href="#m6eb09e5562" x="301.404895" y="176.708153" style="fill: #cc79a7; stroke: #cc79a7"/> + <use xlink:href="#m6eb09e5562" x="362.857669" y="175.538667" style="fill: #cc79a7; stroke: #cc79a7"/> + <use xlink:href="#m6eb09e5562" x="398.805237" y="171.720637" style="fill: #cc79a7; stroke: #cc79a7"/> + <use xlink:href="#m6eb09e5562" x="424.310443" y="169.278473" style="fill: #cc79a7; stroke: #cc79a7"/> + <use xlink:href="#m6eb09e5562" x="460.258011" y="157.205243" style="fill: #cc79a7; stroke: #cc79a7"/> + <use xlink:href="#m6eb09e5562" x="485.763216" y="143.962527" style="fill: #cc79a7; stroke: #cc79a7"/> + </g> + </g> + <g id="line2d_47"> + <g clip-path="url(#pa9d90a30ac)"> + <use xlink:href="#m6eb09e5562" x="301.404895" y="171.755033" style="fill: #cc79a7; stroke: #cc79a7"/> + <use xlink:href="#m6eb09e5562" x="362.857669" y="163.155867" style="fill: #cc79a7; stroke: #cc79a7"/> + <use xlink:href="#m6eb09e5562" x="398.805237" y="137.73673" style="fill: #cc79a7; stroke: #cc79a7"/> + <use xlink:href="#m6eb09e5562" x="424.310443" y="137.0144" style="fill: #cc79a7; stroke: #cc79a7"/> + <use xlink:href="#m6eb09e5562" x="460.258011" y="127.31454" style="fill: #cc79a7; stroke: #cc79a7"/> + <use xlink:href="#m6eb09e5562" x="485.763216" y="112.04242" style="fill: #cc79a7; stroke: #cc79a7"/> + </g> + </g> + <g id="LineCollection_8"> + <path d="M 301.404895 97.045473 +L 301.404895 95.11926 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke: #d55e00; stroke-width: 1.15"/> + <path d="M 362.857669 77.955323 +L 362.857669 75.272383 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke: #d55e00; stroke-width: 1.15"/> + <path d="M 398.805237 91.989163 +L 398.805237 81.016627 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke: #d55e00; stroke-width: 1.15"/> + <path d="M 424.310443 107.330077 +L 424.310443 94.91288 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke: #d55e00; stroke-width: 1.15"/> + <path d="M 460.258011 94.91288 +L 460.258011 94.91288 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke: #d55e00; stroke-width: 1.15"/> + <path d="M 485.763216 111.182503 +L 485.763216 104.647137 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke: #d55e00; stroke-width: 1.15"/> + </g> + <g id="line2d_48"> + <g clip-path="url(#pa9d90a30ac)"> + <use xlink:href="#m5ecc597777" x="301.404895" y="97.045473" style="fill: #d55e00; stroke: #d55e00"/> + <use xlink:href="#m5ecc597777" x="362.857669" y="77.955323" style="fill: #d55e00; stroke: #d55e00"/> + <use xlink:href="#m5ecc597777" x="398.805237" y="91.989163" style="fill: #d55e00; stroke: #d55e00"/> + <use xlink:href="#m5ecc597777" x="424.310443" y="107.330077" style="fill: #d55e00; stroke: #d55e00"/> + <use xlink:href="#m5ecc597777" x="460.258011" y="94.91288" style="fill: #d55e00; stroke: #d55e00"/> + <use xlink:href="#m5ecc597777" x="485.763216" y="111.182503" style="fill: #d55e00; stroke: #d55e00"/> + </g> + </g> + <g id="line2d_49"> + <g clip-path="url(#pa9d90a30ac)"> + <use xlink:href="#m5ecc597777" x="301.404895" y="95.11926" style="fill: #d55e00; stroke: #d55e00"/> + <use xlink:href="#m5ecc597777" x="362.857669" y="75.272383" style="fill: #d55e00; stroke: #d55e00"/> + <use xlink:href="#m5ecc597777" x="398.805237" y="81.016627" style="fill: #d55e00; stroke: #d55e00"/> + <use xlink:href="#m5ecc597777" x="424.310443" y="94.91288" style="fill: #d55e00; stroke: #d55e00"/> + <use xlink:href="#m5ecc597777" x="460.258011" y="94.91288" style="fill: #d55e00; stroke: #d55e00"/> + <use xlink:href="#m5ecc597777" x="485.763216" y="104.647137" style="fill: #d55e00; stroke: #d55e00"/> + </g> + </g> + <g id="LineCollection_9"> + <path d="M 301.404895 176.570567 +L 301.404895 162.983883 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke: #666666; stroke-width: 1.15"/> + <path d="M 362.857669 175.057113 +L 362.857669 164.531733 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke: #666666; stroke-width: 1.15"/> + <path d="M 398.805237 175.50427 +L 398.805237 150.979447 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke: #666666; stroke-width: 1.15"/> + <path d="M 424.310443 175.40108 +L 424.310443 151.598587 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke: #666666; stroke-width: 1.15"/> + <path d="M 460.258011 173.268487 +L 460.258011 131.23576 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke: #666666; stroke-width: 1.15"/> + <path d="M 485.763216 144.581667 +L 485.763216 97.939787 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke: #666666; stroke-width: 1.15"/> + </g> + <g id="line2d_50"> + <g clip-path="url(#pa9d90a30ac)"> + <use xlink:href="#m0f60229d9a" x="301.404895" y="176.570567" style="fill: #666666; stroke: #666666"/> + <use xlink:href="#m0f60229d9a" x="362.857669" y="175.057113" style="fill: #666666; stroke: #666666"/> + <use xlink:href="#m0f60229d9a" x="398.805237" y="175.50427" style="fill: #666666; stroke: #666666"/> + <use xlink:href="#m0f60229d9a" x="424.310443" y="175.40108" style="fill: #666666; stroke: #666666"/> + <use xlink:href="#m0f60229d9a" x="460.258011" y="173.268487" style="fill: #666666; stroke: #666666"/> + <use xlink:href="#m0f60229d9a" x="485.763216" y="144.581667" style="fill: #666666; stroke: #666666"/> + </g> + </g> + <g id="line2d_51"> + <g clip-path="url(#pa9d90a30ac)"> + <use xlink:href="#m0f60229d9a" x="301.404895" y="162.983883" style="fill: #666666; stroke: #666666"/> + <use xlink:href="#m0f60229d9a" x="362.857669" y="164.531733" style="fill: #666666; stroke: #666666"/> + <use xlink:href="#m0f60229d9a" x="398.805237" y="150.979447" style="fill: #666666; stroke: #666666"/> + <use xlink:href="#m0f60229d9a" x="424.310443" y="151.598587" style="fill: #666666; stroke: #666666"/> + <use xlink:href="#m0f60229d9a" x="460.258011" y="131.23576" style="fill: #666666; stroke: #666666"/> + <use xlink:href="#m0f60229d9a" x="485.763216" y="97.939787" style="fill: #666666; stroke: #666666"/> + </g> + </g> + <g id="LineCollection_10"> + <path d="M 301.404895 176.570567 +L 301.404895 173.199693 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/> + <path d="M 362.857669 176.089013 +L 362.857669 167.696227 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/> + <path d="M 398.805237 175.573063 +L 398.805237 156.895673 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/> + <path d="M 424.310443 174.850733 +L 424.310443 153.146437 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/> + <path d="M 460.258011 171.27348 +L 460.258011 145.16641 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/> + <path d="M 485.763216 142.105107 +L 485.763216 128.277647 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/> + </g> + <g id="line2d_52"> + <g clip-path="url(#pa9d90a30ac)"> + <use xlink:href="#m49e24804b4" x="301.404895" y="176.570567" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m49e24804b4" x="362.857669" y="176.089013" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m49e24804b4" x="398.805237" y="175.573063" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m49e24804b4" x="424.310443" y="174.850733" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m49e24804b4" x="460.258011" y="171.27348" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m49e24804b4" x="485.763216" y="142.105107" style="fill: #0072b2; stroke: #0072b2"/> + </g> + </g> + <g id="line2d_53"> + <g clip-path="url(#pa9d90a30ac)"> + <use xlink:href="#m49e24804b4" x="301.404895" y="173.199693" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m49e24804b4" x="362.857669" y="167.696227" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m49e24804b4" x="398.805237" y="156.895673" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m49e24804b4" x="424.310443" y="153.146437" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m49e24804b4" x="460.258011" y="145.16641" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m49e24804b4" x="485.763216" y="128.277647" style="fill: #0072b2; stroke: #0072b2"/> + </g> + </g> + <g id="line2d_54"> + <path d="M 301.404895 175.263493 +L 362.857669 172.71814 +L 398.805237 168.79692 +L 424.310443 167.04269 +L 460.258011 160.369737 +L 485.763216 136.980003 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke-dasharray: 1.15,1.8975; stroke-dashoffset: 0; stroke: #222222; stroke-width: 1.15"/> + <g clip-path="url(#pa9d90a30ac)"> + <use xlink:href="#m81e7bf8b20" x="301.404895" y="175.263493" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/> + <use xlink:href="#m81e7bf8b20" x="362.857669" y="172.71814" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/> + <use xlink:href="#m81e7bf8b20" x="398.805237" y="168.79692" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/> + <use xlink:href="#m81e7bf8b20" x="424.310443" y="167.04269" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/> + <use xlink:href="#m81e7bf8b20" x="460.258011" y="160.369737" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/> + <use xlink:href="#m81e7bf8b20" x="485.763216" y="136.980003" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/> + </g> + </g> + <g id="line2d_55"> + <path d="M 301.404895 174.98832 +L 362.857669 170.998307 +L 398.805237 157.54921 +L 424.310443 153.662387 +L 460.258011 142.827437 +L 485.763216 128.380837 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke-dasharray: 4.255,1.84; stroke-dashoffset: 0; stroke: #cc79a7; stroke-width: 1.15"/> + <g clip-path="url(#pa9d90a30ac)"> + <use xlink:href="#m66aa982c3e" x="301.404895" y="174.98832" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/> + <use xlink:href="#m66aa982c3e" x="362.857669" y="170.998307" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/> + <use xlink:href="#m66aa982c3e" x="398.805237" y="157.54921" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/> + <use xlink:href="#m66aa982c3e" x="424.310443" y="153.662387" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/> + <use xlink:href="#m66aa982c3e" x="460.258011" y="142.827437" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/> + <use xlink:href="#m66aa982c3e" x="485.763216" y="128.380837" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/> </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"/> + <path d="M 301.404895 96.082367 +L 362.857669 76.23549 +L 398.805237 87.345613 +L 424.310443 99.281257 +L 460.258011 94.91288 +L 485.763216 108.293183 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke: #d55e00; stroke-width: 1.15; stroke-linecap: square"/> + <g clip-path="url(#pa9d90a30ac)"> + <use xlink:href="#mdc3e7d603c" x="301.404895" y="96.082367" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/> + <use xlink:href="#mdc3e7d603c" x="362.857669" y="76.23549" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/> + <use xlink:href="#mdc3e7d603c" x="398.805237" y="87.345613" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/> + <use xlink:href="#mdc3e7d603c" x="424.310443" y="99.281257" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/> + <use xlink:href="#mdc3e7d603c" x="460.258011" y="94.91288" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/> + <use xlink:href="#mdc3e7d603c" x="485.763216" y="108.293183" style="fill: #d55e00; stroke: #d55e00; 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"/> + <path d="M 301.404895 171.720637 +L 362.857669 169.794423 +L 398.805237 166.801913 +L 424.310443 163.499833 +L 460.258011 157.23964 +L 485.763216 121.260727 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke-dasharray: 4.255,1.84; stroke-dashoffset: 0; stroke: #666666; stroke-width: 1.15"/> + <g clip-path="url(#pa9d90a30ac)"> + <use xlink:href="#mb0f2541c0f" x="301.404895" y="171.720637" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/> + <use xlink:href="#mb0f2541c0f" x="362.857669" y="169.794423" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/> + <use xlink:href="#mb0f2541c0f" x="398.805237" y="166.801913" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/> + <use xlink:href="#mb0f2541c0f" x="424.310443" y="163.499833" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/> + <use xlink:href="#mb0f2541c0f" x="460.258011" y="157.23964" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/> + <use xlink:href="#mb0f2541c0f" x="485.763216" y="121.260727" style="fill: #666666; stroke: #666666; 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"/> + <path d="M 301.404895 175.263493 +L 362.857669 172.786933 +L 398.805237 168.79692 +L 424.310443 166.62993 +L 460.258011 159.81939 +L 485.763216 135.191377 +" clip-path="url(#pa9d90a30ac)" style="fill: none; stroke: #0072b2; stroke-width: 1.7; stroke-linecap: square"/> + <g clip-path="url(#pa9d90a30ac)"> + <use xlink:href="#m5efd9f5213" x="301.404895" y="175.263493" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m5efd9f5213" x="362.857669" y="172.786933" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m5efd9f5213" x="398.805237" y="168.79692" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m5efd9f5213" x="424.310443" y="166.62993" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m5efd9f5213" x="460.258011" y="159.81939" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m5efd9f5213" x="485.763216" y="135.191377" style="fill: #0072b2; stroke: #0072b2"/> </g> </g> <g id="patch_6"> - <path d="M 292.979801 182.418 -L 292.979801 47.79 + <path d="M 292.186979 182.418 +L 292.186979 58.59 " 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 + <path d="M 292.186979 182.418 +L 494.981132 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 id="text_26"> + <text style="font-size: 9.5px; font-family: 'DejaVu Sans'" transform="translate(344.395579 41.952078)">(b) Error-AUC growth</text> + <text style="font-size: 9.5px; font-family: 'DejaVu Sans'" transform="translate(327.233236 52.59)">No resolved slope reduction</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 + <path d="M 547.783646 182.418 +L 750.577799 182.418 +L 750.577799 58.59 +L 547.783646 58.59 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 id="line2d_59"> <g> - <use xlink:href="#ma3248c20cb" x="546.330638" y="182.418" style="stroke: #000000; stroke-width: 0.8"/> + <use xlink:href="#m9b41b0197e" x="557.001562" 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 id="text_27"> + <text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="557.001562" y="194.99675" transform="rotate(-0 557.001562 194.99675)">32</text> </g> </g> <g id="xtick_14"> - <g id="line2d_62"> + <g id="line2d_60"> <g> - <use xlink:href="#ma3248c20cb" x="579.755359" y="182.418" style="stroke: #000000; stroke-width: 0.8"/> + <use xlink:href="#m9b41b0197e" x="618.454336" 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 id="text_28"> + <text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="618.454336" y="194.99675" transform="rotate(-0 618.454336 194.99675)">128</text> </g> </g> <g id="xtick_15"> - <g id="line2d_63"> + <g id="line2d_61"> <g> - <use xlink:href="#ma3248c20cb" x="613.18008" y="182.418" style="stroke: #000000; stroke-width: 0.8"/> + <use xlink:href="#m9b41b0197e" x="654.401904" 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 id="text_29"> + <text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="654.401904" y="194.99675" transform="rotate(-0 654.401904 194.99675)">288</text> </g> </g> <g id="xtick_16"> - <g id="line2d_64"> + <g id="line2d_62"> <g> - <use xlink:href="#ma3248c20cb" x="646.604801" y="182.418" style="stroke: #000000; stroke-width: 0.8"/> + <use xlink:href="#m9b41b0197e" x="679.907109" 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 id="text_30"> + <text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="679.907109" y="194.99675" transform="rotate(-0 679.907109 194.99675)">512</text> </g> </g> <g id="xtick_17"> - <g id="line2d_65"> + <g id="line2d_63"> <g> - <use xlink:href="#ma3248c20cb" x="680.029521" y="182.418" style="stroke: #000000; stroke-width: 0.8"/> + <use xlink:href="#m9b41b0197e" x="715.854678" 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 id="text_31"> + <text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="715.854678" y="194.99675" transform="rotate(-0 715.854678 194.99675)">1.2k</text> </g> </g> <g id="xtick_18"> - <g id="line2d_66"> + <g id="line2d_64"> <g> - <use xlink:href="#ma3248c20cb" x="713.454242" y="182.418" style="stroke: #000000; stroke-width: 0.8"/> + <use xlink:href="#m9b41b0197e" x="741.359883" 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 id="text_32"> + <text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="741.359883" y="194.99675" transform="rotate(-0 741.359883 194.99675)">2.0k</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 id="text_33"> + <text style="font-size: 9px; font-family: 'DejaVu Sans'; text-anchor: middle" x="649.180722" y="207.499094" transform="rotate(-0 649.180722 207.499094)">Learnable edges</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 id="ytick_9"> + <g id="line2d_65"> + <path d="M 547.783646 176.789455 +L 750.577799 176.789455 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/> </g> - <g id="line2d_73"> + <g id="line2d_66"> <g> - <use xlink:href="#m883fbe91cd" x="546.330638" y="140.000959" style="stroke: #000000; stroke-width: 0.8"/> + <use xlink:href="#m5d6e2abc71" x="547.783646" y="176.789455" 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 id="text_34"> + <text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="541.283646" y="179.82883" transform="rotate(-0 541.283646 179.82883)">0</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 id="ytick_10"> + <g id="line2d_67"> + <path d="M 547.783646 154.275273 +L 750.577799 154.275273 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/> </g> - <g id="line2d_75"> + <g id="line2d_68"> <g> - <use xlink:href="#m883fbe91cd" x="546.330638" y="121.558767" style="stroke: #000000; stroke-width: 0.8"/> + <use xlink:href="#m5d6e2abc71" x="547.783646" y="154.275273" 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 id="text_35"> + <text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="541.283646" y="157.314648" transform="rotate(-0 541.283646 157.314648)">20</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 id="ytick_11"> + <g id="line2d_69"> + <path d="M 547.783646 131.761091 +L 750.577799 131.761091 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/> </g> - <g id="line2d_77"> + <g id="line2d_70"> <g> - <use xlink:href="#m883fbe91cd" x="546.330638" y="103.116575" style="stroke: #000000; stroke-width: 0.8"/> + <use xlink:href="#m5d6e2abc71" x="547.783646" y="131.761091" 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 id="text_36"> + <text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="541.283646" y="134.800466" transform="rotate(-0 541.283646 134.800466)">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 id="ytick_12"> + <g id="line2d_71"> + <path d="M 547.783646 109.246909 +L 750.577799 109.246909 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/> </g> - <g id="line2d_79"> + <g id="line2d_72"> <g> - <use xlink:href="#m883fbe91cd" x="546.330638" y="84.674384" style="stroke: #000000; stroke-width: 0.8"/> + <use xlink:href="#m5d6e2abc71" x="547.783646" y="109.246909" 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 id="text_37"> + <text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="541.283646" y="112.286284" transform="rotate(-0 541.283646 112.286284)">60</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 id="ytick_13"> + <g id="line2d_73"> + <path d="M 547.783646 86.732727 +L 750.577799 86.732727 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/> </g> - <g id="line2d_81"> + <g id="line2d_74"> <g> - <use xlink:href="#m883fbe91cd" x="546.330638" y="66.232192" style="stroke: #000000; stroke-width: 0.8"/> + <use xlink:href="#m5d6e2abc71" x="547.783646" y="86.732727" 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 id="text_38"> + <text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="541.283646" y="89.772102" transform="rotate(-0 541.283646 89.772102)">80</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 id="ytick_14"> + <g id="line2d_75"> + <path d="M 547.783646 64.218545 +L 750.577799 64.218545 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/> </g> - <g id="line2d_83"> + <g id="line2d_76"> <g> - <use xlink:href="#m883fbe91cd" x="546.330638" y="47.79" style="stroke: #000000; stroke-width: 0.8"/> + <use xlink:href="#m5d6e2abc71" x="547.783646" y="64.218545" 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 id="text_39"> + <text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: end" x="541.283646" y="67.25792" transform="rotate(-0 541.283646 67.25792)">100</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 id="text_40"> + <text style="font-size: 9px; font-family: 'DejaVu Sans'; text-anchor: middle" x="520.141927" y="120.504" transform="rotate(-90 520.141927 120.504)">Stable failure fraction (%)</text> + </g> + </g> + <g id="LineCollection_11"> + <path d="M 557.001562 176.789455 +L 557.001562 176.789455 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke: #222222; stroke-width: 1.15"/> + <path d="M 618.454336 176.789455 +L 618.454336 176.789455 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke: #222222; stroke-width: 1.15"/> + <path d="M 654.401904 176.789455 +L 654.401904 109.246909 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke: #222222; stroke-width: 1.15"/> + <path d="M 679.907109 176.789455 +L 679.907109 109.246909 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke: #222222; stroke-width: 1.15"/> + <path d="M 715.854678 176.789455 +L 715.854678 109.246909 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke: #222222; stroke-width: 1.15"/> + <path d="M 741.359883 176.789455 +L 741.359883 109.246909 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke: #222222; stroke-width: 1.15"/> + </g> + <g id="line2d_77"> + <g clip-path="url(#p6506b7584e)"> + <use xlink:href="#m77a354ae1b" x="557.001562" y="176.789455" style="fill: #222222; stroke: #222222"/> + <use xlink:href="#m77a354ae1b" x="618.454336" y="176.789455" style="fill: #222222; stroke: #222222"/> + <use xlink:href="#m77a354ae1b" x="654.401904" y="176.789455" style="fill: #222222; stroke: #222222"/> + <use xlink:href="#m77a354ae1b" x="679.907109" y="176.789455" style="fill: #222222; stroke: #222222"/> + <use xlink:href="#m77a354ae1b" x="715.854678" y="176.789455" style="fill: #222222; stroke: #222222"/> + <use xlink:href="#m77a354ae1b" x="741.359883" y="176.789455" style="fill: #222222; stroke: #222222"/> + </g> + </g> + <g id="line2d_78"> + <g clip-path="url(#p6506b7584e)"> + <use xlink:href="#m77a354ae1b" x="557.001562" y="176.789455" style="fill: #222222; stroke: #222222"/> + <use xlink:href="#m77a354ae1b" x="618.454336" y="176.789455" style="fill: #222222; stroke: #222222"/> + <use xlink:href="#m77a354ae1b" x="654.401904" y="109.246909" style="fill: #222222; stroke: #222222"/> + <use xlink:href="#m77a354ae1b" x="679.907109" y="109.246909" style="fill: #222222; stroke: #222222"/> + <use xlink:href="#m77a354ae1b" x="715.854678" y="109.246909" style="fill: #222222; stroke: #222222"/> + <use xlink:href="#m77a354ae1b" x="741.359883" y="109.246909" style="fill: #222222; stroke: #222222"/> + </g> + </g> + <g id="LineCollection_12"> + <path d="M 557.001562 176.789455 +L 557.001562 176.789455 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/> + <path d="M 618.454336 176.789455 +L 618.454336 176.789455 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/> + <path d="M 654.401904 176.789455 +L 654.401904 109.246909 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/> + <path d="M 679.907109 176.789455 +L 679.907109 109.246909 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/> + <path d="M 715.854678 131.761091 +L 715.854678 64.218545 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/> + <path d="M 741.359883 131.761091 +L 741.359883 64.218545 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/> + </g> + <g id="line2d_79"> + <g clip-path="url(#p6506b7584e)"> + <use xlink:href="#m6eb09e5562" x="557.001562" y="176.789455" style="fill: #cc79a7; stroke: #cc79a7"/> + <use xlink:href="#m6eb09e5562" x="618.454336" y="176.789455" style="fill: #cc79a7; stroke: #cc79a7"/> + <use xlink:href="#m6eb09e5562" x="654.401904" y="176.789455" style="fill: #cc79a7; stroke: #cc79a7"/> + <use xlink:href="#m6eb09e5562" x="679.907109" y="176.789455" style="fill: #cc79a7; stroke: #cc79a7"/> + <use xlink:href="#m6eb09e5562" x="715.854678" y="131.761091" style="fill: #cc79a7; stroke: #cc79a7"/> + <use xlink:href="#m6eb09e5562" x="741.359883" y="131.761091" style="fill: #cc79a7; stroke: #cc79a7"/> + </g> + </g> + <g id="line2d_80"> + <g clip-path="url(#p6506b7584e)"> + <use xlink:href="#m6eb09e5562" x="557.001562" y="176.789455" style="fill: #cc79a7; stroke: #cc79a7"/> + <use xlink:href="#m6eb09e5562" x="618.454336" y="176.789455" style="fill: #cc79a7; stroke: #cc79a7"/> + <use xlink:href="#m6eb09e5562" x="654.401904" y="109.246909" style="fill: #cc79a7; stroke: #cc79a7"/> + <use xlink:href="#m6eb09e5562" x="679.907109" y="109.246909" style="fill: #cc79a7; stroke: #cc79a7"/> + <use xlink:href="#m6eb09e5562" x="715.854678" y="64.218545" style="fill: #cc79a7; stroke: #cc79a7"/> + <use xlink:href="#m6eb09e5562" x="741.359883" y="64.218545" style="fill: #cc79a7; stroke: #cc79a7"/> + </g> + </g> + <g id="LineCollection_13"> + <path d="M 557.001562 64.218545 +L 557.001562 64.218545 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke: #d55e00; stroke-width: 1.15"/> + <path d="M 618.454336 64.218545 +L 618.454336 64.218545 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke: #d55e00; stroke-width: 1.15"/> + <path d="M 654.401904 64.218545 +L 654.401904 64.218545 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke: #d55e00; stroke-width: 1.15"/> + <path d="M 679.907109 64.218545 +L 679.907109 64.218545 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke: #d55e00; stroke-width: 1.15"/> + <path d="M 715.854678 64.218545 +L 715.854678 64.218545 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke: #d55e00; stroke-width: 1.15"/> + <path d="M 741.359883 64.218545 +L 741.359883 64.218545 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke: #d55e00; stroke-width: 1.15"/> + </g> + <g id="line2d_81"> + <g clip-path="url(#p6506b7584e)"> + <use xlink:href="#m5ecc597777" x="557.001562" y="64.218545" style="fill: #d55e00; stroke: #d55e00"/> + <use xlink:href="#m5ecc597777" x="618.454336" y="64.218545" style="fill: #d55e00; stroke: #d55e00"/> + <use xlink:href="#m5ecc597777" x="654.401904" y="64.218545" style="fill: #d55e00; stroke: #d55e00"/> + <use xlink:href="#m5ecc597777" x="679.907109" y="64.218545" style="fill: #d55e00; stroke: #d55e00"/> + <use xlink:href="#m5ecc597777" x="715.854678" y="64.218545" style="fill: #d55e00; stroke: #d55e00"/> + <use xlink:href="#m5ecc597777" x="741.359883" y="64.218545" style="fill: #d55e00; stroke: #d55e00"/> + </g> + </g> + <g id="line2d_82"> + <g clip-path="url(#p6506b7584e)"> + <use xlink:href="#m5ecc597777" x="557.001562" y="64.218545" style="fill: #d55e00; stroke: #d55e00"/> + <use xlink:href="#m5ecc597777" x="618.454336" y="64.218545" style="fill: #d55e00; stroke: #d55e00"/> + <use xlink:href="#m5ecc597777" x="654.401904" y="64.218545" style="fill: #d55e00; stroke: #d55e00"/> + <use xlink:href="#m5ecc597777" x="679.907109" y="64.218545" style="fill: #d55e00; stroke: #d55e00"/> + <use xlink:href="#m5ecc597777" x="715.854678" y="64.218545" style="fill: #d55e00; stroke: #d55e00"/> + <use xlink:href="#m5ecc597777" x="741.359883" y="64.218545" style="fill: #d55e00; stroke: #d55e00"/> + </g> + </g> + <g id="LineCollection_14"> + <path d="M 557.001562 176.789455 +L 557.001562 109.246909 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke: #666666; stroke-width: 1.15"/> + <path d="M 618.454336 176.789455 +L 618.454336 109.246909 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke: #666666; stroke-width: 1.15"/> + <path d="M 654.401904 176.789455 +L 654.401904 109.246909 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke: #666666; stroke-width: 1.15"/> + <path d="M 679.907109 176.789455 +L 679.907109 86.732727 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke: #666666; stroke-width: 1.15"/> + <path d="M 715.854678 176.789455 +L 715.854678 109.246909 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke: #666666; stroke-width: 1.15"/> + <path d="M 741.359883 64.218545 +L 741.359883 64.218545 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke: #666666; stroke-width: 1.15"/> + </g> + <g id="line2d_83"> + <g clip-path="url(#p6506b7584e)"> + <use xlink:href="#m0f60229d9a" x="557.001562" y="176.789455" style="fill: #666666; stroke: #666666"/> + <use xlink:href="#m0f60229d9a" x="618.454336" y="176.789455" style="fill: #666666; stroke: #666666"/> + <use xlink:href="#m0f60229d9a" x="654.401904" y="176.789455" style="fill: #666666; stroke: #666666"/> + <use xlink:href="#m0f60229d9a" x="679.907109" y="176.789455" style="fill: #666666; stroke: #666666"/> + <use xlink:href="#m0f60229d9a" x="715.854678" y="176.789455" style="fill: #666666; stroke: #666666"/> + <use xlink:href="#m0f60229d9a" x="741.359883" y="64.218545" style="fill: #666666; stroke: #666666"/> </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 clip-path="url(#p6506b7584e)"> + <use xlink:href="#m0f60229d9a" x="557.001562" y="109.246909" style="fill: #666666; stroke: #666666"/> + <use xlink:href="#m0f60229d9a" x="618.454336" y="109.246909" style="fill: #666666; stroke: #666666"/> + <use xlink:href="#m0f60229d9a" x="654.401904" y="109.246909" style="fill: #666666; stroke: #666666"/> + <use xlink:href="#m0f60229d9a" x="679.907109" y="86.732727" style="fill: #666666; stroke: #666666"/> + <use xlink:href="#m0f60229d9a" x="715.854678" y="109.246909" style="fill: #666666; stroke: #666666"/> + <use xlink:href="#m0f60229d9a" x="741.359883" y="64.218545" style="fill: #666666; stroke: #666666"/> + </g> + </g> + <g id="LineCollection_15"> + <path d="M 557.001562 176.789455 +L 557.001562 176.789455 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/> + <path d="M 618.454336 176.789455 +L 618.454336 176.789455 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/> + <path d="M 654.401904 176.789455 +L 654.401904 109.246909 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/> + <path d="M 679.907109 176.789455 +L 679.907109 109.246909 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/> + <path d="M 715.854678 176.789455 +L 715.854678 86.732727 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/> + <path d="M 741.359883 176.789455 +L 741.359883 109.246909 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/> </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 clip-path="url(#p6506b7584e)"> + <use xlink:href="#m49e24804b4" x="557.001562" y="176.789455" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m49e24804b4" x="618.454336" y="176.789455" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m49e24804b4" x="654.401904" y="176.789455" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m49e24804b4" x="679.907109" y="176.789455" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m49e24804b4" x="715.854678" y="176.789455" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m49e24804b4" x="741.359883" y="176.789455" style="fill: #0072b2; stroke: #0072b2"/> + </g> </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 clip-path="url(#p6506b7584e)"> + <use xlink:href="#m49e24804b4" x="557.001562" y="176.789455" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m49e24804b4" x="618.454336" y="176.789455" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m49e24804b4" x="654.401904" y="109.246909" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m49e24804b4" x="679.907109" y="109.246909" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m49e24804b4" x="715.854678" y="86.732727" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m49e24804b4" x="741.359883" y="109.246909" style="fill: #0072b2; stroke: #0072b2"/> + </g> </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"/> + <path d="M 557.001562 176.789455 +L 618.454336 176.789455 +L 654.401904 154.275273 +L 679.907109 154.275273 +L 715.854678 154.275273 +L 741.359883 154.275273 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke-dasharray: 1.15,1.8975; stroke-dashoffset: 0; stroke: #222222; stroke-width: 1.15"/> + <g clip-path="url(#p6506b7584e)"> + <use xlink:href="#m81e7bf8b20" x="557.001562" y="176.789455" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/> + <use xlink:href="#m81e7bf8b20" x="618.454336" y="176.789455" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/> + <use xlink:href="#m81e7bf8b20" x="654.401904" y="154.275273" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/> + <use xlink:href="#m81e7bf8b20" x="679.907109" y="154.275273" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/> + <use xlink:href="#m81e7bf8b20" x="715.854678" y="154.275273" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/> + <use xlink:href="#m81e7bf8b20" x="741.359883" y="154.275273" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/> + </g> </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"/> + <path d="M 557.001562 176.789455 +L 618.454336 176.789455 +L 654.401904 154.275273 +L 679.907109 154.275273 +L 715.854678 86.732727 +L 741.359883 86.732727 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke-dasharray: 4.255,1.84; stroke-dashoffset: 0; stroke: #cc79a7; stroke-width: 1.15"/> + <g clip-path="url(#p6506b7584e)"> + <use xlink:href="#m66aa982c3e" x="557.001562" y="176.789455" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/> + <use xlink:href="#m66aa982c3e" x="618.454336" y="176.789455" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/> + <use xlink:href="#m66aa982c3e" x="654.401904" y="154.275273" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/> + <use xlink:href="#m66aa982c3e" x="679.907109" y="154.275273" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/> + <use xlink:href="#m66aa982c3e" x="715.854678" y="86.732727" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/> + <use xlink:href="#m66aa982c3e" x="741.359883" y="86.732727" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/> + </g> + </g> + <g id="line2d_89"> + <path d="M 557.001562 64.218545 +L 618.454336 64.218545 +L 654.401904 64.218545 +L 679.907109 64.218545 +L 715.854678 64.218545 +L 741.359883 64.218545 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke: #d55e00; stroke-width: 1.15; stroke-linecap: square"/> + <g clip-path="url(#p6506b7584e)"> + <use xlink:href="#mdc3e7d603c" x="557.001562" y="64.218545" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/> + <use xlink:href="#mdc3e7d603c" x="618.454336" y="64.218545" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/> + <use xlink:href="#mdc3e7d603c" x="654.401904" y="64.218545" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/> + <use xlink:href="#mdc3e7d603c" x="679.907109" y="64.218545" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/> + <use xlink:href="#mdc3e7d603c" x="715.854678" y="64.218545" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/> + <use xlink:href="#mdc3e7d603c" x="741.359883" y="64.218545" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/> + </g> + </g> + <g id="line2d_90"> + <path d="M 557.001562 154.275273 +L 618.454336 154.275273 +L 654.401904 154.275273 +L 679.907109 131.761091 +L 715.854678 154.275273 +L 741.359883 64.218545 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke-dasharray: 4.255,1.84; stroke-dashoffset: 0; stroke: #666666; stroke-width: 1.15"/> + <g clip-path="url(#p6506b7584e)"> + <use xlink:href="#mb0f2541c0f" x="557.001562" y="154.275273" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/> + <use xlink:href="#mb0f2541c0f" x="618.454336" y="154.275273" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/> + <use xlink:href="#mb0f2541c0f" x="654.401904" y="154.275273" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/> + <use xlink:href="#mb0f2541c0f" x="679.907109" y="131.761091" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/> + <use xlink:href="#mb0f2541c0f" x="715.854678" y="154.275273" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/> + <use xlink:href="#mb0f2541c0f" x="741.359883" y="64.218545" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/> + </g> + </g> + <g id="line2d_91"> + <path d="M 557.001562 176.789455 +L 618.454336 176.789455 +L 654.401904 154.275273 +L 679.907109 154.275273 +L 715.854678 131.761091 +L 741.359883 154.275273 +" clip-path="url(#p6506b7584e)" style="fill: none; stroke: #0072b2; stroke-width: 1.7; stroke-linecap: square"/> + <g clip-path="url(#p6506b7584e)"> + <use xlink:href="#m5efd9f5213" x="557.001562" y="176.789455" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m5efd9f5213" x="618.454336" y="176.789455" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m5efd9f5213" x="654.401904" y="154.275273" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m5efd9f5213" x="679.907109" y="154.275273" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m5efd9f5213" x="715.854678" y="131.761091" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m5efd9f5213" x="741.359883" y="154.275273" style="fill: #0072b2; stroke: #0072b2"/> + </g> </g> <g id="patch_9"> - <path d="M 546.330638 182.418 -L 546.330638 47.79 + <path d="M 547.783646 182.418 +L 547.783646 58.59 " 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 + <path d="M 547.783646 182.418 +L 750.577799 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 id="text_41"> + <text style="font-size: 9.5px; font-family: 'DejaVu Sans'" transform="translate(591.557285 41.952078)">(c) Stable-failure growth</text> + <text style="font-size: 9.5px; font-family: 'DejaVu Sans'" transform="translate(582.829902 52.59)">No resolved slope reduction</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 id="text_42"> + <text style="font-size: 7px; font-family: 'DejaVu Sans'; text-anchor: end; fill: #666666" x="756.764312" y="224.888219" transform="rotate(-0 756.764312 224.888219)">Exploratory pilot: 5 tasks, 1 component draws 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 + <g id="LineCollection_16"> + <path d="M 188.858828 17.023828 +L 188.858828 9.523828 " style="fill: none; stroke: #222222; stroke-width: 1.15"/> </g> - <g id="line2d_89"> + <g id="line2d_92"> <g> - <use xlink:href="#m5a28756987" x="191.897478" y="17.023828" style="fill: #222222; stroke: #222222"/> + <use xlink:href="#m77a354ae1b" x="188.858828" y="17.023828" style="fill: #222222; stroke: #222222"/> </g> </g> - <g id="line2d_90"> + <g id="line2d_93"> <g> - <use xlink:href="#m5a28756987" x="191.897478" y="9.523828" style="fill: #222222; stroke: #222222"/> + <use xlink:href="#m77a354ae1b" x="188.858828" 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 + <g id="line2d_94"> + <path d="M 181.358828 13.273828 +L 196.358828 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 id="line2d_95"> <g> - <use xlink:href="#mc6aee44d85" x="191.897478" y="13.273828" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/> + <use xlink:href="#m81e7bf8b20" x="188.858828" 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 id="text_43"> + <text style="font-size: 7.5px; font-family: 'DejaVu Sans'; text-anchor: start" x="202.358828" y="15.898828" transform="rotate(-0 202.358828 15.898828)">Clean</text> </g> - <g id="LineCollection_7"> - <path d="M 249.182244 17.023828 -L 249.182244 9.523828 + <g id="LineCollection_17"> + <path d="M 246.143594 17.023828 +L 246.143594 9.523828 " style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/> </g> - <g id="line2d_93"> + <g id="line2d_96"> <g> - <use xlink:href="#ma8555511b6" x="249.182244" y="17.023828" style="fill: #cc79a7; stroke: #cc79a7"/> + <use xlink:href="#m6eb09e5562" x="246.143594" y="17.023828" style="fill: #cc79a7; stroke: #cc79a7"/> </g> </g> - <g id="line2d_94"> + <g id="line2d_97"> <g> - <use xlink:href="#ma8555511b6" x="249.182244" y="9.523828" style="fill: #cc79a7; stroke: #cc79a7"/> + <use xlink:href="#m6eb09e5562" x="246.143594" 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 + <g id="line2d_98"> + <path d="M 238.643594 13.273828 +L 253.643594 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 id="line2d_99"> <g> - <use xlink:href="#m267097d234" x="249.182244" y="13.273828" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/> + <use xlink:href="#m66aa982c3e" x="246.143594" 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 id="text_44"> + <text style="font-size: 7.5px; font-family: 'DejaVu Sans'; text-anchor: start" x="259.643594" y="15.898828" transform="rotate(-0 259.643594 15.898828)">Same-RMS noise</text> </g> - <g id="LineCollection_8"> - <path d="M 347.940838 17.023828 -L 347.940838 9.523828 + <g id="LineCollection_18"> + <path d="M 344.902187 17.023828 +L 344.902187 9.523828 " style="fill: none; stroke: #d55e00; stroke-width: 1.15"/> </g> - <g id="line2d_97"> + <g id="line2d_100"> <g> - <use xlink:href="#m5023a9231e" x="347.940838" y="17.023828" style="fill: #d55e00; stroke: #d55e00"/> + <use xlink:href="#m5ecc597777" x="344.902187" y="17.023828" style="fill: #d55e00; stroke: #d55e00"/> </g> </g> - <g id="line2d_98"> + <g id="line2d_101"> <g> - <use xlink:href="#m5023a9231e" x="347.940838" y="9.523828" style="fill: #d55e00; stroke: #d55e00"/> + <use xlink:href="#m5ecc597777" x="344.902187" 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 + <g id="line2d_102"> + <path d="M 337.402187 13.273828 +L 352.402187 13.273828 " style="fill: none; stroke: #d55e00; stroke-width: 1.15; stroke-linecap: square"/> </g> - <g id="line2d_100"> + <g id="line2d_103"> <g> - <use xlink:href="#m9198feb5e9" x="347.940838" y="13.273828" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/> + <use xlink:href="#mdc3e7d603c" x="344.902187" 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 id="text_45"> + <text style="font-size: 7.5px; font-family: 'DejaVu Sans'; text-anchor: start" x="358.402187" y="15.898828" transform="rotate(-0 358.402187 15.898828)">Raw imperfection</text> </g> - <g id="LineCollection_9"> - <path d="M 449.690057 17.023828 -L 449.690057 9.523828 + <g id="LineCollection_19"> + <path d="M 446.651406 17.023828 +L 446.651406 9.523828 " style="fill: none; stroke: #666666; stroke-width: 1.15"/> </g> - <g id="line2d_101"> + <g id="line2d_104"> <g> - <use xlink:href="#mdc72af2b3b" x="449.690057" y="17.023828" style="fill: #666666; stroke: #666666"/> + <use xlink:href="#m0f60229d9a" x="446.651406" y="17.023828" style="fill: #666666; stroke: #666666"/> </g> </g> - <g id="line2d_102"> + <g id="line2d_105"> <g> - <use xlink:href="#mdc72af2b3b" x="449.690057" y="9.523828" style="fill: #666666; stroke: #666666"/> + <use xlink:href="#m0f60229d9a" x="446.651406" 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 + <g id="line2d_106"> + <path d="M 439.151406 13.273828 +L 454.151406 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 id="line2d_107"> <g> - <use xlink:href="#m87fbca6e18" x="449.690057" y="13.273828" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/> + <use xlink:href="#mb0f2541c0f" x="446.651406" 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 id="text_46"> + <text style="font-size: 7.5px; font-family: 'DejaVu Sans'; text-anchor: start" x="460.151406" y="15.898828" transform="rotate(-0 460.151406 15.898828)">Static calibration</text> </g> - <g id="LineCollection_10"> - <path d="M 549.212713 17.023828 -L 549.212713 9.523828 + <g id="LineCollection_20"> + <path d="M 546.174062 17.023828 +L 546.174062 9.523828 " style="fill: none; stroke: #0072b2; stroke-width: 1.7"/> </g> - <g id="line2d_105"> + <g id="line2d_108"> <g> - <use xlink:href="#mf3fceadd2c" x="549.212713" y="17.023828" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m49e24804b4" x="546.174062" y="17.023828" style="fill: #0072b2; stroke: #0072b2"/> </g> </g> - <g id="line2d_106"> + <g id="line2d_109"> <g> - <use xlink:href="#mf3fceadd2c" x="549.212713" y="9.523828" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m49e24804b4" x="546.174062" 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 + <g id="line2d_110"> + <path d="M 538.674062 13.273828 +L 553.674062 13.273828 " style="fill: none; stroke: #0072b2; stroke-width: 1.7; stroke-linecap: square"/> </g> - <g id="line2d_108"> + <g id="line2d_111"> <g> - <use xlink:href="#ma2fa1acfec" x="549.212713" y="13.273828" style="fill: #0072b2; stroke: #0072b2"/> + <use xlink:href="#m5efd9f5213" x="546.174062" 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 id="text_47"> + <text style="font-size: 7.5px; font-family: 'DejaVu Sans'; text-anchor: start" x="559.674062" y="15.898828" transform="rotate(-0 559.674062 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 id="p4664308beb"> + <rect x="36.590313" y="58.59" width="202.794153" height="123.828"/> </clipPath> - <clipPath id="pffd4cd4bf2"> - <rect x="292.979801" y="47.79" width="200.548324" height="134.628"/> + <clipPath id="pa9d90a30ac"> + <rect x="292.186979" y="58.59" width="202.794153" height="123.828"/> </clipPath> - <clipPath id="p40ac76b1b1"> - <rect x="546.330638" y="47.79" width="200.548324" height="134.628"/> + <clipPath id="p6506b7584e"> + <rect x="547.783646" y="58.59" width="202.794153" height="123.828"/> </clipPath> </defs> </svg> diff --git a/visual-composer/coupled-ladder-scaling.md b/visual-composer/coupled-ladder-scaling.md index c339551..896c02b 100644 --- a/visual-composer/coupled-ladder-scaling.md +++ b/visual-composer/coupled-ladder-scaling.md @@ -17,12 +17,13 @@ - **Figure prototype:** coordinated small-multiple lines. - **Panel map:** - (a) final classification error against learnable edge count; - - (b) fraction of runs that reach zero error and remain there through the - training horizon; - - (c) mean classification error over epochs at 2,048 edges. + - (b) classification-error area over the full training trajectory against + learnable edge count; + - (c) fraction of runs that fail to reach zero error and remain there through + the training horizon against learnable edge count. - **Exact label inventory:** Clean, same-RMS noise, raw imperfection, static - calibration, SDIL, learnable edges, classification error, stable zero-error - runs, training epoch. + calibration, SDIL, learnable edges, classification error, classification- + error AUC, stable failure fraction. - **Caption role:** state the paired protocol, distinguish fixed bias from matched noise, and label the evidence as a five-task pilot. - **Manuscript placement:** Part 2, immediately after the digital CLLN and @@ -34,4 +35,3 @@ - **Constraint:** the figure reports an error-growth slope comparison only when the static-calibration slope is positive. Raw imperfection is allowed to show a high non-monotonic floor rather than a forced power law. - diff --git a/visual-composer/qa-ledger.md b/visual-composer/qa-ledger.md index f601f93..ecb7660 100644 --- a/visual-composer/qa-ledger.md +++ b/visual-composer/qa-ledger.md @@ -6,6 +6,7 @@ | Pilot could be mistaken for confirmation | `figure_clln_scaling_pilot` | High | Added an explicit five-task, one-draw exploratory label | Resolved | | Slope title did not name its comparator | Panel (a) | Medium | Named static calibration in the title | Resolved | | Color-only distinctions could fail in print | All panels | Medium | Added distinct markers and line styles; inspected the rendered PNG | Resolved | +| Point estimates could be presented as resolved scaling laws | Panels (b) and (c) | High | Claim a percent reduction only when the paired bootstrap slope-difference interval is above zero | Resolved | | Vector editability and font embedding | SVG and PDF | Medium | Kept live SVG text and verified embedded DejaVu Sans in the PDF | Resolved | Rendered inspection: no clipped labels, legend overlap, panel overlap, or |
