Changeset 453 for trunk/test/consensus_inputranker_test.cc
- Timestamp:
- Dec 15, 2005, 10:49:23 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/consensus_inputranker_test.cc
r301 r453 3 3 // C++ tools include 4 4 //////////////////// 5 #include <c++_tools/ svm/ConsensusInputRanker.h>5 #include <c++_tools/classifier/ConsensusInputRanker.h> 6 6 #include <c++_tools/statistics/ROC.h> 7 7 #include <c++_tools/gslapi/matrix.h> … … 25 25 26 26 theplu::statistics::ROC roc; 27 theplu:: svm::ConsensusInputRanker cir(data,target,roc,10,3);27 theplu::classifier::ConsensusInputRanker cir(data,target,roc,10,3); 28 28 29 29 if (cir.id(0)!=2 || cir.id(1)!=0 || cir.id(2)!=1){ … … 38 38 39 39 theplu::gslapi::matrix flag(data.rows(),data.columns(),1); 40 theplu:: svm::ConsensusInputRanker cir2(data,target,flag,roc,10,3);40 theplu::classifier::ConsensusInputRanker cir2(data,target,flag,roc,10,3); 41 41 42 42 if (cir2.id(0)!=2 || cir2.id(1)!=0 || cir2.id(2)!=1){
Note: See TracChangeset
for help on using the changeset viewer.