{% extends 'base.html' %} {% load static %} {% block title %}聚类概览 — 运行 #{{ run.display_id }}{% endblock %} {% block content %}

聚类概览

运行 #{{ run.display_id }} — {{ run.total_flows }} 条流, {{ run.cluster_count }} 个簇 {% if noise %}, {{ noise.size }} 个噪声点{% endif %}

← 运行详情

UMAP 嵌入 个点

{% if noise %}

⚠️ 噪声点 {{ noise.size }} 个实体

详情 →
{% if noise_summary %}
{{ noise_summary }}
{% endif %}
{% endif %}
全部 {% for c in clusters %} #{{ c.cluster_label }} ({{ c.size }}) {% endfor %} {% if noise %}Noise ({{ noise.size }}){% endif %}
{% for c in clusters %}
簇 #{{ c.cluster_label }}
{{ c.size }} 个实体{% if c.proportion %} · {{ c.proportion|floatformat:1 }}%{% endif %}
{% if c.nl_summary %}
{{ c.nl_summary }}
{% endif %}
{% empty %}

No clusters

{% endfor %}
{% if geo_count > 0 %}

🌍 地理分布

{% endif %}
{% endblock %}