I'm not quite sure what you mean by “different outputs with the same data elements”, but here are some comments that may help you.
First, t-SNE is not really a “downsizing” method in the same sense as PCA or other methods. It is not possible to take a fixed, studied t-SNE model and apply it to new data. (Note that the class does not have a transform() method, only fit() and fit_transform() .) Thus, you cannot use the set of "train" and "test".
Secondly, every time you call fit_transform() , you get a completely different model. Thus, the value of your reduced sizes does not match from piece to piece. Each piece has its own small small space. The model is different every time, so the data is not projected into the same space.
Thirdly, you do not include the code in which you share the “train” with the “test”. It is possible that when you try to establish a random seed of t-SNE, you do not set a random seed of your train and test unit, which leads to different data divisions and, therefore, to different results in subsequent runs.
Finally, if you want to use t-SNE to visualize your data, you can consider the recommendations on the documentation page and apply PCA to reduce the input dimension from 66 to, say, 15. This will significantly reduce the t-SNE memory area.
TSNE in SKLearn Documents
Andreus
source share