-
大小: 1.53MB文件类型: .zip金币: 1下载: 0 次发布日期: 2021-01-09
- 语言: Python
- 标签: tsne参数 tensorflow tsne
资源简介
Python / Tensorflow / Keras实现参数tSNE算法
代码片段和文件信息
#!/usr/bin/python
from __future__ import division # Python 2 users only
from __future__ import print_function
__doc__= “““ Example usage of parametric_tSNE.
Generate some simple data in high (14) dimension train a model
and run additional generated data through the trained model“““
import sys
import datetime
import os
import numpy as np
import seaborn as sns
import matplotlib.pyplot as plt
plt.style.use(‘ggplot‘)
from matplotlib.backends.backend_pdf import PdfPages
cur_path = os.path.realpath(__file__)
_cur_dir = os.path.dirname(cur_path)
_par_dir = os.path.abspath(os.path.join(_cur_dir os.pardir))
sys.path.append(_cur_dir)
sys.path.append(_par_dir)
from parametric_tSNE import Parametric_tSNE
from parametric_tSNE.utils import get_multiscale_perplexities
has_sklearn = False
try:
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-09-21 15:26 parametric_tsne-master\
文件 1077 2018-09-21 15:26 parametric_tsne-master\LICENSE
文件 3523 2018-09-21 15:26 parametric_tsne-master\README.md
目录 0 2018-09-21 15:26 parametric_tsne-master\example\
文件 1283 2018-09-21 15:26 parametric_tsne-master\example\README.md
文件 74312 2018-09-21 15:26 parametric_tsne-master\example\example_viz_PCA_hollow.png
文件 9914 2018-09-21 15:26 parametric_tsne-master\example\example_viz_parametric_tSNE.py
文件 703482 2018-09-21 15:26 parametric_tsne-master\example\example_viz_tSNE_dense.pdf
文件 105970 2018-09-21 15:26 parametric_tsne-master\example\example_viz_tSNE_hollow-multiscale.png
文件 111512 2018-09-21 15:26 parametric_tsne-master\example\example_viz_tSNE_hollow-perp10.png
文件 95732 2018-09-21 15:26 parametric_tsne-master\example\example_viz_tSNE_hollow-perp100.png
文件 569487 2018-09-21 15:26 parametric_tsne-master\example\example_viz_tSNE_hollow.pdf
目录 0 2018-09-21 15:26 parametric_tsne-master\parametric_tSNE\
文件 73 2018-09-21 15:26 parametric_tsne-master\parametric_tSNE\__init__.py
文件 19658 2018-09-21 15:26 parametric_tsne-master\parametric_tSNE\core.py
文件 8055 2018-09-21 15:26 parametric_tsne-master\parametric_tSNE\utils.py
文件 249 2018-09-21 15:26 parametric_tsne-master\requirements.txt
评论
共有 条评论