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
In line tsne.cpp#L37 vectors indices and distances will have < K + 1 elements if K > N - 1.
This will cause erroneous reads out of the bounds of the vector in tsne.cpp#L388 and other loops.
There should be a check that K <= N -1.
The text was updated successfully, but these errors were encountered:
In line tsne.cpp#L37 vectors
indices
anddistances
will have< K + 1
elements ifK > N - 1
.This will cause erroneous reads out of the bounds of the vector in tsne.cpp#L388 and other loops.
There should be a check that
K <= N -1
.The text was updated successfully, but these errors were encountered: