Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
190 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
245 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. ...
3
votes
1answer
157 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 ...
2
votes
0answers
411 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 ...
2
votes
3answers
617 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 ...
1
vote
1answer
129 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 ...
1
vote
1answer
157 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 ...
1
vote
2answers
90 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 ...
1
vote
5answers
2k 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.
0
votes
1answer
13 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 ...
0
votes
2answers
268 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?
0
votes
2answers
373 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
178 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 ...
0
votes
1answer
76 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.
0
votes
2answers
192 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 ...