Open zhexuandliu opened 1 month ago
In line 24 of tsne-internal.R, I believe there is a mistake. It should be D = dist(X) ** 2 instead of D = dist(X) according to t-SNE algorithm.
tsne-internal.R
D = dist(X) ** 2
D = dist(X)
In line 24 of
tsne-internal.R
, I believe there is a mistake. It should beD = dist(X) ** 2
instead ofD = dist(X)
according to t-SNE algorithm.