Changeset 1144
- Timestamp:
- Feb 25, 2008, 5:51:58 PM (16 years ago)
- Location:
- trunk/yat/classifier
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/classifier/KNN.h
r1142 r1144 92 92 93 93 94 SupervisedClassifier* make_classifier(const DataLookup2D&,95 94 KNN<Distance,NeighborWeighting>* make_classifier(const DataLookup2D&, 95 const Target&) const; 96 96 97 97 /// … … 273 273 274 274 template <typename Distance, typename NeighborWeighting> 275 SupervisedClassifier*275 KNN<Distance, NeighborWeighting>* 276 276 KNN<Distance, NeighborWeighting>::make_classifier(const DataLookup2D& data, 277 277 const Target& target) const -
trunk/yat/classifier/NBC.cc
r1121 r1144 61 61 62 62 63 SupervisedClassifier*63 NBC* 64 64 NBC::make_classifier(const DataLookup2D& data, const Target& target) const 65 65 { -
trunk/yat/classifier/NBC.h
r1123 r1144 69 69 70 70 71 SupervisedClassifier* make_classifier(const DataLookup2D&,72 71 NBC* make_classifier(const DataLookup2D&, 72 const Target&) const; 73 73 74 74 /// -
trunk/yat/classifier/NCC.h
r1142 r1144 85 85 const DataLookup2D& data(void) const; 86 86 87 SupervisedClassifier* make_classifier(const DataLookup2D&,88 87 NCC<Distance>* make_classifier(const DataLookup2D&, 88 const Target&) const; 89 89 90 90 /// … … 156 156 157 157 template <typename Distance> 158 SupervisedClassifier*158 NCC<Distance>* 159 159 NCC<Distance>::make_classifier(const DataLookup2D& data, const Target& target) const 160 160 {
Note: See TracChangeset
for help on using the changeset viewer.