{% extends "layout.html" %} {% block title %}DBSCAN Clusters - Quantum AI{% endblock %} {% block page_header %}

DBSCAN Clusters

Density-Based Spatial Clustering of Applications with Noise (DBSCAN).

{% endblock %} {% block content %}
Upload Data Structure Supports .CSV or .XLSX datasets
{% if error %}
{{ error }}
{% endif %} {% if plot_url %}
Density Map Visualization
DBSCAN Plot
{% if cluster_info %}
{% for cluster, count in cluster_info.items() %}
{% if cluster|int == -1 %}Noise (Outliers){% else %}Cluster {{ cluster }}{% endif %} {{ count }} Entities
{% endfor %}
{% endif %}
{% endif %}
{% endblock %}