Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
4answers
5k views

Simple implementation of N-Gram, tf-idf and Cosine similarity in Python

I need to compare documents stored in a DB and come up with a similarity score between 0 and 1. The method I need to use has to be very simple. Implementing a vanilla version of n-grams (where it ...
5
votes
4answers
9k views

How do I calculate the cosine similarity of two vectors?

How do I find the cosine similarity between vectors? I need to find the similarity to measure the relatedness between two lines of text. For example, I have two sentences like: system for user ...
4
votes
2answers
414 views

Calculate TF-IDF using Sql

I have a table in my DB containning a free text field column. I would like to know the frequency each word appears over all the rows, or maybe even calc a TF-IDF for all words, where my documents are ...
2
votes
1answer
180 views

WEKA - Classifyin​g New Data from Java - IDF Transform

We are trying to implement a WEKA classifier from inside a Java program. So far so good, everything works well however when building the classifier from the training set in Weka GUI we used the ...
2
votes
1answer
220 views

Using Lucene just as an inverted index

Lucene has a great capability of incremental indexing. Which is normally a pain when developing a IR system from scratch. I would like to know if I can use low-level Lucene APIs to use it only as an ...
2
votes
1answer
370 views

Lucene. How to build a term-doc matrix

I need to build that matrix but I can't find a way to compute normalized tf-idf for each cell. The normalization I would perform is cosine-normalization that is divide tf-idf (computed using ...
2
votes
2answers
491 views

Text Retrieval using R

I have been using R's text mining package and its really a great tool. I have not found retrieval support or maybe there are functionalities I am missing. How can a simple VSM model be implemented ...
2
votes
2answers
1k views

Cosine Similarity of Vectors of different lengths?

I'm trying to use TF-IDF to sort documents into categories. I've calculated the tf_idf for some documents, but now when I try to calculate the Cosine Similarity between two of these documents I get a ...
2
votes
1answer
416 views

Ngram IDF smoothing

I am trying to use IDF scores to find interesting phrases in my pretty huge corpus of documents. I basically need something like Amazon's Statistically Improbable Phrases, i.e. phrases that ...
2
votes
1answer
2k views

get cosine similarity between two documents in lucene

i have built an index in Lucene. I want without specifying a query, just to get a score (cosine similarity or another distance?) between two documents in the index. For example i am getting from ...
1
vote
1answer
248 views

Cosine similarity between a query and document in Lucene

I wanted to get cosine similarity between a long query and a document in a collection. I'm using Lucence to index the collection and submitting the queries to retrieve documents. However, I'm getting ...
1
vote
1answer
717 views

Cosine similarity and tf-idf

thanks for all the help you've given me before. I just got one little question which seems to confused me. TF-IDF and Cosine Similarity. I was reading up on both and then on wiki under Cosine ...
1
vote
1answer
161 views

TF-IDF Corpus Is it possible to use dispersion

I am developing some software which aims to uniquely identify a web page, by performing TF-IDF (comparing with a general English corpus to remove common words). It took a while to find a good free ...
1
vote
2answers
859 views

Java API : downloading and calculating tf-idf for a given web page

I am new to IR techniques. I looking for a Java based API or tool that does the following. Download the given set of URLs Extract the tokens Remove the stop words Perform Stemming Create Inverted ...
1
vote
1answer
67 views

Where not to use IDF?

What are the cases where Inverse Document Frequency is not useful in information retrieval?
1
vote
4answers
233 views

Simple question about java object

I am C programmer and now I moved to Java. I am trying to convert C program in Java program. C programs simply calculate term frequency and inverse document frequency (tf/idf). Here is my problem ...
1
vote
2answers
599 views

Calculating similarity between and centroid of Lucene documents

In order to perform a simple clustering algorithm on results that I get from Lucene, I have to calculate Cosine similarity between 2 documents in Lucene, I also need to be able to make a centroid ...
1
vote
3answers
1k views

Getting the Vector Space Model (tf-idf) from a query on a lucene index

I need to get the Vector Space Model(with tf-idf weighting) from the results of a lucene query, and cant figure out how to do it. It seems like it should be simple, and at this stage maybe one of you ...
1
vote
2answers
218 views

term frequency calculation

i m in a doubt... i need to calculate term frequency of term in a document... what i did is simply just " counted the no of times that term appears in that document"...if that term appeared say 138 ...
1
vote
1answer
305 views

about cosine similarity

hi i m finding cosine similarity between documents ..i did like dis D1=(8,0,0,1) where 8,0,0,1 are the tf-idf scores of the terms t1, t2, t3 , t4 D2=(7,0,0,1) cos(theta) = (56 + 0 + 0 + 1) / ...
1
vote
2answers
2k views

Cosine Similarity

Thank you all great guys here for helping people like me :) I just need small hint .... I calculated tf/idf values of two documents. Following is the tf/idf values 1.txt 0.0 0.5 2.txt 0.0 0.5 The ...
0
votes
0answers
41 views

How to convert list of Documents to TF-IDF Vectors?

I would like to construct Document x Word matrix from the list of documents stored in many folders. A particular entry x in the matrix refers that the word_j occurs x times in the document_i. List of ...
0
votes
2answers
83 views

How can I tokenize a string in MySQL?

My project is importing a sizable collection +500K rows of data from flat Excel files, which are manually created by a team of people. Now the problem is that it all needs to be normalized, for client ...
0
votes
1answer
69 views

Which is more time efficient? File storage or SQLite

I am developing a firefox extension which is to serve as a user profiling and web personalization engine. It needs to store TF-IDF related data of web pages. My question is, which would produce faster ...
0
votes
0answers
32 views

term-document matrix

How to create term-document matrix for image document: let say I have 12 image from 3 different category( every category contain 4 image) , and the text/caption for every category are as follow: ...
0
votes
1answer
102 views

find the top words, relative to all documents

I have some 100.000+ text documents. I'd like to find a way to answer this (somewhat ambiguous) question: For a given subset of documents, what are the n most frequent words - related to the full set ...
0
votes
1answer
158 views

How can I use TF-IDF Weights to Rank Relevancy?

I have a set of key terms and have calculated TF-IDF weights along with tag frequencies and term counts for each term, persisted in a database. How can I use these DB values to produce a set of ...
0
votes
1answer
324 views

N-Gram, tf-idf and Cosine similarity in Perl

I am trying to do some pattern 'mining' in piece of multi word on each line. I have done the N-gram analysis using the Text::Ngrams module in perl which give me the frequency of each word . I am ...
0
votes
2answers
148 views

Algorithm for returning similar documents represented in Vector space model

I have a DB containing tf-idf vectors of about 30,000 documents. I would like to return for a given document a set of similar documents - about 4 or so. I thought about implementing a K-Means ...
0
votes
2answers
102 views

Suggestions for implementing “inverse document frequency” on GAE?

I need to implement "inverse document frequency" in Google app engine. I'm looking for suggestions to improve efficiency. Now I take the basic routine as, when parsing a webpage I save each pair to ...
0
votes
1answer
108 views

In Lucene, can I search one index but use IDF from another one?

I'm building a system where I want to show only results indexed in the past few days. Furthermore, I don't want to maintain a giant index with a million documents if I only want to return results from ...
0
votes
2answers
103 views

How can IDF be different for several documents?

I am using LETOR to make an information retrieval system. They use TF and IDF. I am sure TF is query-dependent. But IDF should be to, but: "Note that IDF is document independent, and so all the ...
0
votes
1answer
204 views

How do i return the number of words in a resulting document to calculate the TF

I've been set the challenge of creating a basic text file search engine in PHP in a very limited time, having little to no previous programming knowledge its quite a task! Here is what we have so ...
0
votes
1answer
236 views

Adding documents to a scored TF-IDF collection?

I have a large collection of documents that already have their TF-IDF computed. I'm getting ready to add some more documents to the collection, and I am wondering if there is a way to add TF-IDF ...
0
votes
1answer
321 views

cosine similarity problem

i have calculated the tf-idf values of terms of document 1 and document 2..now i dont know how to use these tf-idf values...basically i want to find similarity between two documents(in my case are ...
-1
votes
2answers
45 views

Transition Probability Matrix calculation for sentences

I have sentences stored as strings extracted from a document. I want to apply standard cosine similarity to sentences. How do i go about doing it?