{{ title }}

Generated {{ generated_at }} · gsbench v{{ gsbench_version }}

Data Summary

Trait{{ trait_name or "n/a" }}
Samples{{ n_samples }}
Markers{{ n_markers }}
{% if preprocessing_summary %}

Preprocessing Summary

{% for key, value in preprocessing_summary.items() %} {% endfor %}
{{ key }}{{ value }}
{% endif %}

Model Comparison

{% for result in results %} {% endfor %}
Modelrr2RMSESpearmanRuntime (s)
{{ result.model_abbreviation }} {{ "%.3f"|format(result.mean_metrics.get("r", 0) or 0) }} {{ "%.3f"|format(result.mean_metrics.get("r2", 0) or 0) }} {{ "%.3f"|format(result.mean_metrics.get("rmse", 0) or 0) }} {{ "%.3f"|format(result.mean_metrics.get("spearman", 0) or 0) }} {{ "%.2f"|format(result.total_time_seconds) }}

Diagnostic Plots

{% for name, image_b64 in plots.items() %}

{{ name.replace("_", " ")|title }}

{{ name }} {% endfor %}

Per-Model Details

{% for result in results %}

{{ result.model_name }} ({{ result.model_abbreviation }})

{% for key in metric_keys %}{% endfor %} {% for key in metric_keys %}{% endfor %}
{{ key }}
{{ "%.4f"|format(result.mean_metrics.get(key, 0) or 0) }}

Folds: {{ result.per_fold_metrics|length }} · Total time: {{ "%.2f"|format(result.total_time_seconds) }}s

{% endfor %}