All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.maltparser.parser.DependencyParserConfig Maven / Gradle / Ivy

Go to download

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