Ignore:
Timestamp:
Dec 15, 2005, 10:49:23 PM (17 years ago)
Author:
Peter
Message:

changed namespace svm to classifier in test

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/consensus_inputranker_test.cc

    r301 r453  
    33// C++ tools include
    44////////////////////
    5 #include <c++_tools/svm/ConsensusInputRanker.h>
     5#include <c++_tools/classifier/ConsensusInputRanker.h>
    66#include <c++_tools/statistics/ROC.h>
    77#include <c++_tools/gslapi/matrix.h>
     
    2525
    2626  theplu::statistics::ROC roc;
    27   theplu::svm::ConsensusInputRanker cir(data,target,roc,10,3);
     27  theplu::classifier::ConsensusInputRanker cir(data,target,roc,10,3);
    2828
    2929  if (cir.id(0)!=2 || cir.id(1)!=0 || cir.id(2)!=1){
     
    3838
    3939  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);
    4141
    4242  if (cir2.id(0)!=2 || cir2.id(1)!=0 || cir2.id(2)!=1){
Note: See TracChangeset for help on using the changeset viewer.