From 32dd3f2fe3dd94c98ccaac444b72a36460d41023 Mon Sep 17 00:00:00 2001 From: Davis King Date: Sun, 17 Jan 2016 16:20:50 -0500 Subject: [PATCH] Fixed typo in comment --- dlib/dnn/tensor_tools.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlib/dnn/tensor_tools.h b/dlib/dnn/tensor_tools.h index aac1f1db5..d36e86bbd 100644 --- a/dlib/dnn/tensor_tools.h +++ b/dlib/dnn/tensor_tools.h @@ -313,7 +313,7 @@ namespace dlib { namespace tt - have_same_dimensions(gamma, running_means) - have_same_dimensions(gamma, running_invstds) ensures - - Just linearly transforms src as a call to batch_normalize() would if the resulting + - Just linearly transforms src as a call to batch_normalize_conv() would if the resulting means and invstds were running_means and running_invstds. That is, this function performs: dest = gamma*(src-running_means)*running_invstds + beta