{% extends 'base.html' %} {% block title %}Entity: {{ entity.entity_value }} - TLS Analyzer{% endblock %} {% block content %}
← Back

Entity: {{ entity.entity_value }}

Run #{{ run.display_id }} | Cluster: #{{ entity.cluster_label|default:"unassigned" }}

Aggregated Features

{% for col, dev in deviations.items %} {% empty %} {% endfor %}
Feature Value Cluster Mean Deviation (Z-score)
{{ col }} {{ dev.value|floatformat:3 }} {{ dev.cluster_mean|floatformat:3 }} {{ dev.zscore|floatformat:2 }}
No feature data available.
{% if entity.embedding_x is not None and entity.embedding_y is not None %}

UMAP Position

X: {{ entity.embedding_x|floatformat:3 }}, Y: {{ entity.embedding_y|floatformat:3 }}

{% endif %} {% endblock %}