Commit c7227d8f authored by Davis King's avatar Davis King

Added more comments

parent b0cdcd82
...@@ -128,9 +128,10 @@ int main(int argc, char** argv) ...@@ -128,9 +128,10 @@ int main(int argc, char** argv)
trainer.set_num_threads(4); trainer.set_num_threads(4);
// The trainer is a kind of support vector machine and therefore has the usual SVM // The trainer is a kind of support vector machine and therefore has the usual SVM
// C parameter. In general, a bigger C encourages it to fit the training data // C parameter. In general, a bigger C encourages it to fit the training data
// better but might lead to overfitting. You find the best C value empirically by // better but might lead to overfitting. You must find the best C value
// checking how well the trained detector works on a test set of images you haven't // empirically by checking how well the trained detector works on a test set of
// trained on. // images you haven't trained on. Don't just leave the value set at 1. Try a few
// different C values and see what works best for your data.
trainer.set_c(1); trainer.set_c(1);
// We can tell the trainer to print it's progress to the console if we want. // We can tell the trainer to print it's progress to the console if we want.
trainer.be_verbose(); trainer.be_verbose();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment