~ubuntu-branches/ubuntu/oneiric/weka/oneiric

« back to all changes in this revision

Viewing changes to weka/classifiers/trees/j48/NBTreeSplit.java

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner, Soeren Sonnenburg, Torsten Werner
  • Date: 2008-08-10 21:27:05 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080810212705-tr8etpnkdx2ziktp
Tags: 3.5.8-1
[ Soeren Sonnenburg ]
* Bump Standards Version to 3.8.0.
* Remove references to non-free Java in debian/copyright.

[ Torsten Werner ]
* new upstream release
* Switch to openjdk-6.
* Move package to main.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
import weka.classifiers.bayes.NaiveBayesUpdateable;
26
26
import weka.core.Instance;
27
27
import weka.core.Instances;
 
28
import weka.core.RevisionUtils;
28
29
import weka.filters.Filter;
29
30
import weka.filters.supervised.attribute.Discretize;
30
31
 
34
35
 * Class implementing a NBTree split on an attribute.
35
36
 *
36
37
 * @author Mark Hall (mhall@cs.waikato.ac.nz)
37
 
 * @version $Revision: 1.4 $
 
38
 * @version $Revision: 1.5 $
38
39
 */
39
40
public class NBTreeSplit
40
41
  extends ClassifierSplitModel{
399
400
  public double getErrors() {
400
401
    return m_errors;
401
402
  }
 
403
  
 
404
  /**
 
405
   * Returns the revision string.
 
406
   * 
 
407
   * @return            the revision
 
408
   */
 
409
  public String getRevision() {
 
410
    return RevisionUtils.extract("$Revision: 1.5 $");
 
411
  }
402
412
}
403