Ignore:
Timestamp:
08/25/14 12:52:14 (10 years ago)
Author:
sherbold
Message:
  • added some source code comments
Location:
trunk/CrossPare/src/de/ugoe/cs/cpdp/training
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/CrossPare/src/de/ugoe/cs/cpdp/training/BaggingTraining.java

    r2 r10  
    5858                public double classifyInstance(Instance instance) { 
    5959                        if( classifiers==null ) { 
    60                                 return 0.0; // TODO check how WEKA expects classifyInstance to behave if no classifier exists yet 
     60                                return 0.0; 
    6161                        } 
    6262                         
  • trunk/CrossPare/src/de/ugoe/cs/cpdp/training/WekaBaggingTraining2.java

    r2 r10  
    6767                public double classifyInstance(Instance instance) { 
    6868                        if( classifiers==null ) { 
    69                                 return 0.0; // TODO check how WEKA expects classifyInstance to behave if no classifier exists yet 
     69                                return 0.0; 
    7070                        } 
    7171                         
Note: See TracChangeset for help on using the changeset viewer.