python AP算法示例

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python AP算法示例相关的知识,希望对你有一定的参考价值。

from sklearn.cluster import AffinityPropagation
from sklearn import metrics
from sklearn.datasets.samples_generator import make_blobs
import numpy as np

# 生成测试数据
centers = [[1, 1], [-1, -1], [1, -1]]
X, labels_true = make_blobs(n_samples=300, centers=centers, cluster_std=0.5, random_state=0)

# AP模型拟合
af = AffinityPropagation(preference=-50).fit(X)
cluster_centers_indices = af.cluster_centers_indices_
labels = af.labels_
new_X = np.column_stack((X, labels))

n_clusters_ = len(cluster_centers_indices)

以上是关于python AP算法示例的主要内容,如果未能解决你的问题,请参考以下文章

Arduino ESP8266 AP网络模式下运用示例

AP聚类算法

Micropython esp32/8266AP模式下网页点灯控制示例+自定义GPIO状态显示

七月算法《python爬虫》第一课:Python爬虫小示例

AP聚类算法介绍

FP-Growth算法python实现