From 56a76739dd0111b9a4182409a58157e8b826b785 Mon Sep 17 00:00:00 2001 From: majorli Date: Tue, 13 Jun 2023 15:45:50 +0800 Subject: [PATCH] update deeplabv3 name and conformer dataset name Signed-off-by: majorli --- README.md | 6 +++--- cv/semantic_segmentation/deeplabv3/paddlepaddle/README.md | 6 +++--- cv/semantic_segmentation/deeplabv3/pytorch/README.md | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index f0aa39f93..a210b7946 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 | Cityscapes +[DeepLabV3](cv/semantic_segmentation/deeplabv3/pytorch/README.md) | PyTorch | COCO +[DeepLabV3](cv/semantic_segmentation/deeplabv3/paddlepaddle/README.md) | PaddlePaddle | Cityscapes [DeepLabV3](cv/semantic_segmentation/deeplabv3/MindSpore/README.md) | MindSpore | VOC [DeepLabV3+](cv/semantic_segmentation/deeplabv3plus/paddlepaddle/README.md) | PaddlePaddle | Cityscapes [DenseASPP](cv/semantic_segmentation/denseaspp/pytorch/README.md) | PyTorch | COCO @@ -316,7 +316,7 @@ DeepSparkHub甄选上百个应用算法和模型,覆盖AI和通用计算各领 模型名称 | 框架 | 数据集 -------- | ------ | ---- -[Conformer](speech/speech_recognition/conformer/pytorch/README.md) | PyTorch | LJSpeech-1.1 +[Conformer](speech/speech_recognition/conformer/pytorch/README.md) | PyTorch | AISHELL [RNN-T](speech/speech_recognition/rnnt/pytorch/README.md) | PyTorch | LJSpeech diff --git a/cv/semantic_segmentation/deeplabv3/paddlepaddle/README.md b/cv/semantic_segmentation/deeplabv3/paddlepaddle/README.md index c8043bbd8..b4550c358 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 @@ -40,7 +40,7 @@ drwxr-xr-x 5 root root 58 Jul 18 03:30 leftImg8bit -rw-r--r-- 1 root root 65900 Jul 18 03:32 val.txt ``` -## Step 3: Run DeepLab +## Step 3: Run DeepLabV3 ```bash # Make sure your dataset path is the same as above diff --git a/cv/semantic_segmentation/deeplabv3/pytorch/README.md b/cv/semantic_segmentation/deeplabv3/pytorch/README.md index ebc4d2d63..9d6fbdd36 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 -- Gitee