Commit 420eba0e authored by Davis King's avatar Davis King

Added note about logging training parameters.

parent 0f2753b7
......@@ -193,6 +193,12 @@ int main(int argc, char** argv) try
// testing data.
cout << "testing results: " << test_object_detection_function(net, images_test, face_boxes_test) << endl;
// If you are running many experiments, it's also useful to log the settings used
// during the training experiment. This statement will print the settings we used to
// the screen.
cout << trainer << cropper << endl;
// Now lets run the detector on the testing images and look at the outputs.
image_window win;
for (auto&& img : images_test)
......
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