可视化利器 —— t-SNE(matlab toolbox 的使用与解释)

分享一下我老师大神的人工智能教程!零基础,通俗易懂!http://blog.csdn.net/jiangjunshow

也欢迎大家转载本篇文章。分享知识,造福人民,实现我们中华民族伟大复兴!

                       

1. tsne 函数

mappedX = tsne(X, labels, no_dims, init_dims, perplexity)
   
   
  • 1
  • tsne 是无监督降维技术,labels 选项可选;
  • XRN×D(mappedX)
  • init_dims:注意,在运行 tsne 函数之前,需要使用 PCA 对数据预处理,将原始样本集的维度降低至 init_dims 维度(默认为 30)。
  • perplexity:高斯分布的perplexity,默认为 30;
  • 2. mnist 数据集可视化

    • mnist 的 mat 文件,下载地址,mnist.zip
               

    给我老师的人工智能教程打call!http://blog.csdn.net/jiangjunshow

    这里写图片描述

    猜你喜欢

    转载自blog.csdn.net/hftytf/article/details/84192530