Changeset 64 for trunk/CrossPare/src/de/ugoe/cs/cpdp/wekaclassifier
- Timestamp:
- 04/28/16 16:51:59 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/CrossPare/src/de/ugoe/cs/cpdp/wekaclassifier/AbstractCODEP.java
r56 r64 27 27 import weka.classifiers.functions.RBFNetwork; 28 28 import weka.classifiers.rules.DecisionTable; 29 import weka.classifiers.trees.ADTree; 29 30 import weka.core.Attribute; 30 31 import weka.core.DenseInstance; … … 103 104 /** 104 105 * <p> 105 * Creates a CODEP instance using the classi cations of the internal classifiers.106 * Creates a CODEP instance using the classifications of the internal classifiers. 106 107 * </p> 107 108 * … … 110 111 * @return CODEP instance 111 112 * @throws Exception 112 * thrown if an exception occurs during classification with an internal classif er113 * thrown if an exception occurs during classification with an internal classifier 113 114 */ 114 115 private Instance createInternalInstance(Instance instance) throws Exception { … … 147 148 // create training data with prediction labels 148 149 149 // TODO ADTree missing?!150 internalClassifiers.add(new ADTree()); 150 151 internalClassifiers.add(new BayesNet()); 151 152 internalClassifiers.add(new DecisionTable());
Note: See TracChangeset
for help on using the changeset viewer.