1
2
3
4
5
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 }