Ignore:
Timestamp:
04/28/16 16:51:59 (9 years ago)
Author:
sherbold
Message:
  • added some new approaches
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/CrossPare/src/de/ugoe/cs/cpdp/wekaclassifier/AbstractCODEP.java

    r56 r64  
    2727import weka.classifiers.functions.RBFNetwork; 
    2828import weka.classifiers.rules.DecisionTable; 
     29import weka.classifiers.trees.ADTree; 
    2930import weka.core.Attribute; 
    3031import weka.core.DenseInstance; 
     
    103104    /** 
    104105     * <p> 
    105      * Creates a CODEP instance using the classications of the internal classifiers. 
     106     * Creates a CODEP instance using the classifications of the internal classifiers. 
    106107     * </p> 
    107108     * 
     
    110111     * @return CODEP instance 
    111112     * @throws Exception 
    112      *             thrown if an exception occurs during classification with an internal classifer 
     113     *             thrown if an exception occurs during classification with an internal classifier 
    113114     */ 
    114115    private Instance createInternalInstance(Instance instance) throws Exception { 
     
    147148        // create training data with prediction labels 
    148149 
    149         // TODO ADTree missing?! 
     150        internalClassifiers.add(new ADTree()); 
    150151        internalClassifiers.add(new BayesNet()); 
    151152        internalClassifiers.add(new DecisionTable()); 
Note: See TracChangeset for help on using the changeset viewer.