Uses of Interface
de.uni_trier.wi2.procake.retrieval.Query
-
Packages that use Query Package Description de.uni_trier.wi2.procake.retrieval Retrieval package descriptionde.uni_trier.wi2.procake.retrieval.impl de.uni_trier.wi2.procake.retrieval.impl.macfac de.uni_trier.wi2.procake.retrieval.impl.macfac.fb de.uni_trier.wi2.procake.utils.eval -
-
Uses of Query in de.uni_trier.wi2.procake.retrieval
Classes in de.uni_trier.wi2.procake.retrieval with type parameters of type Query Modifier and Type Interface Description interfaceParallelLinearRetriever<TCase extends DataObject,TQuery extends Query>Interface for a parallelized LinearRetriever.interfaceRetriever<TCase extends DataObject,TQuery extends Query>General retriever interface that describes the minimum methods a retriever must implement.Subinterfaces of Query in de.uni_trier.wi2.procake.retrieval Modifier and Type Interface Description interfaceDependencyQueryInterface, that provides a description of a dependency query to be used inRetriever.perform(Query).interfaceMACFACQueryA MACFAC query needs additional parameters compared to a standard retrieval query.Methods in de.uni_trier.wi2.procake.retrieval that return Query Modifier and Type Method Description QueryMACFACQuery. getFacQuery()Returns the FAC-query if a FAC-query was set beforeMethods in de.uni_trier.wi2.procake.retrieval that return types with arguments of type Query Modifier and Type Method Description static Retriever<? extends DataObject,? extends Query>RetrievalFactory. newRetriever(String retrieverName)Creates a new retriever of the specified name.Methods in de.uni_trier.wi2.procake.retrieval with parameters of type Query Modifier and Type Method Description voidMACFACQuery. setFacQuery(Query facQuery)Sets the FAC-query of the MACFAC-queryMethod parameters in de.uni_trier.wi2.procake.retrieval with type arguments of type Query Modifier and Type Method Description static AbstractMACFACRetrieverRetrievalFactory. createMACFACRetriever(Retriever<DataObject,Query> macRetriever, Retriever<DataObject,Query> facRetriever)Creates a new MAC/FAC retriever that is composed of the given MAC retriever and the given FAC retriever. -
Uses of Query in de.uni_trier.wi2.procake.retrieval.impl
Classes in de.uni_trier.wi2.procake.retrieval.impl with type parameters of type Query Modifier and Type Class Description classRetrieverImpl<TCase extends DataObject,TQuery extends Query>Classes in de.uni_trier.wi2.procake.retrieval.impl that implement Query Modifier and Type Class Description classDependencyQueryImplImplementation ofDependencyQuery.classMACFACQueryImplThe query class for MAC/FAC queries which contains additional parameters to control the behavior of the MAC/FAC retriever.classQueryImplMethods in de.uni_trier.wi2.procake.retrieval.impl that return Query Modifier and Type Method Description QueryMACFACQueryImpl. getFacQuery()QueryRetrievalResultListImpl. getQuery()QueryLinearRetrieverImpl. newQuery()Methods in de.uni_trier.wi2.procake.retrieval.impl with parameters of type Query Modifier and Type Method Description RetrievalResultListGraphAStarParallelRetrieverImpl. perform(Query query)RetrievalResultListLinearRetrieverImpl. perform(Query query)RetrievalResultListParallelLinearRetrieverImpl. perform(Query query)voidMACFACQueryImpl. setFacQuery(Query facQuery)voidRetrievalResultListImpl. setQuery(Query query) -
Uses of Query in de.uni_trier.wi2.procake.retrieval.impl.macfac
Fields in de.uni_trier.wi2.procake.retrieval.impl.macfac with type parameters of type Query Modifier and Type Field Description protected Retriever<TCase,Query>AbstractMACFACRetriever. facRetrieverprotected Retriever<TCase,Query>AbstractMACFACRetriever. macRetrieverMethods in de.uni_trier.wi2.procake.retrieval.impl.macfac that return types with arguments of type Query Modifier and Type Method Description Retriever<TCase,Query>AbstractMACFACRetriever. getFACRetriever()Returns the FAC retriever instance of the MAC/FAC setup.Retriever<TCase,Query>AbstractMACFACRetriever. getMACRetriever()Returns the MAC retriever instance of the MAC/FAC setup.Method parameters in de.uni_trier.wi2.procake.retrieval.impl.macfac with type arguments of type Query Modifier and Type Method Description voidAbstractMACFACRetriever. setFACRetriever(Retriever<TCase,Query> facRetriever)Set the FAC retriever instance that is used to execute the FAC phase of the MAC/FAC retrieval.voidAbstractMACFACRetriever. setMACRetriever(Retriever<TCase,Query> macRetriever)Set the MAC retriever instance that is used to execute the MAC phase of the MAC/FAC retrieval. -
Uses of Query in de.uni_trier.wi2.procake.retrieval.impl.macfac.fb
Methods in de.uni_trier.wi2.procake.retrieval.impl.macfac.fb that return Query Modifier and Type Method Description QueryFeatureRetriever. newQuery()Methods in de.uni_trier.wi2.procake.retrieval.impl.macfac.fb with parameters of type Query Modifier and Type Method Description RetrievalResultListFeatureRetriever. perform(Query query)Method parameters in de.uni_trier.wi2.procake.retrieval.impl.macfac.fb with type arguments of type Query Modifier and Type Method Description voidFeatureMACFACRetriever. setFACRetriever(Retriever<TCase,Query> facRetriever)voidFeatureMACFACRetriever. setMACRetriever(Retriever<TCase,Query> macRetriever) -
Uses of Query in de.uni_trier.wi2.procake.utils.eval
Fields in de.uni_trier.wi2.procake.utils.eval with type parameters of type Query Modifier and Type Field Description protected Map<String,Retriever<NESTWorkflowObject,Query>>RetrieverEvaluation. retrieversThe list of retrievers to evaluate.Method parameters in de.uni_trier.wi2.procake.utils.eval with type arguments of type Query Modifier and Type Method Description voidRetrieverEvaluation. addRetrieversToEvaluate(Map<String,Retriever<NESTWorkflowObject,Query>> retrieverMap)Adds retrievers to evaluate.voidRetrieverEvaluation. addRetrieverToEvaluate(String uniqueRetrieverName, Retriever<NESTWorkflowObject,Query> retriever)Adds a retriever to evaluate.static List<SimpleSimilarityResult>RetrieverEvaluationUtils. computeGroundTruthSimilarities(Retriever<NESTWorkflowObject,Query> groundTruthRetriever, WriteableObjectPool<NESTWorkflowObject> trainCaseBase, WriteableObjectPool<NESTWorkflowObject> testCaseBase, String pathGroundTruthSimilarities)Computes the ground-truth similarities with the given ground-truth retriever.static List<SimpleSimilarityResult>RetrieverEvaluationUtils. computeGroundTruthSimilarities(Retriever<NESTWorkflowObject,Query> groundTruthRetriever, TrainingObjectPool<NESTWorkflowObject> trainingObjectPool, String pathGroundTruthSimilarities)Computes the ground-truth similarities with the given ground-truth retriever.voidMACFACRetrieverEvaluation. setFacGTRetriever(Retriever<NESTWorkflowObject,Query> facGTRetriever)static voidRetrieverEvaluationUtils. testRetrievers(WriteableObjectPool<NESTWorkflowObject> trainPool, WriteableObjectPool<NESTWorkflowObject> testPool, Map<String,Retriever<NESTWorkflowObject,Query>> retrieverMap)Simple method to test all retrievers in retrieverMap prior to the actual evaluation.static voidRetrieverEvaluationUtils. testRetrievers(TrainingObjectPool<NESTWorkflowObject> trainingObjectPool, Map<String,Retriever<NESTWorkflowObject,Query>> retrieverMap)Simple method to test all retrievers in retrieverMap prior to the actual evaluation.
-