Visualize situations where the parameters of dimensionality reduction are inconsistent with those of the passed model #2216
superseanyoung
started this conversation in
General
Replies: 1 comment 2 replies
-
There's always some mismatch between the actual procedure of fitting the model and the 2D representation since we cannot easily visualize in higher dimensionality than that. 2D visualizations are always an approximation of reality. That said, are you referring to something specific when you mention "impact"? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When I use UAMP to reduce dimensions, I set n_neighbors=30,n_components=15, and then pass in BERTopic() with this UMAP. However, I want to use the visualize_document_datamap () method in the subsequent normalization, and then I introduce the reduced_embeddings, which I obtained through UMAP ().fit_transform. But the parameters I set there are n_neighbors=30,n_components=2, which is different from the parameters I passed into the BERTopic model, so what's the impact of that?
Beta Was this translation helpful? Give feedback.
All reactions