BinaryClassifierLearner.java :  » Natural-Language-Processing » MinorThird » edu » cmu » minorthird » classify » Java Open Source

Java Open Source » Natural Language Processing » MinorThird 
MinorThird » edu » cmu » minorthird » classify » BinaryClassifierLearner.java
package edu.cmu.minorthird.classify;



/**
 * Learn a BinaryClassifier.
 *
 * @author William Cohen
 */

public interface BinaryClassifierLearner extends ClassifierLearner
{
  /* Returned the learned classifier as a binary classifier.
   */
  public BinaryClassifier getBinaryClassifier();
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.