{% if problem_type == 'classification' %}
{% for model in models %} {% endfor %}
model started_at AUC Accuracy Carbon footprint Recall Precision F1Score
{{ model.model.name }}{% if model.model.optimized %} [optimized]{% endif %} {{ model.model.started_at }} {{ model.metrics.roc_auc }}% {{ model.metrics.accuracy }}% {{ model.sustainability.carbon_footprint }} {{ model.metrics.recall }}% {{ model.metrics.precision }}% {{ model.metrics.f1_score }}%
{% else %}
{% for model in models %} {% endfor %}
model started_at MSE MAE Carbon footprint
{{ model.model.name }}{% if model.model.optimized %} [optimized]{% endif %} {{ model.model.started_at }} {{ model.metrics.mean_squared_error }} {{ model.metrics.mean_absolute_error }} {{ model.sustainability.carbon_footprint }}
{% endif %}