作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我已经根据我在网上找到的示例修补了以下代码:
# gensim modules
from gensim import utils
from gensim.models.doc2vec import LabeledSentence
from gensim.models import Doc2Vec
from sklearn.cluster import KMeans
# random
from random import shuffle
# classifier
class LabeledLineSentence(object):
def __init__(self, sources):
self.sources = sources
flipped = {}
# make sure that keys are unique
for key, value in sources.items():
if value not in flipped:
flipped[value] = [key]
else:
raise Exception('Non-unique prefix encountered')
def __iter__(self):
for source, prefix in self.sources.items():
with utils.smart_open(source) as fin:
for item_no, line in enumerate(fin):
yield LabeledSentence(utils.to_unicode(line).split(), [prefix + '_%s' % item_no])
def to_array(self):
self.sentences = []
for source, prefix in self.sources.items():
with utils.smart_open(source) as fin:
for item_no, line in enumerate(fin):
self.sentences.append(LabeledSentence(utils.to_unicode(line).split(), [prefix + '_%s' % item_no]))
return self.sentences
def sentences_perm(self):
shuffle(self.sentences)
return self.sentences
sources = {'test.txt' : 'DOCS'}
sentences = LabeledLineSentence(sources)
model = Doc2Vec(min_count=1, window=10, size=100, sample=1e-4, negative=5, workers=8)
model.build_vocab(sentences.to_array())
for epoch in range(10):
model.train(sentences.sentences_perm())
print(model.docvecs)
我的 test.txt 文件每行包含一个段落。
代码运行良好并为每一行文本生成 DocvecsArray
我的目标是得到这样的输出:
集群 1:[DOC_5,DOC_100,...DOC_N]
集群 2:[DOC_0,DOC_1,...DOC_N]
我找到了 following Answer ,但输出是:
集群 1:[单词,单词...单词]
集群 2:[单词,单词...单词]
如何更改代码并获取文档簇?
最佳答案
所以看起来你快到了。
您正在输出一组向量。对于 sklearn 包,您必须将它们放入一个 numpy 数组中——使用 numpy.toarray() 函数可能是最好的。 The documentation因为 KMeans 非常出色,甚至在整个库中都很好。
请注意,我在 DBSCAN 上的运气要好得多。比 KMeans,它们都包含在同一个 sklearn 库中。 DBSCAN 不要求您指定要在输出中包含多少个聚类。
两个链接中都有注释良好的代码示例。
关于python - doc2vec 如何聚类 DocvecsArray,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39391753/
我已经根据我在网上找到的示例修补了以下代码: # gensim modules from gensim import utils from gensim.models.doc2vec import L
我是一名优秀的程序员,十分优秀!