from umap import UMAP model = UMAP(n_neighbors = 30, min_dist = 0.3, n_components = 2) umap = model.fit_transform(X_reduced) umap_coords ...
確定! 回上一頁