Skip to content

Commit

Permalink
fix examples MultiClass -> Multiclass
Browse files Browse the repository at this point in the history
  • Loading branch information
Soeren Sonnenburg committed Apr 20, 2012
1 parent 53cc701 commit ac7a60e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -36,7 +36,7 @@ int main(int argc, char** argv)
kernel->init(features, features);

// create libsvm with C=10 and train
CLibSVMMultiClass* svm = new CLibSVMMultiClass(10, kernel, labels);
CLibSVMMulticlass* svm = new CLibSVMMulticlass(10, kernel, labels);
svm->train();

// classify on training examples
Expand Down
Expand Up @@ -229,7 +229,7 @@ void tester()
//here comes the core stuff
float64_t regconst=1.0;

CMKLMultiClass* tsvm =new CMKLMultiClass(regconst, ker, lab);
CMKLMulticlass* tsvm =new CMKLMulticlass(regconst, ker, lab);

tsvm->set_epsilon(0.0001); // SVM epsilon
// MKL parameters
Expand Down

0 comments on commit ac7a60e

Please sign in to comment.