Answers for "tsne array must not contain infs or nans"

0

array must not contain infs or NaNs

#Please check if any of your values being passed in are NaN or inf:
np.isnan(x).any()
np.isnan(y).any()

np.isinf(x).any()
np.isinf(y).any()

#If any of those yields true. Remove the nan entries or inf entries.
Posted by: Guest on November-27-2020

Code answers related to "tsne array must not contain infs or nans"

Python Answers by Framework

Browse Popular Code Answers by Language