All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.stanford.nlp.trees.international.pennchinese.ChineseGrammaticalStructureFactory Maven / Gradle / Ivy

Go to download

Stanford Parser processes raw text in English, Chinese, German, Arabic, and French, and extracts constituency parse trees.

There is a newer version: 3.9.2
Show newest version
package edu.stanford.nlp.trees.international.pennchinese;

import edu.stanford.nlp.trees.GrammaticalStructureFactory;
import edu.stanford.nlp.trees.HeadFinder;
import edu.stanford.nlp.trees.Tree;
import java.util.function.Predicate;

public class ChineseGrammaticalStructureFactory implements GrammaticalStructureFactory {

  private final Predicate puncFilter;
  private final HeadFinder hf;

  public ChineseGrammaticalStructureFactory() {
    this(null, null);
  }

  public ChineseGrammaticalStructureFactory(Predicate puncFilter) {
    this(puncFilter, null);
  }

  public ChineseGrammaticalStructureFactory(Predicate puncFilter, HeadFinder hf) {
    this.puncFilter = puncFilter;
    this.hf = hf;
  }

  public ChineseGrammaticalStructure newGrammaticalStructure(Tree t) {
    if (puncFilter == null && hf == null) {
      return new ChineseGrammaticalStructure(t);
    } else if (hf == null) {
      return new ChineseGrammaticalStructure(t, puncFilter);
    } else {
      return new ChineseGrammaticalStructure(t, puncFilter, hf);
    }
  }
  
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy