1 Star 1 Fork 0

lhx/Code-Comments-of-Text-GCN

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
visualize_words.py 1.22 KB
一键复制 编辑 原始数据 按行查看 历史
泽code 提交于 2020-04-25 22:13 . first_upload
from matplotlib.backends.backend_pdf import PdfPages
from sklearn.manifold import TSNE
from matplotlib import pyplot as plt
import numpy as np
f = open('data/ohsumed_word_vectors_1.txt', 'r')
embedding_lines = f.readlines()
f.close()
target_names = set()
labels = []
docs = []
for i in range(len(embedding_lines)):
line = embedding_lines[i].strip()
temp = line.split('\t')
emb_str = embedding_lines[i].strip().split()
values_str_list = emb_str[1:]
values = [float(x) for x in values_str_list]
label = np.argmax(values)
docs.append(values)
target_names.add(label)
labels.append(label)
target_names = list(target_names)
label = np.array(labels)
fea = TSNE(n_components=2).fit_transform(docs)
pdf = PdfPages('ohsumed_gcn_word_2nd_layer.pdf')
cls = np.unique(label)
# cls=range(10)
fea_num = [fea[label == i] for i in cls]
for i, f in enumerate(fea_num):
if cls[i] in range(10):
plt.scatter(f[:, 0], f[:, 1], label=cls[i], marker='+')
else:
plt.scatter(f[:, 0], f[:, 1], label=cls[i])
# plt.legend(ncol=2, )
# plt.legend(ncol=5,loc='upper center',bbox_to_anchor=(0.48, -0.08),fontsize=11)
# plt.ylim([-20,35])
# plt.title(md_file)
plt.tight_layout()
pdf.savefig()
plt.show()
pdf.close()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/linhongxiang/Code-Comments-of-Text-GCN.git
git@gitee.com:linhongxiang/Code-Comments-of-Text-GCN.git
linhongxiang
Code-Comments-of-Text-GCN
Code-Comments-of-Text-GCN
master

搜索帮助