From a35f30ef5f95a1300749fc3aa5d27c850f8705e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=8E=E6=98=8E=E6=B1=9F?= Date: Sun, 23 Apr 2023 14:43:59 +0800 Subject: [PATCH] Improve: modify DeepLab name to be DeepLabV3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit link #I6Y1UT Signed-off-by: 黎明江 --- README.md | 4 ++-- cv/semantic_segmentation/deeplabv3/paddlepaddle/README.md | 4 ++-- cv/semantic_segmentation/deeplabv3/pytorch/README.md | 4 ++-- cv/semantic_segmentation/deeplabv3plus/paddlepaddle/README.md | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 471ea88c5..d02c6f72a 100644 --- a/README.md +++ b/README.md @@ -178,8 +178,8 @@ DeepSparkHub甄选上百个应用算法和模型,覆盖AI和通用计算各领 [ContextNet](cv/semantic_segmentation/contextnet/pytorch/README.md) | PyTorch | COCO [DabNet](cv/semantic_segmentation/dabnet/pytorch/README.md) | PyTorch | COCO [DANet](cv/semantic_segmentation/danet/pytorch/README.md) | PyTorch | COCO -[DeepLab](cv/semantic_segmentation/deeplabv3/pytorch/README.md) | PyTorch | COCO -[DeepLab](cv/semantic_segmentation/deeplabv3/paddlepaddle/README.md) | PaddlePaddle | COCO +[DeepLabV3](cv/semantic_segmentation/deeplabv3/pytorch/README.md) | PyTorch | COCO +[DeepLabV3](cv/semantic_segmentation/deeplabv3/paddlepaddle/README.md) | PaddlePaddle | COCO [DeepLabV3](cv/semantic_segmentation/deeplabv3/MindSpore/README.md) | MindSpore | VOC [DeepLabV3+](cv/semantic_segmentation/deeplabv3plus/paddlepaddle/README.md) | PaddlePaddle | COCO [DenseASPP](cv/semantic_segmentation/denseaspp/pytorch/README.md) | PyTorch | COCO diff --git a/cv/semantic_segmentation/deeplabv3/paddlepaddle/README.md b/cv/semantic_segmentation/deeplabv3/paddlepaddle/README.md index c8043bbd8..a049d3718 100644 --- a/cv/semantic_segmentation/deeplabv3/paddlepaddle/README.md +++ b/cv/semantic_segmentation/deeplabv3/paddlepaddle/README.md @@ -1,8 +1,8 @@ -# DeepLab +# DeepLabV3 ## Model description -DeepLabv3 is a semantic segmentation architecture that improves upon DeepLabv2 with several modifications. +DeepLabV3 is a semantic segmentation architecture that improves upon DeepLabV2 with several modifications. To handle the problem of segmenting objects at multiple scales, modules are designed which employ atrous convolution in cascade or in parallel to capture multi-scale context by adopting multiple atrous rates. ## Step 1: Installing diff --git a/cv/semantic_segmentation/deeplabv3/pytorch/README.md b/cv/semantic_segmentation/deeplabv3/pytorch/README.md index c0427db4b..37b073c02 100644 --- a/cv/semantic_segmentation/deeplabv3/pytorch/README.md +++ b/cv/semantic_segmentation/deeplabv3/pytorch/README.md @@ -1,8 +1,8 @@ -# DeepLab +# DeepLabV3 ## Model description -DeepLabv3 is a semantic segmentation architecture that improves upon DeepLabv2 with several modifications. +DeepLabV3 is a semantic segmentation architecture that improves upon DeepLabV2 with several modifications. To handle the problem of segmenting objects at multiple scales, modules are designed which employ atrous convolution in cascade or in parallel to capture multi-scale context by adopting multiple atrous rates. ## Step 1: Installing diff --git a/cv/semantic_segmentation/deeplabv3plus/paddlepaddle/README.md b/cv/semantic_segmentation/deeplabv3plus/paddlepaddle/README.md index a00aa6c52..3f3207f5e 100644 --- a/cv/semantic_segmentation/deeplabv3plus/paddlepaddle/README.md +++ b/cv/semantic_segmentation/deeplabv3plus/paddlepaddle/README.md @@ -2,7 +2,7 @@ ## Model description -DeepLabv3 is a semantic segmentation architecture that improves upon DeepLabv2 with several modifications. +DeepLabV3 is a semantic segmentation architecture that improves upon DeepLabV2 with several modifications. To handle the problem of segmenting objects at multiple scales, modules are designed which employ atrous convolution in cascade or in parallel to capture multi-scale context by adopting multiple atrous rates. ## Step 1: Installing @@ -62,4 +62,4 @@ python3 -u -m paddle.distributed.launch --gpus 0,1,2,3 train.py \ | GPU | FP32 | | ----------- | ------------------------------------ | -| 8 cards | mIoU =80.42% | \ No newline at end of file +| 8 cards | mIoU =80.42% | -- Gitee