Package com.complexible.stardog.docs.nlp
Interface EntityExtractor<T extends Spans>
-
- Type Parameters:
T- the type representing extracted entities (probably a collection of some sort)
- All Known Implementing Classes:
BasicMentionExtractor,DictionaryLinker,EntityLinker
public interface EntityExtractor<T extends Spans>Extract some type of entities
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Textract(java.io.Reader theText)Do entity extraction
-
-
-
Method Detail
-
extract
T extract(java.io.Reader theText) throws java.lang.Exception
Do entity extraction- Parameters:
theText- the text to extract entities- Returns:
- The extracted entities
- Throws:
java.lang.Exception
-
-