edu.columbia.cs.api
Interface RelationshipExtractor<D>
- All Known Implementing Classes:
- ClassifierBasedRelationshipExtractor, OpenIEUnsupervisedRelationshipExtractor, PatternBasedRelationshipExtractor
public interface RelationshipExtractor<D>
Interface for Relationship Extractor
A class that implements this interface is responsible for extracting tuples from documents.
The method responsible for this task is the extractTuples method.
- Since:
- 2011-09-27
- Version:
- 0.1
- Author:
- Pablo Barrio, Goncalo Simoes
Method Summary |
java.util.List<Relationship> |
extractTuples(D d)
Given an input document d this method is responsible for extracting all the relationships
between entities of the document |
extractTuples
java.util.List<Relationship> extractTuples(D d)
- Given an input document d this method is responsible for extracting all the relationships
between entities of the document
- Parameters:
d
- the document that contains the information to be extracted