Package org.maltparserx.core.feature.system

Examples of org.maltparserx.core.feature.system.FeatureEngine.load()


  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;
View Full Code Here


    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
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.