Uses of Class
jcolibri.method.retrieve.RetrievalResult

Packages that use RetrievalResult
jcolibri.extensions.recommendation.collaborative Methods to implement collaborative recommenders 
jcolibri.extensions.recommendation.conditionals Conditional methods for recommender systems. 
jcolibri.method.retrieve.DiverseByMedianRetrieval Diverse by Median retrieval method 
jcolibri.method.retrieve.LuceneRetrieval Retrieval method using Lucene. 
jcolibri.method.retrieve.NNretrieval NN retrieval method classes. 
jcolibri.method.retrieve.selection Methods to select the cases. 
jcolibri.method.retrieve.selection.compromiseDriven Compromise-driven selection. 
jcolibri.method.retrieve.selection.diversity Diversity selection methods. 
jcolibri.method.reuse.classification Classification Reuse methods (implemented by Lisa Cummins & Derek Bridge). 
 

Uses of RetrievalResult in jcolibri.extensions.recommendation.collaborative
 

Methods in jcolibri.extensions.recommendation.collaborative that return types with arguments of type RetrievalResult
static java.util.Collection<RetrievalResult> CollaborativeRetrievalMethod.getRecommendation(PearsonMatrixCaseBase cb, CBRQuery query, int kUsers)
           
 

Uses of RetrievalResult in jcolibri.extensions.recommendation.conditionals
 

Method parameters in jcolibri.extensions.recommendation.conditionals with type arguments of type RetrievalResult
static boolean DisplayCasesIfSimilarity.displayCasesIfAllHaveMinimumSimilarity(java.util.Collection<RetrievalResult> retrieval, double minSimil)
          Checks if cases should be displayed checking the minimum similarity of all them.
static boolean DisplayCasesIfSimilarity.displayCasesIfAnyHaveMinimumSimilarity(java.util.Collection<RetrievalResult> retrieval, double minSimil)
          Checks if cases should be displayed checking the minimum similarity of them.
 

Uses of RetrievalResult in jcolibri.method.retrieve.DiverseByMedianRetrieval
 

Methods in jcolibri.method.retrieve.DiverseByMedianRetrieval that return types with arguments of type RetrievalResult
static java.util.Collection<RetrievalResult> ExpertClerkMedianScoring.getDiverseByMedian(java.util.Collection<CBRCase> cases, NNConfig simConfig, java.util.HashMap<Attribute,java.lang.Double> thresholds)
          Returns diverse cases using the ExpertClerk median method.
 

Uses of RetrievalResult in jcolibri.method.retrieve.LuceneRetrieval
 

Methods in jcolibri.method.retrieve.LuceneRetrieval that return types with arguments of type RetrievalResult
static java.util.Collection<RetrievalResult> LuceneRetrieval.LuceneRetrieve(CBRCaseBase casebase, CBRQuery query, LuceneIndex index, Attribute searchField, boolean normalized, int k)
          This method retrieves cases using Lucene to compute the similarity with the query.
 

Uses of RetrievalResult in jcolibri.method.retrieve.NNretrieval
 

Methods in jcolibri.method.retrieve.NNretrieval that return types with arguments of type RetrievalResult
static java.util.Collection<RetrievalResult> NNScoringMethod.evaluateSimilarity(java.util.Collection<CBRCase> cases, CBRQuery query, NNConfig simConfig)
           
 

Uses of RetrievalResult in jcolibri.method.retrieve.selection
 

Methods in jcolibri.method.retrieve.selection that return types with arguments of type RetrievalResult
static java.util.Collection<RetrievalResult> SelectCases.selectAllRR(java.util.Collection<RetrievalResult> cases)
          Selects all cases but returns them into RetrievalResult objects
static java.util.Collection<RetrievalResult> SelectCases.selectTopKRR(java.util.Collection<RetrievalResult> cases, int k)
          Selects top k cases but returns them into RetrievalResult objects
 

Method parameters in jcolibri.method.retrieve.selection with type arguments of type RetrievalResult
static java.util.Collection<CBRCase> SelectCases.selectAll(java.util.Collection<RetrievalResult> cases)
          Selects all cases
static java.util.Collection<RetrievalResult> SelectCases.selectAllRR(java.util.Collection<RetrievalResult> cases)
          Selects all cases but returns them into RetrievalResult objects
static java.util.Collection<CBRCase> SelectCases.selectTopK(java.util.Collection<RetrievalResult> cases, int k)
          Selects top K cases
static java.util.Collection<RetrievalResult> SelectCases.selectTopKRR(java.util.Collection<RetrievalResult> cases, int k)
          Selects top k cases but returns them into RetrievalResult objects
 

Uses of RetrievalResult in jcolibri.method.retrieve.selection.compromiseDriven
 

Method parameters in jcolibri.method.retrieve.selection.compromiseDriven with type arguments of type RetrievalResult
static CDRSet CompromiseDrivenSelection.CDR(CBRQuery query, java.util.Collection<RetrievalResult> cases, FilterConfig preferences)
          Returns a list of cases according with their compromises and similarity
 

Uses of RetrievalResult in jcolibri.method.retrieve.selection.diversity
 

Method parameters in jcolibri.method.retrieve.selection.diversity with type arguments of type RetrievalResult
static java.util.Collection<CBRCase> BoundedGreedySelection.boundedGreddySelection(java.util.Collection<RetrievalResult> cases, CBRQuery query, NNConfig simConfig, int k, int bound)
          Executes the algorithm
static java.util.Collection<CBRCase> BoundedRandomSelection.boundedRandomSelection(java.util.Collection<RetrievalResult> cases, CBRQuery query, int k, int bound)
          Executes the algorithm.
static java.util.Collection<CBRCase> GreedySelection.greedySelection(java.util.Collection<RetrievalResult> cases, CBRQuery query, NNConfig simConfig, int k)
          Executes the greedy selection algorithm
 

Uses of RetrievalResult in jcolibri.method.reuse.classification
 

Method parameters in jcolibri.method.reuse.classification with type arguments of type RetrievalResult
 CBRCase KNNClassificationMethod.getPredictedCase(CBRQuery query, java.util.Collection<RetrievalResult> cases)
          Gets the predicted solution of the given cases according to the classification type and returns a case that has the query description and the predicted solution.
 CBRCase AbstractKNNClassificationMethod.getPredictedCase(CBRQuery query, java.util.Collection<RetrievalResult> cases)
          Gets the predicted solution of the given cases according to the classification type and returns a case that has the query description and the predicted solution.
 ClassificationSolution UnanimousVotingMethod.getPredictedSolution(java.util.Collection<RetrievalResult> cases)
          Predicts the class that has all the votes among the k most similar cases and is equal to the class configured using the constructor.
 ClassificationSolution SimilarityWeightedVotingMethod.getPredictedSolution(java.util.Collection<RetrievalResult> cases)
          Predicts the class that has the highest value vote among the k most similar cases, where votes are based on similarity to the query.
 ClassificationSolution MajorityVotingMethod.getPredictedSolution(java.util.Collection<RetrievalResult> cases)
          Predicts the class that has the highest number of votes among the k most similar cases.
 ClassificationSolution KNNClassificationMethod.getPredictedSolution(java.util.Collection<RetrievalResult> cases)
          Gets the predicted solution of the given cases according to the classification type.
abstract  ClassificationSolution AbstractKNNClassificationMethod.getPredictedSolution(java.util.Collection<RetrievalResult> cases)
          Gets the predicted solution of the given cases according to the classification type.
 


GAIA - Group for Artificial Intelligence Applications
http://gaia.fdi.ucm.es