From fd16377fd8e8df422fcc1c3159444c615a2a5588 Mon Sep 17 00:00:00 2001 From: dengkaipeng Date: Sun, 17 Mar 2019 05:51:27 +0000 Subject: [PATCH] remove gitignore in dataset. --- fluid/PaddleCV/yolov3/README.md | 2 +- fluid/PaddleCV/yolov3/dataset/.gitignore | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) delete mode 100644 fluid/PaddleCV/yolov3/dataset/.gitignore diff --git a/fluid/PaddleCV/yolov3/README.md b/fluid/PaddleCV/yolov3/README.md index e172966d..d52adf34 100644 --- a/fluid/PaddleCV/yolov3/README.md +++ b/fluid/PaddleCV/yolov3/README.md @@ -32,7 +32,7 @@ YOLOv3 structure YOLOv3 networks are composed of base feature extraction network, multi-scale feature fusion layers, and output layers. -1. Feature extraction network: YOLOv3 ues [DarkNet53](https://arxiv.org/abs/1612.08242) for feature extracion,Darknet53 uses a full convolution structure, replacing the pooling layer with a convolution operation of step size 2, and adding Residual-block to avoid gradient dispersion when the number of network layers is too deep. +1. Feature extraction network: YOLOv3 uses [DarkNet53](https://arxiv.org/abs/1612.08242) for feature extracion,Darknet53 uses a full convolution structure, replacing the pooling layer with a convolution operation of step size 2, and adding Residual-block to avoid gradient dispersion when the number of network layers is too deep. 2. Feature fusion layer. In order to solve the problem that the previous YOLO version is not sensitive to small objects, YOLOv3 uses three different scale feature maps for target detection, which are 13\*13, 26\*26, 52\*52, respectively, for detecting large, medium and small objects. The feature fusion layer selects the three scale feature maps produced by DarkNet as input, and draws on the idea of FPN (feature pyramid networks) to fuse the feature maps of each scale through a series of convolutional layers and upsampling. diff --git a/fluid/PaddleCV/yolov3/dataset/.gitignore b/fluid/PaddleCV/yolov3/dataset/.gitignore deleted file mode 100644 index bbae1fe5..00000000 --- a/fluid/PaddleCV/yolov3/dataset/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -coco2014/ -!coco2014/*.sh -!coco2014/*.py -!coco2014/coco.* -- GitLab