You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
General Note: May be useful to add some content on dimensionality reduction (e.g., PCA, SVD, LCA).
K-Means Clustering: May want to touch upon the problem of determine the optimal number of clusters and some common heuristics used (e.g., elbow method, silhouette)
Agglomerative Clustering: Change the n_clusters parameter in the model from 3 to 2.
Agglomerative Clustering: In the visualization, we assign a label to the scatter plots, but never call plt.legend() to add the legend.
Challenge DBSCAN: When comparing the inferred clusters to the set of labels in the blobs data, we do not call len(set(labels)) to compare with the inferred number of clusters as we do in the moons data.
The text was updated successfully, but these errors were encountered:
n_clusters
parameter in the model from 3 to 2.label
to the scatter plots, but never callplt.legend()
to add the legend.len(set(labels))
to compare with the inferred number of clusters as we do in the moons data.The text was updated successfully, but these errors were encountered: