本文整理汇总了Python中A.get_centroide方法的典型用法代码示例。如果您正苦于以下问题:Python A.get_centroide方法的具体用法?Python A.get_centroide怎么用?Python A.get_centroide使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类A
的用法示例。
在下文中一共展示了A.get_centroide方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: coherencia_radio
# 需要导入模块: import A [as 别名]
# 或者: from A import get_centroide [as 别名]
def coherencia_radio(cluster):
"""
Function: coherencia_radio
Descrp: Calcula la coherencia de un cluster por el
metodo del radio.
Args:
-> cluster: Lista de instancias que forman el cluster.
Return:
-> Valor de coherencia
"""
c = A.get_centroide(cluster)
# maximo de los radios (todas las instancias al centroide)
return max([distance.euclidean(i,c) for i in cluster])
示例2: coherencia_promedio
# 需要导入模块: import A [as 别名]
# 或者: from A import get_centroide [as 别名]
def coherencia_promedio(clustering):
"""
Function: coherencia_promedio
Descrp: Calcula la coherencia de un conjunto de clusters por la
formula SUM(dist(c,i)^2)/N
Args:
-> clustering: Lista de clusters.
Return:
-> Valor de coherencia
"""
suma = 0
num = 0
for clu in clustering:
c = A.get_centroide(clustering[clu])
for i in clustering[clu]:
d = distance.euclidean(c,i)
suma += d*d
num +=1
return suma/(num*1.0)