t-SNE|python sklearnによる実装メモ

機械学習




t-SNE|python sklearnによる実装メモ

各点のユークリッド距離を類似度の代わりに条件付確率に変換して、低次元にマッピングする

from sklearn.manifold import TSNE

tSNE_df = TSNE(n_components=2).fit_transform(df)
  1. https://scikit-learn.org/stable/modules/generated/sklearn.manifold.TSNE.html#sklearn.manifold.TSNE
  2. https://scikit-learn.org/stable/modules/manifold.html#multidimensional-scaling
タイトルとURLをコピーしました