Advertisement
897bhgy

Untitled

Jul 19th, 2023
324
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.09 KB | Source Code | 0 0
  1. from sklearn.manifold import TSNE
  2. tsne = TSNE(n_components=2)
  3. X_reduced = tsne.fit_transform(X)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement