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

edu.stanford.nlp.stats.Scorer Maven / Gradle / Ivy

package edu.stanford.nlp.stats;

import edu.stanford.nlp.classify.GeneralDataset;
import edu.stanford.nlp.classify.ProbabilisticClassifier;

/**
 * @author Jenny Finkel
 */

public interface Scorer {

  public  double score(ProbabilisticClassifier classifier, GeneralDataset data) ;

  public String getDescription(int numDigits);

} 




© 2015 - 2024 Weber Informatics LLC | Privacy Policy