Changeset 525 for trunk/lib/classifier/SupervisedClassifier.h
- Timestamp:
- Feb 24, 2006, 5:29:22 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/classifier/SupervisedClassifier.h
r523 r525 4 4 #define _theplu_classifier_supervisedclassifier_ 5 5 6 #include <cctype> 6 7 7 8 namespace theplu { … … 12 13 } 13 14 15 namespace statistics { 16 class Score; 17 } 18 19 14 20 namespace classifier { 15 21 16 22 class DataLookup2D; 17 class Target;23 class InputRanker; class Target; 18 24 19 25 … … 29 35 /// Constructor. Taking a vector of target values. 30 36 /// 31 SupervisedClassifier(const Target&); 37 SupervisedClassifier(const Target&, statistics::Score* =0, 38 const size_t=0); 32 39 33 40 /// … … 62 69 63 70 const Target& target_; 71 statistics::Score* score_; 72 classifier::InputRanker* ranker_; 73 size_t nof_inputs_; 64 74 bool trained_; 65 75
Note: See TracChangeset
for help on using the changeset viewer.