Latent semantic indexing is an indexing and retrieval method.
0
votes
0answers
27 views
probabilistic latent semantic analysis / indexing in Java
i am searching for an open source Java Code of plsa/plsi. I found some implementation of lsi (with SVD). Sarted to read a lot about it, but coding the full algorithm will be quite a lot of work. So ...
0
votes
0answers
28 views
how can I define k to ignore the small singular values?
I'm working on implementing LSI on python and I cant determine whether a singular value is too small to be ignored or not.
for example, here are the singular values:
[3.221 2.458 1.485 0.887 ...
1
vote
1answer
103 views
Latent semantic analysis (LSA) single value decomposition (SVD) understanding
Bear with me through my modest understanding of LSI (Mechanical Engineering background):
After performing SVD in LSI, you have 3 matrices:
U, S, and V transpose.
U compares words with topics and S ...
2
votes
2answers
155 views
User profiling for topic-based recommender system
I'm trying to come up with a topic-based recommender system to suggest relevant text documents to users.
I trained a latent semantic indexing model, using gensim, on the wikipedia corpus. This lets ...
2
votes
1answer
181 views
What NLP tools to use to match phrases having similar meaning or sematics
I am working on a project which requires me to match a phrase or keyword with a set of similar keywords. I need to perform semantic analysis for the same.
an example :
Relevant QT
cheap health ...
5
votes
1answer
287 views
Finding topics of an unseen document via Gensim
I am using Gensim to do some large-scale topic modeling. I am having difficulty understanding how to determine predicted topics for an unseen (non-indexed) document. For example: I have 25 million ...
5
votes
1answer
477 views
Latent Semantic Analysis in Python discrepancy
I'm trying to follow the Wikipedia Article on latent semantic indexing in Python using the following code:
documentTermMatrix = array([[ 0., 1., 0., 1., 1., 0., 1.],
...
0
votes
0answers
82 views
Common Lisp implementation of Latent Semantic Indexing
Is there a free common lisp implementation of Latent Semantic Indexing available? I'd like to integrate that capability into an existing Lisp system.
2
votes
1answer
476 views
How do we decide the number of dimensions for Latent semantic analysis ?
I have been working on latent semantic analysis lately. I have implemented it in java by making use of the Jama package.
Here is the code:
Matrix vtranspose ;
a = new Matrix(termdoc);
...
1
vote
1answer
598 views
How does LDA give consistent results?
The popular topic model, Latent Dirichlet Allocation(LDA) which when used to extract topics from a corpus returns different topics with different probability distributions over the dictionary words.
...
2
votes
1answer
518 views
How is TF-IDF implemented in gensim tool in python?
From the documents which i found out from the net i figured out the expression used to determine the Term Frequency and Inverse Document frequency weights of terms in a corpus to be
tf-idf(wt)= tf * ...
0
votes
1answer
291 views
LSA - steps after finding the SVD
I have read quite a few tutorials since morning . My problem involves finding the similarity between two documents. I am looking forward to use LSA in java for this purpose.
I understood the ...
1
vote
1answer
578 views
Document classification using LSA/SVD
I am trying to do document classification using Support Vector Machines (SVM). The documents I have are collection of emails. I have around 3000 documents to train the SVM classifier and have a test ...
7
votes
2answers
654 views
Latent Semantic Analysis concepts
I've read about using Singular Value Decomposition (SVD) to do Latent Semantic Analysis (LSA) in corpus of texts. I've understood how to do that, also I understand mathematical concepts of SVD.
But ...
4
votes
1answer
532 views
Free LSI services or API to get related keywords
I've been told that Yahoo used to had a free LSI service known as Yahoo Boss API that begans to being payed since July 20th and that Microsoft Bing Search Engine have a free service that offers ...
1
vote
2answers
1k views
Clustering using Latent Dirichlet Allocation algo in gensim
Is it possible to do clustering in gensim for a given set of inputs using LDA? How can I go about it?
5
votes
1answer
799 views
Probabilistic latent semantic analysis/Indexing - Introduction
But recently I found this link quite helpful to understand the principles of LSA without too much math. ...
1
vote
2answers
1k views
LSI using gensim in python
I'm using Python's gensim library to do latent semantic indexing. I followed the tutorials on the website, and it works pretty well. Now I'm trying to modify it a bit; I want to be run the lsi model ...
0
votes
2answers
653 views
How to extract semantic relatedness from a text corpus
The goal is to assess semantic relatedness between terms in a large text corpus, e.g. 'police' and 'crime' should have a stronger semantic relatedness than 'police' and 'mountain' as they tend to ...
1
vote
1answer
287 views
“pre-built” matrices for latent semantic analysis
I want to use Latent Semantic Analysis for a small app I'm building, but I don't want to build up the matrices myself. (Partly because the documents I have wouldn't make a very good training ...
0
votes
1answer
148 views
Latent Semantic Indexing
I'm trying to find out how to carry out the multiplication of the matrices produced after SVD implementation in LSI. I need this for my research. I want to carry out document clustering.
2
votes
0answers
605 views
categorize websites - open source LSI?
Im looking to categorize lots of websites (millions). I can use Nutch to crawl them and get the content of the sites, but I am looking for the best (and cheapest or free) tool to categorize them.
One ...
1
vote
2answers
114 views
Problem for lsi
I am using Latent semantic analysis for text similarity. I have 2 questions.
How to select K value for dimention reduction?
I read alot every where that LSI work for similary meaning words for ...
3
votes
3answers
1k views
Need help in latent semantic indexing
I am sorry, if my question sounds stupid :)
Can you please recommend me any pseudo code or good algo for LSI implementation in java?
I am not math expert. I tried to read some articles on wikipedia ...
0
votes
2answers
421 views
Latent Semantic Indexing
It is said that through LSI, the matrices that are produced U, A and V, they bring together documents which have synonyms. For e.g. if we search for "car", we also get documents which have ...
4
votes
6answers
4k views
Latent Semantic Indexing in Java
Is there any open source implementation of LSI in Java? I want to use that library for my project. I have seen jLSI but it implements some other model of LSI. I want a standard model.

