April 2018
Beginner to intermediate
300 pages
7h 34m
English
We will implement the t-SNE method by loading the TSNE function from scikit-learn, as follows:
from sklearn.manifold import TSNE
There are a few hypervariables that the user has to set upon running t-SNE, which include:
Going into the mathematical details of individual hypervariables would be a chapter on its own, but we do have suggestions on what the parameters should be in general. For init, it is recommended to use 'pca' with the reason given before. For method, barnes_hut will be faster and gives very similar results if the provided dataset is not highly ...
Read now
Unlock full access