Full-text search relevance is measured in? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T22:54:56Z http://stackoverflow.com/feeds/question/237970 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/237970/full-text-search-relevance-is-measured-in 5 Full-text search relevance is measured in? SyaZ 2008-10-26T12:40:48Z 2008-10-26T16:43:50Z <p>I am making a quiz system, and when quizmakers insert questions into the Question Bank, I am to check the DB for duplicate / very highly similar questions.</p> <p>Testing MySQL's <a href="http://dev.mysql.com/doc/refman/5.0/en/fulltext-search.html#function_match" rel="nofollow">MATCH() ... AGAINST()</a>, the highest relevance I get is 30+, when I test against a 100% similar string.</p> <p>So what exactly is the relevance? To quote the <a href="http://dev.mysql.com/doc/refman/5.0/en/fulltext-natural-language.html" rel="nofollow">manual</a>:</p> <blockquote> <p>Relevance values are non-negative floating-point numbers. Zero relevance means no similarity. Relevance is computed based on the number of words in the row, the number of unique words in that row, the total number of words in the collection, and the number of documents (rows) that contain a particular word. </p> </blockquote> <p>My problem is how to test the relevance value if a string is a duplicate. If it's 100% duplicate, prevent it from being inserter into Question Bank. But if it is only so similar, prompt the quizmaker to verify, insert or not. So how do I do that? 30+ for 100% identical string is not percentage, so I'm stump.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/237970/full-text-search-relevance-is-measured-in/237993#237993 0 Answer by andygeers for Full-text search relevance is measured in? andygeers 2008-10-26T13:11:58Z 2008-10-26T13:11:58Z <p>I don't know the specifics of the MySQL function you're using, but I imagine it could be that there is no absolute meaning for those numbers - they're just designed to be compared with other values produced by the same function. To check for an absolute match you could select out the text itself and compare manually.</p> http://stackoverflow.com/questions/237970/full-text-search-relevance-is-measured-in/238072#238072 4 Answer by ConcernedOfTunbridgeWells for Full-text search relevance is measured in? ConcernedOfTunbridgeWells 2008-10-26T14:31:16Z 2008-10-26T14:31:16Z <p>The basic data structure for a text retrieval system is an <a href="http://en.wikipedia.org/wiki/Inverted_index" rel="nofollow">Inverted Index</a>. This is essentially a list of words found in the document collection with a list of the documents they occur in. It can also have metadata about the occurrence for each document, such as the number of times the word appears.</p> <p>Documents containing the words can be queried by matching on the search terms. To determine relevance, a heuristic known as a <a href="http://www.stanford.edu/class/cs276a/handouts/lecture7.ppt" rel="nofollow">Cosine Ranking</a> is calculated on the hits. This works by constructing n-dimensional vector with one component for each of the n search terms. You can also weight the search terms if desired. This vector gives a point in n-dimensional space that corresponds to your search terms.</p> <p>A similar vector based on the weighted occurrences in each document can be constructed from the inverted index with each axis in the vector corresponding with the axis for each search term. If you calculate a dot product of these vectors you get the cosine of the angle between them. 1.0 is equivalent to cos (0), which would assume the vectors occupy a common line from the origin. The closer the vectors together, the smaller the angle and the closer the cosine is to 1.0.</p> <p>If you sort the search results by the cosine (or bung them into a priority queue as <a href="http://www.nzdl.org/html/mg.html" rel="nofollow">mg</a> does) you get the most relevant. Cleverer relevance algorithms tend to fiddle with the weights of the search terms, skewing the dot product in favour of terms with high relevance.</p> <p>If you want to dig a little, <a href="http://rads.stackoverflow.com/amzn/click/1558605703" rel="nofollow">Managing Gigabytes</a> by <a href="http://www.cosc.canterbury.ac.nz/tim.bell/" rel="nofollow">Bell</a> and <a href="http://www.cs.mu.oz.au/~alistair/" rel="nofollow">Moffet</a> discusses the internal architecture of text retrieval systems.</p> http://stackoverflow.com/questions/237970/full-text-search-relevance-is-measured-in/238158#238158 3 Answer by Dave Sherohman for Full-text search relevance is measured in? Dave Sherohman 2008-10-26T15:47:28Z 2008-10-26T15:47:28Z <p>andygeers is on the right track: Those numbers have no empirical meaning other than their relations to each other and cannot be used on their own to determine what is or is not an "exact match". You need to determine that yourself. Even aside from the limitations of fulltext search ranking, there's also the open question of just what you consider to consitiute an "exact match". (Actual text only or do soundex matches count? Do synonyms (e.g., "couch" vs. "sofa") count as matching or as distinct? Should an attempt be made to compensate for misspellings? Etc.)</p> <p>If I had the need to perform such a check, I would grab only the highest-ranked entry returned by the fulltext search, remove any designated stopwords, normalize whitespace, convert to lowercase, do the comparison, and leave it at that until I encountered a case that called for it to be refined further. It's not really all <em>that</em> much extra work - if you specify the language you're using for your application, you could probably find someone around here who could write the normalization function within a dozen or so lines of code.</p>