"vscode:/vscode.git/clone" did not exist on "2c5b48ab60ed8ba01c04b9b2ba82df6527e8051b"
Unverified Commit 64ba66e1 authored by Adrià Arrufat's avatar Adrià Arrufat Committed by GitHub
Browse files

fix receptive field comment (#2070)

parent 8055b8d1
...@@ -33,7 +33,7 @@ using namespace dlib; ...@@ -33,7 +33,7 @@ using namespace dlib;
// convolutionally over an entire image pyramid. Think of it like a normal // convolutionally over an entire image pyramid. Think of it like a normal
// sliding window classifier. This means you need to define a CNN that can look // sliding window classifier. This means you need to define a CNN that can look
// at some part of an image and decide if it is an object of interest. In this // at some part of an image and decide if it is an object of interest. In this
// example I've defined a CNN with a receptive field of a little over 50x50 // example I've defined a CNN with a receptive field of approximately 50x50
// pixels. This is reasonable for face detection since you can clearly tell if // pixels. This is reasonable for face detection since you can clearly tell if
// a 50x50 image contains a face. Other applications may benefit from CNNs with // a 50x50 image contains a face. Other applications may benefit from CNNs with
// different architectures. // different architectures.
......
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