mirror of https://github.com/davisking/dlib.git
Added note about logging training parameters.
This commit is contained in:
parent
0f2753b754
commit
420eba0e6a
|
@ -193,6 +193,12 @@ int main(int argc, char** argv) try
|
||||||
// testing data.
|
// testing data.
|
||||||
cout << "testing results: " << test_object_detection_function(net, images_test, face_boxes_test) << endl;
|
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.
|
// Now lets run the detector on the testing images and look at the outputs.
|
||||||
image_window win;
|
image_window win;
|
||||||
for (auto&& img : images_test)
|
for (auto&& img : images_test)
|
||||||
|
|
Loading…
Reference in New Issue