Changeset 938 for trunk/yat/classifier
- Timestamp:
- Oct 6, 2007, 1:24:05 AM (16 years ago)
- Location:
- trunk/yat/classifier
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/classifier/ConsensusInputRanker.cc
r865 r938 58 58 void ConsensusInputRanker::add(const Sampler& sampler, 59 59 const MatrixLookup& data, 60 statistics::Score& score)60 const statistics::Score& score) 61 61 { 62 62 assert(sampler.size()); … … 75 75 void ConsensusInputRanker::add(const Sampler& sampler, 76 76 const MatrixLookupWeighted& data, 77 statistics::Score& score)77 const statistics::Score& score) 78 78 { 79 79 assert(id_.empty() || id_.size()==data.rows()); -
trunk/yat/classifier/ConsensusInputRanker.h
r865 r938 85 85 /// the median rank (i.e. update() is called). 86 86 /// 87 void add(const Sampler& sampler, const MatrixLookup&, statistics::Score& s); 87 void add(const Sampler& sampler, const MatrixLookup&, 88 const statistics::Score& s); 88 89 89 90 /// … … 96 97 /// 97 98 void add(const Sampler& sampler, const MatrixLookupWeighted& data, 98 statistics::Score& score);99 const statistics::Score& score); 99 100 100 101 /// -
trunk/yat/classifier/InputRanker.cc
r865 r938 47 47 InputRanker::InputRanker(const MatrixLookup& data, 48 48 const Target& target, 49 statistics::Score& score_object)49 const statistics::Score& score_object) 50 50 { 51 51 assert(data.columns()==target.size()); … … 75 75 InputRanker::InputRanker(const MatrixLookupWeighted& data, 76 76 const Target& target, 77 statistics::Score& score_object)77 const statistics::Score& score_object) 78 78 { 79 79 assert(data.columns()==target.size()); -
trunk/yat/classifier/InputRanker.h
r929 r938 54 54 /// use all samples) 55 55 /// 56 InputRanker(const MatrixLookup&, const Target&, statistics::Score&);56 InputRanker(const MatrixLookup&, const Target&, const statistics::Score&); 57 57 58 58 /// … … 62 62 /// 63 63 InputRanker(const MatrixLookupWeighted&, const Target&, 64 statistics::Score&);64 const statistics::Score&); 65 65 66 66 ///
Note: See TracChangeset
for help on using the changeset viewer.