Tagged Questions
The tfidf tag has no wiki summary.
4
votes
2answers
1k views
how do I normalise a solr/lucene score?
I am trying to work out how to improve the scoring of solr search results. My application needs to take the score from the solr results and display a number of “stars” depending on how good the ...
2
votes
1answer
210 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 ...
1
vote
0answers
24 views
Tokenizing the content of siblings in a DOM tree
I have a plan to traverse a dom tree in postorder fashion, then when its traversing through the siblings of each depth , for each sibling group, i want to get the number of elements in the text ...
1
vote
1answer
599 views
Lucene numDocs and doqFreq on custom similarity class
im doing an aplication with Lucene (im a noob with it) and im facing some problems.
My aplication uses the Lucene 2.4.0 library with a custom similaraty implementation (the jar is imported)
In my app ...
1
vote
2answers
652 views
How to calculate IDF?
Thank you guys on this website you helped in TF/IDF. It helped me alot to make tf-idf function in java. I made tf but I have one question. As on wiki they wrote IDF can be calculated that how many ...
1
vote
2answers
673 views
tf-idf and previously unseen terms
TF-IDF (term frequency - inverse document frequency) is a staple of information retrieval. It's not a proper model though, and it seems to break down when new terms are introduced into the corpus. ...
0
votes
0answers
17 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
0answers
48 views
How to sort by tag considering the tags weights related to every document?
I'm building up a Solr search engine to search on a 300k documents collection. Among the many indexed fields, an important one is tags.
My idea is to assign to every document a vector of tags, each ...
0
votes
2answers
191 views
Python and tfidf algorithm, make it faster?
I am implementing the tf-idf algorithm in a web application using Python, however it runs extremely slow. What I basically do is:
1) Create 2 dictionaries:
First dictionary: key (document id), ...
0
votes
1answer
130 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
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
173 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
110 views
tf-idf: Does using it help to weigh documents that share the terms higher than a document that doesnt?
I'm working on a customized search feature for a website. and I was curious if using only tf-idf to rank documents in my corpus would also help to weigh documents that have multiple search terms ...
0
votes
2answers
2k views
tf idf similarity problem
i am using TF/IDF to calculate similarity. For example if i have following two doc.
Doc A => cat dog
Doc B => dog sparrow
It is normal it's similarity would be 50% but when I calculate its TF/IDF. ...