【发布时间】:2017-02-05 10:54:18
【问题描述】:
我正在尝试在 Spark 中编写一个用于执行潜在狄利克雷分配 (LDA) 的程序。这个 Spark 文档page 提供了一个很好的示例,用于对样本数据执行 LDA。下面是程序
from pyspark.mllib.clustering import LDA, LDAModel
from pyspark.mllib.linalg import Vectors
# Load and parse the data
data = sc.textFile("data/mllib/sample_lda_data.txt")
parsedData = data.map(lambda line: Vectors.dense([float(x) for x in line.strip().split(' ')]))
# Index documents with unique IDs
corpus = parsedData.zipWithIndex().map(lambda x: [x[1], x[0]]).cache()
# Cluster the documents into three topics using LDA
ldaModel = LDA.train(corpus, k=3)
# Output topics. Each is a distribution over words (matching word count vectors)
print("Learned topics (as distributions over vocab of " + str(ldaModel.vocabSize())
+ " words):")
topics = ldaModel.topicsMatrix()
for topic in range(3):
print("Topic " + str(topic) + ":")
for word in range(0, ldaModel.vocabSize()):
print(" " + str(topics[word][topic]))
# Save and load model
ldaModel.save(sc, "target/org/apache/spark/PythonLatentDirichletAllocationExample/LDAModel")
sameModel = LDAModel\
.load(sc, "target/org/apache/spark/PythonLatentDirichletAllocationExample/LDAModel")
使用的样本输入(sample_lda_data.txt)如下
1 2 6 0 2 3 1 1 0 0 3
1 3 0 1 3 0 0 2 0 0 1
1 4 1 0 0 4 9 0 1 2 0
2 1 0 3 0 0 5 0 2 3 9
3 1 1 9 3 0 2 0 0 1 3
4 2 0 3 4 5 1 1 1 4 0
2 1 0 3 0 0 5 0 2 2 9
1 1 1 9 2 1 2 0 0 1 3
4 4 0 3 4 2 1 3 0 0 0
2 8 2 0 3 0 2 0 2 7 2
1 1 1 9 0 2 2 0 0 3 3
4 1 0 0 4 5 1 3 0 1 0
如何修改程序以在包含文本数据而不是数字的文本数据文件上运行?让示例文件包含以下文本。
潜在狄利克雷分配 (LDA) 是一个主题模型,它推断 来自文本文档集合的主题。 LDA 可以被认为是 聚类算法如下:
主题对应聚类中心,文档对应 数据集中的示例(行)。主题和文档都存在于一个 特征空间,其中特征向量是字数的向量(bag 词)。而不是使用传统的方法来估计聚类 距离,LDA 使用基于统计模型的函数 生成文档。
【问题讨论】: