edu.stanford.nlp.classify
Interface RVFClassifier<L,F>

All Superinterfaces:
java.io.Serializable
All Known Implementing Classes:
LinearClassifier, LogisticClassifier, NaiveBayesClassifier

public interface RVFClassifier<L,F>
extends java.io.Serializable

A simple interface for classifying and scoring data points with real-valued features. Implemented by the linear classifier.

Author:
Jenny Finkel, Sarah Spikes (sdspikes@cs.stanford.edu) (Templatization)

Method Summary
 L classOf(RVFDatum<L,F> example)
           
 Counter<L> scoresOf(RVFDatum<L,F> example)
           
 

Method Detail

classOf

L classOf(RVFDatum<L,F> example)

scoresOf

Counter<L> scoresOf(RVFDatum<L,F> example)


Stanford NLP Group