fairmotion/tasks/clustering/clustering.py [77:83]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        clusters[label].append(
            (
                names[num],
                calculate_score(cluster_centroids[label], features[num]),
            )
        )
    return clusters
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



fairmotion/tasks/clustering/clustering.py [105:112]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        clusters[label].append(
            (
                names[num],
                calculate_score(cluster_centroids[label], features[num]),
            )
        )

    return clusters
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



