diff --git a/examples/dnn_self_supervised_learning_ex.cpp b/examples/dnn_self_supervised_learning_ex.cpp index 6562fb61d..eb1a906d7 100644 --- a/examples/dnn_self_supervised_learning_ex.cpp +++ b/examples/dnn_self_supervised_learning_ex.cpp @@ -293,10 +293,10 @@ try model::feats fnet(layer<5>(net)); // And we will generate all the features for the training set to train a multiclass SVM // classifier. - std::vector> features; + std::vector> features; cout << "Extracting features for linear classifier..." << endl; features = fnet(training_images, 4 * batch_size); - svm_multiclass_linear_trainer>, unsigned long> trainer; + svm_multiclass_linear_trainer>, unsigned long> trainer; trainer.set_num_threads(std::thread::hardware_concurrency()); // The most appropriate C setting could be found automatically by using find_max_global(). See the docs for // find_max_global() for further information and take particular note of model_selection_ex.cpp.