Class XMoreLikeThis
java.lang.Object
org.elasticsearch.common.lucene.search.XMoreLikeThis
Generate "more like this" similarity queries.
Based on this mail:
Lucene does let you access the document frequency of terms, with IndexReader.docFreq(). Term frequencies can be computed by re-tokenizing the text, which, for a single document, is usually fast enough. But looking up the docFreq() of every term in the document is probably too slow. You can use some heuristics to prune the set of terms, to avoid calling docFreq() too much, or at all. Since you're trying to maximize a tf*idf score, you're probably most interested in terms with a high tf. Choosing a tf threshold even as low as two or three will radically reduce the number of terms under consideration. Another heuristic is that terms with a high idf (i.e., a low df) tend to be longer. So you could threshold the terms by the number of characters, not selecting anything less than, e.g., six or seven characters. With these sorts of heuristics you can usually find small set of, e.g., ten or fewer terms that do a pretty good job of characterizing a document. It all depends on what you're trying to do. If you're trying to eek out that last percent of precision and recall regardless of computational difficulty so that you can win a TREC competition, then the techniques I mention above are useless. But if you're trying to provide a "more like this" button on a search results page that does a decent job and has good performance, such techniques might be useful. An efficient, effective "more-like-this" query generator would be a great contribution, if anyone's interested. I'd imagine that it would take a Reader or a String (the document's text), analyzer Analyzer, and return a set of representative terms using heuristics like those above. The frequency and length thresholds could be parameters, etc. Doug
Initial Usage
This class has lots of options to try to make it efficient and flexible. The simplest possible usage is as follows. The bold fragment is specific to this class.
IndexReader ir = ... IndexSearcher is = ... MoreLikeThis mlt = new MoreLikeThis(ir); Reader target = ... // orig source of doc you want to find similarities to Query query = mlt.like( target); Hits hits = is.search(query); // now the usual iteration thru 'hits' - the only thing to watch for is to make sure //you ignore the doc if it matches your 'target' document, as it should be similar to itself
Thus you:
- do your normal, Lucene setup for searching,
- create a MoreLikeThis,
- get the text of the doc you want to find similarities to
- then call one of the like() calls to generate a similarity query
- call the searcher to find the similar docs
More Advanced Usage
You may want to use setFieldNames(...)
so you can examine
multiple fields (e.g. body and title) for similarity.
Depending on the size of your index and the size and makeup of your documents you may want to call the other set methods to control how the similarity queries are generated:
-
setMinTermFreq(...)
-
setMinDocFreq(...)
-
setMaxDocFreq(...)
-
setMaxDocFreqPct(...)
-
setMinWordLen(...)
-
setMaxWordLen(...)
-
setMaxQueryTerms(...)
-
setMaxNumTokensParsed(...)
-
setStopWord(...)
Changes: Mark Harwood 29/02/04 Some bugfixing, some refactoring, some optimisation. - bugfix: retrieveTerms(int docNum) was not working for indexes without a termvector -added missing code - bugfix: No significant terms being created for fields with a termvector - because was only counting one occurrence per term/field pair in calculations(ie not including frequency info from TermVector) - refactor: moved common code into isNoiseWord() - optimise: when no termvector support available - used maxNumTermsParsed to limit amount of tokenization
-
Field Summary
Modifier and TypeFieldDescriptionstatic boolean
Boost terms in query based on score.static String[]
Default field names.static int
Ignore words which occur in more than this many docs.static int
Default maximum number of tokens to parse in each example doc field that is not stored with TermVector support.static int
Return a Query with no more than this many terms.static int
Ignore words greater than this length or if 0 then this has no effect.static int
Ignore words which do not occur in at least this many docs.static int
Ignore terms with less than this frequency in the source doc.static int
Ignore words less than this length or if 0 then this has no effect.static Set<?>
Default set of stopwords. -
Constructor Summary
ConstructorDescriptionXMoreLikeThis(org.apache.lucene.index.IndexReader ir)
Constructor requiring an IndexReader.XMoreLikeThis(org.apache.lucene.index.IndexReader ir, org.apache.lucene.search.similarities.TFIDFSimilarity sim)
-
Method Summary
Modifier and TypeMethodDescriptionDescribe the parameters that control how the "more like this" query is formed.org.apache.lucene.analysis.Analyzer
Returns an analyzer that will be used to parse source doc with.float
Returns the boost factor used when boosting termsString[]
Returns the field names that will be used when generating the 'More Like This' query.int
Returns the maximum frequency in which words may still appear.int
int
Returns the maximum number of query terms that will be included in any generated query.int
Returns the maximum word length above which words will be ignored.int
Returns the frequency at which words will be ignored which do not occur in at least this many docs.int
Returns the frequency below which terms will be ignored in the source doc.int
Returns the minimum word length below which words will be ignored.org.apache.lucene.search.similarities.TFIDFSimilarity
Set<?>
Get the current stop words being used.boolean
isBoost()
Returns whether to boost terms in query based on "score" or not.org.apache.lucene.search.Query
like(int docNum)
Return a query that will return docs like the passed lucene document ID.org.apache.lucene.search.Query
Return a query that will return docs like the passed Readers.org.apache.lucene.search.Query
like(org.apache.lucene.index.Fields... likeFields)
Return a query that will return docs like the passed Fields.org.apache.lucene.search.Query
like(org.apache.lucene.index.Terms... likeTerms)
Return a query that will return docs like the passed Terms.String[]
retrieveInterestingTerms(int docNum)
String[]
retrieveInterestingTerms(Reader r, String fieldName)
Convenience routine to make it easy to return the most interesting words in a document.void
setAnalyzer(org.apache.lucene.analysis.Analyzer analyzer)
Sets the analyzer to use.void
setBoost(boolean boost)
Sets whether to boost terms in query based on "score" or not.void
setBoostFactor(float boostFactor)
Sets the boost factor to use when boosting termsvoid
setFieldNames(String[] fieldNames)
Sets the field names that will be used when generating the 'More Like This' query.void
setMaxDocFreq(int maxFreq)
Set the maximum frequency in which words may still appear.void
setMaxDocFreqPct(int maxPercentage)
Set the maximum percentage in which words may still appear.void
setMaxNumTokensParsed(int i)
void
setMaxQueryTerms(int maxQueryTerms)
Sets the maximum number of query terms that will be included in any generated query.void
setMaxWordLen(int maxWordLen)
Sets the maximum word length above which words will be ignored.void
setMinDocFreq(int minDocFreq)
Sets the frequency at which words will be ignored which do not occur in at least this many docs.void
setMinTermFreq(int minTermFreq)
Sets the frequency below which terms will be ignored in the source doc.void
setMinWordLen(int minWordLen)
Sets the minimum word length below which words will be ignored.void
setSimilarity(org.apache.lucene.search.similarities.TFIDFSimilarity similarity)
void
setSkipTerms(Set<org.apache.lucene.index.Term> skipTerms)
Sets a list of terms to never select fromvoid
setStopWords(Set<?> stopWords)
Set the set of stopwords.
-
Field Details
-
DEFAULT_MAX_NUM_TOKENS_PARSED
public static final int DEFAULT_MAX_NUM_TOKENS_PARSEDDefault maximum number of tokens to parse in each example doc field that is not stored with TermVector support.- See Also:
getMaxNumTokensParsed()
, Constant Field Values
-
DEFAULT_MIN_TERM_FREQ
public static final int DEFAULT_MIN_TERM_FREQIgnore terms with less than this frequency in the source doc.- See Also:
getMinTermFreq()
,setMinTermFreq(int)
, Constant Field Values
-
DEFAULT_MIN_DOC_FREQ
public static final int DEFAULT_MIN_DOC_FREQIgnore words which do not occur in at least this many docs.- See Also:
getMinDocFreq()
,setMinDocFreq(int)
, Constant Field Values
-
DEFAULT_MAX_DOC_FREQ
public static final int DEFAULT_MAX_DOC_FREQIgnore words which occur in more than this many docs. -
DEFAULT_BOOST
public static final boolean DEFAULT_BOOSTBoost terms in query based on score.- See Also:
isBoost()
,setBoost(boolean)
, Constant Field Values
-
DEFAULT_FIELD_NAMES
Default field names. Null is used to specify that the field names should be looked up at runtime from the provided reader. -
DEFAULT_MIN_WORD_LENGTH
public static final int DEFAULT_MIN_WORD_LENGTHIgnore words less than this length or if 0 then this has no effect.- See Also:
getMinWordLen()
,setMinWordLen(int)
, Constant Field Values
-
DEFAULT_MAX_WORD_LENGTH
public static final int DEFAULT_MAX_WORD_LENGTHIgnore words greater than this length or if 0 then this has no effect.- See Also:
getMaxWordLen()
,setMaxWordLen(int)
, Constant Field Values
-
DEFAULT_STOP_WORDS
Default set of stopwords. If null means to allow stop words.- See Also:
setStopWords(java.util.Set<?>)
,getStopWords()
-
DEFAULT_MAX_QUERY_TERMS
public static final int DEFAULT_MAX_QUERY_TERMSReturn a Query with no more than this many terms.- See Also:
BooleanQuery.getMaxClauseCount()
,getMaxQueryTerms()
,setMaxQueryTerms(int)
, Constant Field Values
-
-
Constructor Details
-
XMoreLikeThis
public XMoreLikeThis(org.apache.lucene.index.IndexReader ir)Constructor requiring an IndexReader. -
XMoreLikeThis
public XMoreLikeThis(org.apache.lucene.index.IndexReader ir, org.apache.lucene.search.similarities.TFIDFSimilarity sim)
-
-
Method Details
-
getBoostFactor
public float getBoostFactor()Returns the boost factor used when boosting terms- Returns:
- the boost factor used when boosting terms
- See Also:
setBoostFactor(float)
-
setBoostFactor
public void setBoostFactor(float boostFactor)Sets the boost factor to use when boosting terms- See Also:
getBoostFactor()
-
setSkipTerms
Sets a list of terms to never select from -
getSimilarity
public org.apache.lucene.search.similarities.TFIDFSimilarity getSimilarity() -
setSimilarity
public void setSimilarity(org.apache.lucene.search.similarities.TFIDFSimilarity similarity) -
getAnalyzer
public org.apache.lucene.analysis.Analyzer getAnalyzer()Returns an analyzer that will be used to parse source doc with. The default analyzer is not set.- Returns:
- the analyzer that will be used to parse source doc with.
-
setAnalyzer
public void setAnalyzer(org.apache.lucene.analysis.Analyzer analyzer)Sets the analyzer to use. An analyzer is not required for generating a query with thelike(int)
method, all other 'like' methods require an analyzer.- Parameters:
analyzer
- the analyzer to use to tokenize text.
-
getMinTermFreq
public int getMinTermFreq()Returns the frequency below which terms will be ignored in the source doc. The default frequency is theDEFAULT_MIN_TERM_FREQ
.- Returns:
- the frequency below which terms will be ignored in the source doc.
-
setMinTermFreq
public void setMinTermFreq(int minTermFreq)Sets the frequency below which terms will be ignored in the source doc.- Parameters:
minTermFreq
- the frequency below which terms will be ignored in the source doc.
-
getMinDocFreq
public int getMinDocFreq()Returns the frequency at which words will be ignored which do not occur in at least this many docs. The default frequency isDEFAULT_MIN_DOC_FREQ
.- Returns:
- the frequency at which words will be ignored which do not occur in at least this many docs.
-
setMinDocFreq
public void setMinDocFreq(int minDocFreq)Sets the frequency at which words will be ignored which do not occur in at least this many docs.- Parameters:
minDocFreq
- the frequency at which words will be ignored which do not occur in at least this many docs.
-
getMaxDocFreq
public int getMaxDocFreq()Returns the maximum frequency in which words may still appear. Words that appear in more than this many docs will be ignored. The default frequency isDEFAULT_MAX_DOC_FREQ
.- Returns:
- get the maximum frequency at which words are still allowed, words which occur in more docs than this are ignored.
-
setMaxDocFreq
public void setMaxDocFreq(int maxFreq)Set the maximum frequency in which words may still appear. Words that appear in more than this many docs will be ignored.- Parameters:
maxFreq
- the maximum count of documents that a term may appear in to be still considered relevant
-
setMaxDocFreqPct
public void setMaxDocFreqPct(int maxPercentage)Set the maximum percentage in which words may still appear. Words that appear in more than this many percent of all docs will be ignored.- Parameters:
maxPercentage
- the maximum percentage of documents (0-100) that a term may appear in to be still considered relevant
-
isBoost
public boolean isBoost()Returns whether to boost terms in query based on "score" or not. The default isDEFAULT_BOOST
.- Returns:
- whether to boost terms in query based on "score" or not.
- See Also:
setBoost(boolean)
-
setBoost
public void setBoost(boolean boost)Sets whether to boost terms in query based on "score" or not.- Parameters:
boost
- true to boost terms in query based on "score", false otherwise.- See Also:
isBoost()
-
getFieldNames
Returns the field names that will be used when generating the 'More Like This' query. The default field names that will be used isDEFAULT_FIELD_NAMES
.- Returns:
- the field names that will be used when generating the 'More Like This' query.
-
setFieldNames
Sets the field names that will be used when generating the 'More Like This' query. Set this to null for the field names to be determined at runtime from the IndexReader provided in the constructor.- Parameters:
fieldNames
- the field names that will be used when generating the 'More Like This' query.
-
getMinWordLen
public int getMinWordLen()Returns the minimum word length below which words will be ignored. Set this to 0 for no minimum word length. The default isDEFAULT_MIN_WORD_LENGTH
.- Returns:
- the minimum word length below which words will be ignored.
-
setMinWordLen
public void setMinWordLen(int minWordLen)Sets the minimum word length below which words will be ignored.- Parameters:
minWordLen
- the minimum word length below which words will be ignored.
-
getMaxWordLen
public int getMaxWordLen()Returns the maximum word length above which words will be ignored. Set this to 0 for no maximum word length. The default isDEFAULT_MAX_WORD_LENGTH
.- Returns:
- the maximum word length above which words will be ignored.
-
setMaxWordLen
public void setMaxWordLen(int maxWordLen)Sets the maximum word length above which words will be ignored.- Parameters:
maxWordLen
- the maximum word length above which words will be ignored.
-
setStopWords
Set the set of stopwords. Any word in this set is considered "uninteresting" and ignored. Even if your Analyzer allows stopwords, you might want to tell the MoreLikeThis code to ignore them, as for the purposes of document similarity it seems reasonable to assume that "a stop word is never interesting".- Parameters:
stopWords
- set of stopwords, if null it means to allow stop words- See Also:
getStopWords()
-
getStopWords
Get the current stop words being used.- See Also:
setStopWords(java.util.Set<?>)
-
getMaxQueryTerms
public int getMaxQueryTerms()Returns the maximum number of query terms that will be included in any generated query. The default isDEFAULT_MAX_QUERY_TERMS
.- Returns:
- the maximum number of query terms that will be included in any generated query.
-
setMaxQueryTerms
public void setMaxQueryTerms(int maxQueryTerms)Sets the maximum number of query terms that will be included in any generated query.- Parameters:
maxQueryTerms
- the maximum number of query terms that will be included in any generated query.
-
getMaxNumTokensParsed
public int getMaxNumTokensParsed()- Returns:
- The maximum number of tokens to parse in each example doc field that is not stored with TermVector support
- See Also:
DEFAULT_MAX_NUM_TOKENS_PARSED
-
setMaxNumTokensParsed
public void setMaxNumTokensParsed(int i)- Parameters:
i
- The maximum number of tokens to parse in each example doc field that is not stored with TermVector support
-
like
Return a query that will return docs like the passed lucene document ID.- Parameters:
docNum
- the documentID of the lucene doc to generate the 'More Like This" query for.- Returns:
- a query that will return docs like the passed lucene document ID.
- Throws:
IOException
-
like
Return a query that will return docs like the passed Readers. This was added in order to treat multi-value fields.- Returns:
- a query that will return docs like the passed Readers.
- Throws:
IOException
-
like
public org.apache.lucene.search.Query like(org.apache.lucene.index.Terms... likeTerms) throws IOExceptionReturn a query that will return docs like the passed Terms.- Returns:
- a query that will return docs like the passed Terms.
- Throws:
IOException
-
like
public org.apache.lucene.search.Query like(org.apache.lucene.index.Fields... likeFields) throws IOExceptionReturn a query that will return docs like the passed Fields.- Returns:
- a query that will return docs like the passed Fields.
- Throws:
IOException
-
describeParams
Describe the parameters that control how the "more like this" query is formed. -
retrieveInterestingTerms
- Throws:
IOException
- See Also:
retrieveInterestingTerms(java.io.Reader, String)
-
retrieveInterestingTerms
Convenience routine to make it easy to return the most interesting words in a document. More advanced users will callretrieveTerms()
directly.- Parameters:
r
- the source documentfieldName
- field passed to analyzer to use when analyzing the content- Returns:
- the most interesting words in the document
- Throws:
IOException
- See Also:
retrieveTerms(java.io.Reader, String)
,setMaxQueryTerms(int)
-