Following line happens a coversion error in the 16th cell. with CUDA environment.
It causes to set cuda type tensor to TSNE,fit_transform().
E.append(TSNE(n_components=2).fit_transform(X[-1]))
I passed to add ,cpu() calling.
E.append(TSNE(n_components=2).fit_transform(X[-1].cpu()))