{% extends "base.html" %} {% block content %}

Overview

{% for card in scorecards %}
{{ card.label }}
{{ card.value }}
{{ card.sub }}
{% else %}

No metrics available for this report.

{% endfor %}

Rankings {% if total_rankings %}{{ total_rankings }} predictions{% endif %}

{% if rankings %} {% for row in rankings[:100] %} {% endfor %}
#User IDItem IDScoreSimilar Items
{{ loop.index }} {{ row.user_id }} {{ row.item_id }} {{ "%.4f" | format(row.score) }} {% for sim_id in row.get('similar_items', []) %} {{ sim_id }} {% else %} {% endfor %}
{% else %}

No predictions available for this report.

{% endif %}

Insights

Prediction Score Distribution

{% if score_distribution and score_distribution.n %}
{% else %}

No prediction scores for this report.

{% endif %}

Item Embedding Projection (2D PCA)

{% if embedding_plot and embedding_plot.x %}
{% else %}

No item embeddings supplied for this report.

{% endif %}

Item-Item Similarity Heatmap

{% if similarity_heatmap and similarity_heatmap.z %}
{% else %}

No item embeddings supplied for this report.

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