Changeset 1125 for trunk/yat/classifier
- Timestamp:
- Feb 22, 2008, 10:31:22 PM (16 years ago)
- Location:
- trunk/yat/classifier
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/classifier/DataLookup2D.h
r1088 r1125 129 129 /// @return sub-Lookup of the DataLookup2D 130 130 /// 131 /// @ Note Returns a dynamically allocated DataLookup2D, which has131 /// @note Returns a dynamically allocated DataLookup2D, which has 132 132 /// to be deleted by the caller to avoid memory leaks. 133 133 /// … … 138 138 /// @return sub-Lookup of the DataLookup2D 139 139 /// 140 /// @ Note Returns a dynamically allocated DataLookup2D, which has140 /// @note Returns a dynamically allocated DataLookup2D, which has 141 141 /// to be deleted by the caller to avoid memory leaks. 142 142 /// -
trunk/yat/classifier/EnsembleBuilder.h
r1121 r1125 45 45 class EnsembleBuilder 46 46 { 47 48 47 public: 48 /** 49 \brief Type of classifier that ensemble is built on. 50 */ 49 51 typedef Classifier classifier_type; 52 53 /** 54 Type of container used for storing data e.g. MatrixLookup or KernelLookup 55 */ 50 56 typedef Data data_type; 51 57 … … 72 78 73 79 /// 74 /// @ Return classifier80 /// @return classifier 75 81 /// 76 82 const Classifier& classifier(size_t i) const; 77 83 78 84 /// 79 /// @ Return Number of classifiers in ensemble85 /// @return Number of classifiers in ensemble 80 86 /// 81 87 u_long size(void) const; -
trunk/yat/classifier/Kernel.h
r1000 r1125 132 132 /// instatiate (see 'Prototype' in Design Patterns). 133 133 /// 134 /// @ Note Returns a dynamically allocated Kernel, which has134 /// @note Returns a dynamically allocated Kernel, which has 135 135 /// to be deleted by the caller to avoid memory leaks. 136 136 /// … … 143 143 /// instatiate (see 'Prototype' in Design Patterns). 144 144 /// 145 /// @ Note Returns a dynamically allocated Kernel, which has145 /// @note Returns a dynamically allocated Kernel, which has 146 146 /// to be deleted by the caller to avoid memory leaks. 147 147 /// -
trunk/yat/classifier/KernelLookup.h
r1110 r1125 76 76 const_iterator; 77 77 78 /** 79 'Read only' iterator intended to iterate over a column 80 */ 78 81 typedef const_iterator const_column_iterator; 82 83 /** 84 'Read only' iterator intended to iterate over a row 85 */ 79 86 typedef const_iterator const_row_iterator; 80 87 … … 198 205 /// \return data that KernelLookup is built upon. 199 206 /// 200 /// @ Note Returns a dynamically allocated MatrixLookup, which has207 /// @note Returns a dynamically allocated MatrixLookup, which has 201 208 /// to be deleted by the caller to avoid memory leaks. 202 209 /// … … 243 250 KernelLookup. 244 251 245 \ Note Returns a dynamically allocated KernelLookup, which has252 \note Returns a dynamically allocated KernelLookup, which has 246 253 to be deleted by the caller to avoid memory leaks. 247 254 */ … … 258 265 this was built from. 259 266 260 @ Note Returns a dynamically allocated DataLookup2D, which has267 @note Returns a dynamically allocated DataLookup2D, which has 261 268 to be deleted by the caller to avoid memory leaks. 262 269 */ … … 273 280 this was built from. 274 281 275 @ Note Returns a dynamically allocated DataLookup2D, which has282 @note Returns a dynamically allocated DataLookup2D, which has 276 283 to be deleted by the caller to avoid memory leaks. 277 284 */ … … 285 292 KernelLookup 286 293 287 \ Note Returns a dynamically allocated DataLookup2D, which has294 \note Returns a dynamically allocated DataLookup2D, which has 288 295 to be deleted by the caller to avoid memory leaks. 289 296 */ … … 298 305 \return sub-Lookup of the DataLookup2D 299 306 300 \ Note Returns a dynamically allocated DataLookup2D, which has307 \note Returns a dynamically allocated DataLookup2D, which has 301 308 to be deleted by the caller to avoid memory leaks. 302 309 */ -
trunk/yat/classifier/Kernel_MEV.h
r1000 r1125 89 89 /// instatiate (see 'Prototype' in Design Patterns). 90 90 /// 91 /// @ Note Returns a dynamically allocated Kernel, which has91 /// @note Returns a dynamically allocated Kernel, which has 92 92 /// to be deleted by the caller to avoid memory leaks. 93 93 /// … … 101 101 /// instatiate (see 'Prototype' in Design Patterns). 102 102 /// 103 /// @ Note Returns a dynamically allocated Kernel, which has103 /// @note Returns a dynamically allocated Kernel, which has 104 104 /// to be deleted by the caller to avoid memory leaks. 105 105 /// -
trunk/yat/classifier/Kernel_SEV.h
r1121 r1125 78 78 /// instatiate (see 'Prototype' in Design Patterns). 79 79 /// 80 /// @ Note Returns a dynamically allocated Kernel, which has80 /// @note Returns a dynamically allocated Kernel, which has 81 81 /// to be deleted by the caller to avoid memory leaks. 82 82 /// … … 90 90 /// instatiate (see 'Prototype' in Design Patterns). 91 91 /// 92 /// @ Note Returns a dynamically allocated Kernel, which has92 /// @note Returns a dynamically allocated Kernel, which has 93 93 /// to be deleted by the caller to avoid memory leaks. 94 94 /// -
trunk/yat/classifier/MatrixLookup.h
r1121 r1125 79 79 const_iterator; 80 80 81 /** 82 'Read only' iterator used to iterate over a column 83 */ 81 84 typedef const_iterator const_column_iterator; 85 86 /** 87 'Read only' iterator used to iterate over a row 88 */ 82 89 typedef const_iterator const_row_iterator; 83 90 … … 286 293 /// undefined. 287 294 /// 288 /// @ Note Returns a dynamically allocated DataLookup2D, which has295 /// @note Returns a dynamically allocated DataLookup2D, which has 289 296 /// to be deleted by the caller to avoid memory leaks. 290 297 /// -
trunk/yat/classifier/MatrixLookupWeighted.h
r1121 r1125 80 80 const_iterator; 81 81 82 /** 83 'Read only' iterator used to iterate over a column 84 */ 82 85 typedef const_iterator const_column_iterator; 86 87 /** 88 'Read only' iterator used to iterate over a row 89 */ 83 90 typedef const_iterator const_row_iterator; 84 91 -
trunk/yat/classifier/SVM.h
r1124 r1125 78 78 79 79 /// 80 /// 80 /// Same as copy constructor. 81 81 /// 82 82 SVM* make_classifier(void) const; -
trunk/yat/classifier/SubsetGenerator.h
r1086 r1125 52 52 { 53 53 public: 54 /** 55 type of data that is stored in SubsetGenerator 56 */ 54 57 typedef T value_type; 55 58 -
trunk/yat/classifier/SupervisedClassifier.h
r1121 r1125 71 71 /// instatiate (see 'Prototype' in Design Patterns). 72 72 /// 73 /// @ Note Returns a dynamically allocated SupervisedClassifier, which has73 /// @note Returns a dynamically allocated SupervisedClassifier, which has 74 74 /// to be deleted by the caller to avoid memory leaks. 75 75 ///
Note: See TracChangeset
for help on using the changeset viewer.