![JAR search and dependency download from the Maven repository](/logo.png)
it.unipi.di.acube.batframework.problems.CandidatesSpotter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bat-framework Show documentation
Show all versions of bat-framework Show documentation
A framework to compare entity annotation systems.
The newest version!
package it.unipi.di.acube.batframework.problems;
import it.unipi.di.acube.batframework.data.*;
import java.util.HashSet;
/**
* A Candidate spotter is a system that, given a text, returns the mentions
* spotted in the text plus a list of candidates for each mention. Implementing
* this interface, one can test the coverage (recall) of the candidates
* selection during the development of a system. Class
* {@link it.unipi.di.acube.batframework.utils.RunExperiments} contains methods for
* such a test.
*
*/
public interface CandidatesSpotter extends TopicSystem {
/**
* @param text
* the text to process
* @return the set of spotted multi-annotations, which are an association
* between a mention and a set of candidates.
*/
public HashSet getSpottedCandidates(String text);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy