SciPy - Clustering and Distance
What will be the output of this code snippet?
from sklearn.metrics import silhouette_score labels = [0, 0, 1, 1] data = [[1, 2], [2, 1], [8, 9], [9, 8]] score = silhouette_score(data, labels) print(round(score, 2))
