美文网首页
tsne method for python

tsne method for python

作者: 数据小新手 | 来源:发表于2019-01-09 16:19 被阅读0次

TSNE different way

tsne is a important method to plot high dimensional figure, and many people
bulid different way to realise it. i will introduce some methods recently use.

  1. sklearn

sklearn is a very popular package to slove machine learning problem

The disadvantage is that only sinlge kernal can be used.

from sklearn.manifold import TSNE
model = TSNE(n_components=2,init='pca')
node_pos = model.fit_transform(X)
  1. openTSNE
    opentsne can use multi worker to do the job,
    https://opentsne.readthedocs.io/en/latest/examples/01/01_simple_usage.html
from openTSNE import TSNE
model = TSNE(n_components=2,init='pca',n_jobs=8,)
node_pos = model.fit(X)
  1. tsne-cuda
    tsne-cuda can use cude to accelerate tsne, but the installation is complex.
    https://github.com/CannyLab/tsne-cuda

相关文章

  • tsne method for python

    TSNE different way tsne is a important method to plot hig...

  • TSNE 详解

    TSNE 详解 TSNE 详解

  • Python Magic Method

    Magic Method Magic Method,魔法函数,语法为__method__,一种Python高级语法...

  • Function object and Method objec

    Python: 函数与方法的区别 以及 Bound Method 和 Unbound Method - 技术栈大杂...

  • R语言可视化(十七):tSNE图绘制

    17. tSNE图绘制 清除当前环境中的变量 设置工作目录 查看示例数据 使用tsne包进行tSNE降维可视化分析...

  • 装饰器

    装饰器就是在Python加载方法时,执行method=decorator(method),明白了这个自然可以理解装...

  • python 常用操作记录

    python 列表及字典(按key、按value排序) python dict按照key 排序:1、method ...

  • 10.4 UiPath如何调用Python

    调用Python(Invoke Python Method)的介绍可以直接在工作流程中从Python脚本中运行指定...

  • Python中的method

    Python中的method 什么是method? function就是可以通过名字可以调用的一段代码,我们可以传...

  • 流畅的Python

    第一章 Python数据模型魔术方法(magic method)或者说双下方法(dunder method)表示特...

网友评论

      本文标题:tsne method for python

      本文链接:https://www.haomeiwen.com/subject/jfegrqtx.html