Package org.terrier.querying
Class FeedbackSelector
- java.lang.Object
-
- org.terrier.querying.FeedbackSelector
-
- Direct Known Subclasses:
PseudoRelevanceFeedbackSelector
,RelevanceFeedbackSelector
,RelevanceFeedbackSelectorDocids
,RelevantOnlyFeedbackDocuments
public abstract class FeedbackSelector extends java.lang.Object
Implements of this class can be used to select feedback documents. Feedback documents are represented by the FeedbackDocument instances.- Since:
- 3.0
- Author:
- Craig Macdonald
-
-
Constructor Summary
Constructors Constructor Description FeedbackSelector()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract FeedbackDocument[]
getFeedbackDocuments(Request request)
Obtain feedback documents for the specified query requestvoid
setIndex(Index _index)
Set the index to be used
-
-
-
Field Detail
-
index
protected Index index
-
-
Method Detail
-
setIndex
public void setIndex(Index _index)
Set the index to be used
-
getFeedbackDocuments
public abstract FeedbackDocument[] getFeedbackDocuments(Request request)
Obtain feedback documents for the specified query request
-
-