From 3ab5842b87df5c2431f7bf750cc4bece1f64bf6a Mon Sep 17 00:00:00 2001 From: Youdiowei Eteimorde <45427673+EteimZ@users.noreply.github.com> Date: Tue, 29 Dec 2020 03:55:43 +0100 Subject: [PATCH] Typo fix Number of Convolutional layers in line 41 is 254 not 524 --- docs/yolo/yolo.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/yolo/yolo.rst b/docs/yolo/yolo.rst index 55def3f..027384e 100644 --- a/docs/yolo/yolo.rst +++ b/docs/yolo/yolo.rst @@ -38,7 +38,7 @@ You can print them to the console with:: ln = net.getLayerNames() print(len(ln), ln) -The 524 elements consist of convolutional layers (``conv``), +The 254 elements consist of convolutional layers (``conv``), rectifier linear units (``relu``) etc.:: 254 ['conv_0', 'bn_0', 'relu_0', 'conv_1', 'bn_1', 'relu_1', 'conv_2', 'bn_2', @@ -148,4 +148,4 @@ Sources Tutorials: * https://www.pyimagesearch.com/2017/08/21/deep-learning-with-opencv/ -* https://www.learnopencv.com/deep-learning-based-object-detection-using-yolov3-with-opencv-python-c/ \ No newline at end of file +* https://www.learnopencv.com/deep-learning-based-object-detection-using-yolov3-with-opencv-python-c/