From 1c664eeac581d4d915a100583fca46489efd5a17 Mon Sep 17 00:00:00 2001 From: Davis King Date: Tue, 24 Oct 2017 21:13:02 -0400 Subject: [PATCH] Made the metric learning example do image jittering. --- examples/dnn_face_recognition_ex.cpp | 5 ++--- examples/dnn_metric_learning_on_images_ex.cpp | 5 +++++ 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/examples/dnn_face_recognition_ex.cpp b/examples/dnn_face_recognition_ex.cpp index 4ade3862f..051ac13cf 100644 --- a/examples/dnn_face_recognition_ex.cpp +++ b/examples/dnn_face_recognition_ex.cpp @@ -40,9 +40,8 @@ using namespace std; // The dlib_face_recognition_resnet_model_v1 model used by this example was trained using // essentially the code shown in dnn_metric_learning_on_images_ex.cpp except the // mini-batches were made larger (35x15 instead of 5x5), the iterations without progress -// was set to 10000, dlib::jitter_image() was used during training, and the training -// dataset consisted of about 3 million images instead of 55. Also, the input layer was -// locked to images of size 150. +// was set to 10000, and the training dataset consisted of about 3 million images instead of +// 55. Also, the input layer was locked to images of size 150. template