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

org.maltparser.parser.guide.Guidable 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.

There is a newer version: 1.9.2
Show newest version
package org.maltparser.parser.guide;

import org.maltparser.core.exception.MaltChainedException;
import org.maltparser.parser.history.action.GuideUserAction;
/**
*
* @author Johan Hall
* @since 1.1
**/
public interface Guidable {
	public void setInstance(GuideUserAction action) throws MaltChainedException;
	public void predict(GuideUserAction action) throws MaltChainedException;
	public boolean predictFromKBestList(GuideUserAction action) throws MaltChainedException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy