Input
ExecutionExecution trigger that begins the t-SNE embedding
AI/ML/Reduction
t-Distributed Stochastic Neighbor Embedding. Projects high-dimensional vectors into 2-3 dimensions for visualization and writes the embedding back into the source table. t-SNE is transductive, so it produces no reusable model.
Scores range from 0 to 10. Higher values mean more impact, exposure, or operational weight.
Execution trigger that begins the t-SNE embedding
Choose which backend supplies the data
Dimensionality of the embedding. Must not exceed the width of the input vectors; values above 3 require the exact gradient (Approx Threshold = 0).
Effective number of neighbors per point (typically 5-50). t-SNE requires 3 * perplexity <= rows - 1, so small tables need a small perplexity.
Barnes-Hut theta. 0 runs the exact O(n^2) gradient, larger values approximate distant points by their cell centroid and run faster.
Number of gradient descent iterations. Fewer iterations finish sooner but may leave the embedding unconverged.
Activated once the t-SNE embedding has been written back