当前位置: 首页>>代码示例>>Python>>正文


Python A.get_centroide方法代码示例

本文整理汇总了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])
开发者ID:MasterInformatica,项目名称:sgdi,代码行数:16,代码来源:B.py

示例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)
开发者ID:MasterInformatica,项目名称:sgdi,代码行数:23,代码来源:B.py


注:本文中的A.get_centroide方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。