- Timestamp:
- Sep 7, 2006, 11:13:43 AM (16 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/c++_tools/classifier/FeatureSelector.h
r624 r642 22 22 /// @brief Default Constructor 23 23 /// 24 FeatureSelector(size_t , size_t);24 FeatureSelector(size_t N, size_t skip=0); 25 25 26 26 /// -
trunk/c++_tools/classifier/Makefile.am
r628 r642 33 33 FeatureSelector.cc \ 34 34 FeatureSelectorIR.cc \ 35 FeatureSelectorRandom.cc \ 35 36 GaussianKernelFunction.cc \ 36 37 IGP.cc \ … … 63 64 FeatureSelector.h \ 64 65 FeatureSelectorIR.h \ 66 FeatureSelectorRandom.h \ 65 67 GaussianKernelFunction.h \ 66 68 IGP.h \ -
trunk/doc/doxygen.config
r577 r642 142 142 # to NO the shortest path that makes the file name unique will be used. 143 143 144 FULL_PATH_NAMES = NO144 FULL_PATH_NAMES = YES 145 145 146 146 # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag … … 149 149 # the path. It is allowed to use relative paths in the argument list. 150 150 151 STRIP_FROM_PATH = 151 STRIP_FROM_PATH = ../ 152 152 153 153 # The INTERNAL_DOCS tag determines if documentation -
trunk/test/feature_selection_test.cc
r605 r642 2 2 3 3 #include <c++_tools/classifier/FeatureSelectorIR.h> 4 #include <c++_tools/classifier/FeatureSelectorRandom.h> 4 5 #include <c++_tools/statistics/ROC.h> 5 6 … … 25 26 statistics::ROC roc; 26 27 classifier::FeatureSelectorIR f(roc, 12); 28 classifier::FeatureSelectorRandom f2(12); 27 29 28 30 if (ok)
Note: See TracChangeset
for help on using the changeset viewer.