47 #ifndef BASICCVFACTORY_HH 48 #define BASICCVFACTORY_HH 66 template<
typename FV,
typename PROBLEM,
typename STDATA>
71 template<
typename SVMTYPE>
101 template<
typename FV,
typename PROBLEM,
typename STDATA,
102 typename MCLIST,
typename TCLIST,
typename KFLIST>
128 const std::string& mcName,
129 const std::string& tcName,
130 const std::string& kfName)
137 >::search( mcName, tcName, kfName);
155 template<
typename STDATA2>
161 stData.getValue(
"multi_class_type", mcName);
162 stData.getValue(
"two_class_type", tcName);
163 stData.getValue(
"kernel_type", kfName);
165 return create( mcName, tcName, kfName);
static BasicCVAdapter< FV, PROBLEM, STDATA > * createFromStData(STDATA2 &stData)
(description)
The MC_SVM_Finder class finds the appropriate combination of Multiclass, Twoclass and Kernel specifie...
BasicCVAdapter< FV, PROBLEM, STDATA > * cv
The BasicCVFactory class is a factory, that creates the appropriate template class from given strings...
static BasicCVAdapter< FV, PROBLEM, STDATA > * create(const std::string &mcName, const std::string &tcName, const std::string &kfName)
create an BasicCVAdapterTempl with the requested types.