Silhouette score functions #591
VerticaDataScientist
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Silhouette Score is a metric to evaluate the performance of the clustering algorithm. It uses the compactness of individual clusters(intra-cluster distance) and separation amongst clusters (inter-cluster distance) to measure an overall representative score of how well our clustering algorithm has performed.
It can be built of 2 components:
The parameters:
- input_relation : vDataFrame
- features' list : list
- cluster_id: str
Output: it will be a column of all the scores and it will be used for visualization as shown before.
Beta Was this translation helpful? Give feedback.
All reactions