pca_init_op = PCA(n_components=pca_init_dim) umap_op = UMAP(n_components=2) data_umap = umap_op.fit_transform(pca_init_op.fit_transform(data))
確定! 回上一頁