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

edu.stanford.nlp.util.Scored Maven / Gradle / Ivy

Go to download

Stanford Parser processes raw text in English, Chinese, German, Arabic, and French, and extracts constituency parse trees.

There is a newer version: 3.9.2
Show newest version
package edu.stanford.nlp.util;

/**
 * Scored: This is a simple interface that says that an object can answer
 * requests for the score, or goodness of the object.
 * 

* JavaNLP includes companion classes {@link ScoredObject} which is a simple * composite of another object and a score, and {@link ScoredComparator} * which compares Scored objects. * * @author Dan Klein * @version 12/4/2000 */ public interface Scored { /** * @return The score of this thing. */ public double score(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy