Tagged Questions
Latent Dirichlet Allocation
5
votes
1answer
114 views
The relationship between latent Dirichlet allocation and documents clustering
I would like to clarify the relationship between latent Dirichlet allocation (LDA) and the generic task of document clustering.
The LDA analysis tends to output the topic proportions for each ...
2
votes
0answers
127 views
Yahoo! LDA Implementation Questions
All,
I have been running Y!LDA (https://github.com/shravanmn/Yahoo_LDA) on a set of documents and the results look great (or at least what I would expect). Now I want to use the resulting topics to ...
1
vote
1answer
102 views
python module installed and recognized, but unable to import it on my code or python 2.7.1 interpreter on Ubuntu
I'm stuck trying to get a python C module up and running. I'm installing deltaLDA module from Here. I followed the instructions as specified in REAMDE file. As usual, I wrote:
sudo python setup.py ...
0
votes
0answers
6 views
How to use LDA for cosine approximation?
It is straightforward to understand how to use SVD and random projection. Both create lower dimensional representation of document which saves cosine distance between those documents. I.e ...
0
votes
0answers
17 views
Convert one-document-per-line to Blei's lda-c/dtm format for topic modeling?
I am doing Latent Dirichlet Analyses for some research and keep running into a problem. Most lda software requires documents to be in doclines format, meaning a CSV or other delimited file in which ...
0
votes
0answers
52 views
Mahout : How to convert custom document in SparseVector format for using LDA
I have a set of documents in which each line has certain number of Strings seperated with "\t|\t". Each String(may contain spaces in between) is a indivisible dictionary item. Now I have to use LDA to ...
0
votes
0answers
121 views
Mahout LDA gives FileNotFound exception
I created my term vectors as stated here like this:
~/Scripts/Mahout/trunk/bin/mahout seqdirectory --input /home/ben/Scripts/eipi/files --output /home/ben/Scripts/eipi/mahout_out -chunk 1
...
0
votes
0answers
321 views
Labeled LDA inference in Stanford Topic Modeling Toolbox
I am using Stanford Topic Modeling Toolbox v.0.3 for doing LabeledLDA.
I was able to train a LabeledLDA model using the documentation (example-6-llda-learn.scala) provided.
How can I predict labels ...