Changeset 10 for trunk/CrossPare/src/de/ugoe/cs/cpdp/training
- Timestamp:
- 08/25/14 12:52:14 (10 years ago)
- 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 58 58 public double classifyInstance(Instance instance) { 59 59 if( classifiers==null ) { 60 return 0.0; // TODO check how WEKA expects classifyInstance to behave if no classifier exists yet60 return 0.0; 61 61 } 62 62 -
trunk/CrossPare/src/de/ugoe/cs/cpdp/training/WekaBaggingTraining2.java
r2 r10 67 67 public double classifyInstance(Instance instance) { 68 68 if( classifiers==null ) { 69 return 0.0; // TODO check how WEKA expects classifyInstance to behave if no classifier exists yet69 return 0.0; 70 70 } 71 71
Note: See TracChangeset
for help on using the changeset viewer.