Package com.clearnlp.nlp.train

Examples of com.clearnlp.nlp.train.DEPTrainer


  public AbstractNLPTrainer getTrainer(String mode)
  {
    switch (mode)
    {
    case NLPMode.MODE_POS : return new POSTrainer();
    case NLPMode.MODE_DEP : return new DEPTrainer();
    case NLPMode.MODE_PRED: return new PredTrainer();
    case NLPMode.MODE_ROLE: return new RoleTrainer();
    case NLPMode.MODE_SRL : return new SRLTrainer();
    }
View Full Code Here


  public AbstractNLPTrainer getTrainer(String mode)
  {
    switch (mode)
    {
    case NLPLib.MODE_POS : return new POSTrainer();
    case NLPLib.MODE_DEP : return new DEPTrainer();
    case NLPLib.MODE_PRED: return new PredTrainer();
    case NLPLib.MODE_ROLE: return new RoleTrainer();
    case NLPLib.MODE_SRL : return new SRLTrainer();
    }
View Full Code Here

TOP

Related Classes of com.clearnlp.nlp.train.DEPTrainer

Copyright © 2018 www.massapicom. 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.