![JAR search and dependency download from the Maven repository](/logo.png)
org.maltparser.parser.DependencyParserConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maltparser Show documentation
Show all versions of maltparser Show documentation
MaltParser is a system for data-driven dependency parsing, which can be used to induce a parsing model from treebank data and to parse new data using an induced model.
The newest version!
package org.maltparser.parser;
import org.maltparser.core.config.Configuration;
import org.maltparser.core.io.dataformat.DataFormatInstance;
import org.maltparser.core.exception.MaltChainedException;
import org.maltparser.core.feature.FeatureModelManager;
import org.maltparser.core.propagation.PropagationManager;
import org.maltparser.core.syntaxgraph.DependencyStructure;
/**
* @author Johan Hall
*
*/
public interface DependencyParserConfig extends Configuration {
public void parse(DependencyStructure graph) throws MaltChainedException;
public void oracleParse(DependencyStructure goldGraph, DependencyStructure oracleGraph) throws MaltChainedException;
public DataFormatInstance getDataFormatInstance();
public FeatureModelManager getFeatureModelManager();
public PropagationManager getPropagationManager();
public AbstractParserFactory getParserFactory();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy