Package org.maltparserx.core.feature.system

Examples of org.maltparserx.core.feature.system.FeatureEngine


 
  public SingleGuide(DependencyParserConfig configuration, GuideHistory history, GuideMode guideMode) throws MaltChainedException {
    this.configuration = configuration;
   
    this.guideMode = guideMode;
    final FeatureEngine system = new FeatureEngine();
    system.load("/appdata/features/ParserFeatureSystem.xml");
    system.load(PluginLoader.instance());
    featureModelManager = new FeatureModelManager(system, getConfiguration().getConfigurationDir());

    // initialize history
    this.history = history;
    Class<?> kBestListClass = null;
View Full Code Here

TOP

Related Classes of org.maltparserx.core.feature.system.FeatureEngine

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.