Example usage for edu.stanford.nlp.trees SemanticHeadFinder SemanticHeadFinder

List of usage examples for edu.stanford.nlp.trees SemanticHeadFinder SemanticHeadFinder

Introduction

In this page you can find the example usage for edu.stanford.nlp.trees SemanticHeadFinder SemanticHeadFinder.

Prototype

public SemanticHeadFinder() 

Source Link

Usage

From source file:knu.univ.lingvo.coref.MentionExtractor.java

License:Open Source License

public MentionExtractor(Dictionaries dict, Semantics semantics) {
    this.headFinder = new SemanticHeadFinder();
    this.dictionaries = dict;
    this.semantics = semantics;
    this.mentionFinder = new RuleBasedCorefMentionFinder(); // Default
}