Package org.maltparserx.core.propagation

Examples of org.maltparserx.core.propagation.PropagationManager


  private void initPropagation()  throws MaltChainedException {
    String propagationSpecFileName = getOptionValue("singlemalt", "propagation").toString();
    if (propagationSpecFileName == null || propagationSpecFileName.length() == 0) {
      return;
    }
    propagationManager = new PropagationManager(configDir);
    if (mode == SingleMalt.LEARN) {
      propagationSpecFileName = configDir.copyToConfig(propagationSpecFileName);
      OptionManager.instance().overloadOptionValue(optionContainerIndex, "singlemalt", "propagation", propagationSpecFileName);
    }
    getConfigLogger().info("  Propagation          : " + propagationSpecFileName+"\n");
View Full Code Here

TOP

Related Classes of org.maltparserx.core.propagation.PropagationManager

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.