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

org.maltparser.core.syntaxgraph.Weightable 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.core.syntaxgraph;
/**
*
*
* @author Johan Hall
*/
public interface Weightable {
	public void setWeight(double weight);
	public double getWeight();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy