You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@drobison00 the above commit (6581922) fixes this issue, but I want to test it more before opening a PR.
#2620 requires a more substantial change since B-H doesn't calculate the gradient at all right now, AFAIK. I don't have immediate plans to work on it.
I do want to work on K-L divergence (#863). ("want" as in I have a pressing need for that feature, but not a desire per se to implement it. I can help review a PR if someone else works on it before I get to it.)
Describe the bug
TSNE_fit
(and its Python interface) takes a parameterinitialize_embeddings
:cuml/cpp/include/cuml/manifold/tsne.h
Lines 62 to 63 in 069a229
That's obeyed by
TSNE::Exact_TSNE
but not byTSNE::Barnes_Hut
, which doesn't even have that as a function parameter.Compare to exact's impl:
cuml/cpp/src/tsne/exact_tsne.cuh
Lines 61 to 62 in 069a229
(Realize as I write this up that it's also misspelled.)
Steps/Code to reproduce bug
(Found by code review, don't have a repro.)
Expected behavior
Y
should not be overwritten.Environment details (please complete the following information):
Additional context
This is easy to fix. I can do it once my other tSNE PRs are merged.
The text was updated successfully, but these errors were encountered: