edu.stanford.nlp.dcoref
Interface CorefMentionFinder
- All Known Implementing Classes:
- RuleBasedCorefMentionFinder
public interface CorefMentionFinder
Interface for finding coref mentions in a document.
- Author:
- Angel Chang
extractPredictedMentions
java.util.List<java.util.List<Mention>> extractPredictedMentions(Annotation doc,
int maxGoldID,
Dictionaries dict)
- Get all the predicted mentions for a document.
- Parameters:
doc - The syntactically annotated documentmaxGoldID - The last mention ID assigned. New ones are assigned starting one above this number.dict - Dictionaries for coref.
- Returns:
- For each of the List of sentences in the document, a List of Mention objects
Stanford NLP Group