Changeset 747
- Timestamp:
- Feb 11, 2007, 2:26:41 PM (17 years ago)
- Location:
- trunk
- Files:
-
- 24 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/score_test.cc
r724 r747 22 22 */ 23 23 24 #include "yat/classifier/Target.h" 24 25 #include "yat/statistics/FoldChange.h" 25 26 #include "yat/statistics/Pearson.h" -
trunk/test/svm_test.cc
r680 r747 28 28 #include "yat/classifier/Kernel_MEV.h" 29 29 #include "yat/classifier/PolynomialKernelFunction.h" 30 #include "yat/classifier/Target.h" 30 31 #include "yat/utility/matrix.h" 31 32 #include "yat/utility/vector.h" -
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 -
trunk/yat/microarray/DataSet.h
r720 r747 26 26 27 27 #include "yat/classifier/MatrixLookup.h" 28 #include "yat/classifier/Target.h"29 28 30 29 #include <map> … … 34 33 namespace theplu { 35 34 namespace yat { 35 namespace classifier { 36 class Target; 37 } 36 38 namespace microarray { 37 39 -
trunk/yat/regression/Local.h
r726 r747 25 25 */ 26 26 27 #include "Kernel.h"28 #include "OneDimensionalWeighted.h"29 27 #include "yat/utility/vector.h" 30 28 … … 34 32 namespace yat { 35 33 namespace regression { 34 35 class Kernel; 36 class OneDimensionalWeighted; 36 37 37 38 /// -
trunk/yat/regression/Polynomial.h
r729 r747 27 27 #include "OneDimensional.h" 28 28 #include "MultiDimensional.h" 29 #include "yat/utility/vector.h"30 29 31 30 namespace theplu { 32 31 namespace yat { 32 namespace utility { 33 class vector; 34 } 33 35 namespace regression { 34 36 -
trunk/yat/statistics/Fisher.h
r718 r747 26 26 27 27 #include "Score.h" 28 #include "yat/utility/vector.h" 28 29 #include <sys/types.h> 29 30 30 31 #include <cmath> … … 32 33 namespace theplu { 33 34 namespace yat { 35 namespace utility { 36 class vector; 37 } 34 38 namespace statistics { 35 39 /** -
trunk/yat/statistics/FoldChange.cc
r683 r747 28 28 #include "yat/classifier/DataLookupWeighted1D.h" 29 29 #include "yat/classifier/Target.h" 30 #include "yat/utility/vector.h" 30 31 31 32 namespace theplu { -
trunk/yat/statistics/ROC.cc
r718 r747 24 24 #include "ROC.h" 25 25 #include "yat/classifier/DataLookupWeighted1D.h" 26 #include "yat/classifier/Target.h" 26 27 #include "yat/utility/stl_utility.h" 27 28 #include "yat/utility/vector.h" -
trunk/yat/statistics/ROC.h
r718 r747 26 26 27 27 #include "Score.h" 28 #include "yat/classifier/Target.h"29 28 30 29 #include <utility> … … 33 32 namespace theplu { 34 33 namespace yat { 35 namespace utility { 36 class vector; 37 } 34 namespace classifier { 35 class Target; 36 } 37 namespace utility { 38 class vector; 39 } 38 40 namespace statistics { 39 41 -
trunk/yat/statistics/SNR.cc
r683 r747 27 27 #include "yat/classifier/DataLookupWeighted1D.h" 28 28 #include "yat/classifier/Target.h" 29 #include "yat/utility/vector.h" 29 30 30 31 namespace theplu { -
trunk/yat/statistics/Score.cc
r718 r747 23 23 24 24 #include "Score.h" 25 26 #include "yat/classifier/DataLookup1D.h" 27 #include "yat/classifier/Target.h" 28 #include "yat/classifier/utility.h" 29 #include "yat/utility/vector.h" 30 25 31 26 32 namespace theplu { -
trunk/yat/statistics/Score.h
r718 r747 25 25 */ 26 26 27 #include "yat/classifier/utility.h"28 #include "yat/utility/vector.h"29 30 27 #include <cassert> 31 #ifndef NDEGUG32 #include "yat/classifier/Target.h"33 #include "yat/classifier/DataLookup1D.h"34 #endif35 28 36 29 namespace theplu { … … 41 34 class DataLookupWeighted1D; 42 35 } 43 36 namespace utility { 37 class vector; 38 } 44 39 namespace statistics { 45 40 -
trunk/yat/statistics/tScore.cc
r680 r747 27 27 #include "yat/classifier/DataLookupWeighted1D.h" 28 28 #include "yat/classifier/Target.h" 29 #include "yat/utility/vector.h" 29 30 30 31 #include <cassert>
Note: See TracChangeset
for help on using the changeset viewer.