我有 ASCII 数据,我需要使用 HDBSCAN 对数据进行聚类。我得到了标签,但我不知道如何打印输出集群结果,即来自 hdbscan 的唯一和隔离结果。
片段:
import hdbscan
import numpy as np
datafile = "ascii.txt"
data = np.loadtxt(datafile, dtype = np.uint8)
clusterer = hdbscan.HDBSCAN(min_cluster_size = 20)
clusterer.fit(data)
print (np.unique(clusterer.labels_, return_counts = True))