Files
benchmark/benchmark/scripts/templates/report_bulma.html

4.4 KiB

<html lang="en"> <head> <style> body { font-family: Courier; } </style> </head> {% set center = "has-text-centered" %} {% set right = "has-text-right" %}

{{ data.title }}

{% if data.duration > 7200 %} {% set unit = "h" %} {% set divider = 3600 %} {% else %} {% set unit = "min" %} {% set divider = 60 %} {% endif %}
Platform Model Date TimeDuration ({{ unit }}) Stratified Discretized # Folds
{{ data.platform }} {{ data.model }} {{ data.version }} {{ data.date}} {{ data.time}} {{ "%.2f" % (data.duration/divider) }} {{ data.stratified }} {{ data.discretized }} {{ data.folds }}
Language {{ data.language }} {{ data.language_version }} Seeds {{ data.seeds }}
{% include "partials/table_report.html" %}
Dataset Samples Features Classes Nodes {{data.score_name|capitalize}} Time hyperparameters
{% if summary|length > 0 %}
{% include "partials/table_summary.html" %}
Symbol Meaning Count
{% endif %}

Total score: {{ "%.6f" % (data.results | sum(attribute="score")) }}

</html>