Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
420eba0e
Commit
420eba0e
authored
Aug 06, 2017
by
Davis King
Browse files
Added note about logging training parameters.
parent
0f2753b7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
examples/dnn_mmod_ex.cpp
examples/dnn_mmod_ex.cpp
+6
-0
No files found.
examples/dnn_mmod_ex.cpp
View file @
420eba0e
...
@@ -193,6 +193,12 @@ int main(int argc, char** argv) try
...
@@ -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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment