-
-
Save CrazyDaffodils/ae5d9d625b261e17eb96ede2c916ffc6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from umap import UMAP | |
| import seaborn as sns | |
| model = UMAP(n_neighbors = 40, min_dist = 0.4, n_components = 2) | |
| umap = model.fit_transform(X_std) | |
| umap_df = pd.DataFrame(data=umap, columns=['UMAP1','UMAP2']).join(labels) | |
| palette = sns.color_palette("muted", n_colors=5) | |
| sns.set_style("white") | |
| sns.scatterplot(x='UMAP1',y='UMAP2',hue='Class',data=umap_df, palette=palette, linewidth=0.2, s=30, | |
| alpha=1).set_title('UMAP') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment