View Javadoc

1   /*
2    * Created on Nov 9, 2004
3    *
4    * TODO To change the template for this generated file go to
5    * Window - Preferences - Java - Code Style - Code Templates
6    */
7   package net.sf.bddbddb.order;
8   
9   import weka.classifiers.Classifier;
10  import weka.core.Instance;
11  import weka.core.Instances;
12  
13  /***
14   * @author Administrator
15   *
16   * TODO To change the template for this generated type comment go to
17   * Window - Preferences - Java - Code Style - Code Templates
18   */
19  public abstract class ClassProbabilityEstimator extends Classifier{
20      public abstract double classProbability(Instance instance, double targetClass);
21      public abstract double classVariance(Instance instaance, double targetClass);
22      public abstract Instances getData();
23  }