{% extends "base.html" %} {% block title %}XAURA - Results: {{ model_name }}{% endblock %} {% block nav_results %}active{% endblock %} {% block content %}

Model Results

{% if from_experiment %} {% else %} {% endif %} {% if from_experiment %} {% else %} {% endif %}

{{ filename }} — {{ model_name }}

{% if profile %}

Dataset Profile

{{ "{:,}".format(profile.n_rows) }}
Rows
{{ profile.n_cols }}
Columns
{{ profile.task_type or "unknown" }}
Task Type
{% if profile.has_missing %}
{{ "%.1f"|format(profile.missing_fraction * 100) }}%
{% else %}
None
{% endif %}
Missing Values
{% endif %}

Model Results

{{ model_name }}
Model
{{ task_type }}
Task Type
{{ train_time }}s
Train Time
{{ metrics | length }}
Metrics

Performance Metrics

{% for name, value in metrics.items() %}
{{ name }} {% if value is number and value <= 1.0 and value >= 0.0 %}
{% endif %} {{ value }}
{% endfor %}
{% if charts %}

Interactive Charts

{# Classification charts #} {% if charts.get('confusion_matrix') %}
{% endif %} {% if charts.get('roc_curve') %}
{% endif %} {% if charts.get('precision_recall') %}
{% endif %} {% if charts.get('feature_importance') %}
{% endif %} {# Regression charts #} {% if charts.get('residuals_vs_fitted') %}
{% endif %} {% if charts.get('qq_plot') %}
{% endif %} {% if charts.get('predicted_vs_actual') %}
{% endif %} {% if charts.get('residual_distribution') %}
{% endif %} {# Clustering charts #} {% if charts.get('cluster_scatter') %}
{% endif %} {% if charts.get('silhouette') %}
{% endif %} {% endif %}

Hyperparameters

{{ config_str }}
{% if not charts %}

Charts are only available for the active session immediately after training.

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}