Thanks for your excellent work. However, there are problems when I test with your code.
In line 6
from sklearn.manifold.t_sne import _joint_probabilities, _joint_probabilities_nn
Should it be from sklearn.manifold._t_sne ?
This was successfully imported after changing t_sne to _t_sne. However, the _joint_probabilities_nn reported only taking 3 positional arguments, but 4 were given. And After I fixed this, another error occurred...
Could you tell me how to solve this?
Thanks.
Thanks for your excellent work. However, there are problems when I test with your code.
In line 6
Should it be
from sklearn.manifold._t_sne?This was successfully imported after changing
t_sneto_t_sne. However, the_joint_probabilities_nnreported only taking 3 positional arguments, but 4 were given. And After I fixed this, another error occurred...Could you tell me how to solve this?
Thanks.