Uses of Interface
org.terrier.matching.dsms.DocumentScoreModifier
-
Packages that use DocumentScoreModifier Package Description org.terrier.matching Provides the classes and interfaces used for matching documents to queries.org.terrier.matching.dsms Provides the interface and the classes for modifying the scores of documents after an score has been assigned to documents, or implementing the combination of evidence. -
-
Uses of DocumentScoreModifier in org.terrier.matching
Fields in org.terrier.matching declared as DocumentScoreModifier Modifier and Type Field Description protected DocumentScoreModifier[]
FeaturedScoringMatching. dsms
Fields in org.terrier.matching with type parameters of type DocumentScoreModifier Modifier and Type Field Description protected java.util.ArrayList<DocumentScoreModifier>
MatchingQueryTerms. docScoreModifiers
The document score modifiers associated with the query terms.protected java.util.List<DocumentScoreModifier>
AbstractScoringMatching. documentModifiers
Contains the document score modifiers to be applied for a query.protected java.util.List<DocumentScoreModifier>
BaseMatching. documentModifiers
Contains the document score modifiers to be applied for a query.protected java.util.List<DocumentScoreModifier>
TRECResultsMatching. dsms
The list of document score modifiers to be applied.Methods in org.terrier.matching that return DocumentScoreModifier Modifier and Type Method Description DocumentScoreModifier[]
MatchingQueryTerms. getDocumentScoreModifiers()
Returns the document score modifiers used for the query.Methods in org.terrier.matching with parameters of type DocumentScoreModifier Modifier and Type Method Description void
MatchingQueryTerms. addDocumentScoreModifier(DocumentScoreModifier dsm)
Adds a document score modifier for the query. -
Uses of DocumentScoreModifier in org.terrier.matching.dsms
Classes in org.terrier.matching.dsms that implement DocumentScoreModifier Modifier and Type Class Description class
BooleanFallback
This class provides a boolean fallback document score modifier for matching.class
BooleanScoreModifier
If not all the query terms appear in a document, then this modifier zeros the document's score.class
DependenceScoreModifier
Base class for Dependence models.class
DFRDependenceScoreModifier
Implements the pBiL and pBil2 DFR-based dependence models.class
MRFDependenceScoreModifier
Implements Markov Random Fields.class
PhraseScoreModifier
This is the class performs the re-scoring for a phrase queries.class
ResetScores
Resets the scores in the resultset to 0.00001dclass
SimpleStaticScoreModifier
Provides a way to integrate a static (query independent) document (prior) feature into the document scores.
-