Changeset 747 for trunk/yat/classifier
- Timestamp:
- Feb 11, 2007, 2:26:41 PM (17 years ago)
- Location:
- trunk/yat/classifier
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/classifier/DataLookup1D.h
r720 r747 25 25 */ 26 26 27 #include "DataLookup2D.h"28 29 27 #include <cassert> 30 28 #include <iostream> … … 34 32 namespace yat { 35 33 namespace classifier { 34 35 class DataLookup2D; 36 36 37 37 /// -
trunk/yat/classifier/DataLookupWeighted1D.h
r720 r747 25 25 */ 26 26 27 #include "MatrixLookupWeighted.h"28 29 27 #include <iostream> 30 28 #include <vector> … … 33 31 namespace yat { 34 32 namespace classifier { 33 34 class MatrixLookupWeighted; 35 35 36 36 /// -
trunk/yat/classifier/FeatureSelectorIR.cc
r680 r747 26 26 #include "MatrixLookup.h" 27 27 #include "InputRanker.h" 28 #include "Target.h" 28 29 29 30 #include <algorithm> -
trunk/yat/classifier/FeatureSelectorIR.h
r680 r747 27 27 #include "FeatureSelector.h" 28 28 29 #include "yat/statistics/Score.h"30 31 29 namespace theplu { 32 30 namespace yat { 31 namespace statistics { 32 class Score; 33 } 33 34 namespace classifier { 34 35 -
trunk/yat/classifier/GaussianKernelFunction.h
r680 r747 26 26 27 27 #include "KernelFunction.h" 28 #include "DataLookup1D.h"29 28 30 29 #include <cmath> … … 33 32 namespace yat { 34 33 namespace classifier { 34 35 class DataLookup1D; 35 36 36 37 /// -
trunk/yat/classifier/Kernel.cc
r720 r747 27 27 #include "KernelFunction.h" 28 28 #include "MatrixLookup.h" 29 #include "MatrixLookupWeighted.h" 29 30 30 31 #include <vector> -
trunk/yat/classifier/Kernel.h
r746 r747 25 25 */ 26 26 27 #include "DataLookup2D.h"28 27 #include "KernelFunction.h" 29 #include "MatrixLookupWeighted.h"30 28 31 29 #include <cctype> … … 36 34 namespace classifier { 37 35 36 class DataLookup2D; 38 37 class MatrixLookup; 38 class MatrixLookupWeighted; 39 39 40 40 /// -
trunk/yat/classifier/Kernel_MEV.h
r746 r747 25 25 */ 26 26 27 #include "DataLookup1D.h"28 27 #include "Kernel.h" 29 28 #include "KernelFunction.h" -
trunk/yat/classifier/PolynomialKernelFunction.h
r680 r747 26 26 27 27 #include "KernelFunction.h" 28 #include "DataLookup1D.h"29 28 30 29 #include <cmath> … … 33 32 namespace yat { 34 33 namespace classifier { 34 35 class DataLookup1D; 35 36 36 37 /// -
trunk/yat/classifier/SVM.cc
r722 r747 24 24 #include "SVM.h" 25 25 #include "DataLookup2D.h" 26 #include "Target.h" 26 27 #include "yat/random/random.h" 27 28 #include "yat/statistics/Averager.h" -
trunk/yat/classifier/SVM.h
r722 r747 28 28 #include "SupervisedClassifier.h" 29 29 #include "SVindex.h" 30 #include "Target.h"31 30 #include "yat/utility/vector.h" 32 31 … … 39 38 40 39 class DataLookup2D; 40 class Target; 41 41 42 /// 42 43 /// @brief Support Vector Machine
Note: See TracChangeset
for help on using the changeset viewer.