Package com.clearnlp.dependency

Examples of com.clearnlp.dependency.DEPNode.initXHeads()


 
  /** Called by {@link LGAsk#generateQuestionFromAsk(DEPTree, String)}. */
  private DEPNode getNode(DEPNode head, String form, String lemma, String pos, String deprel, String label)
  {
    DEPNode aux = new DEPNode(0, form, lemma, pos, new DEPFeat());
    aux.initXHeads();
    aux.initSHeads();
   
    aux.setHead(head, deprel);
    if (label != nullaux.addSHead(head, label);

View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.