91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

資源簡介

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

評論

共有 條評論