From e7f99479697fbda294ebae32b3605335ea6980b2 Mon Sep 17 00:00:00 2001 From: Fzilan Date: Mon, 4 Sep 2023 21:11:14 +0800 Subject: [PATCH] fix readme --- examples/seg/deeplabv3/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/seg/deeplabv3/README.md b/examples/seg/deeplabv3/README.md index 2944f32eb..496817c48 100644 --- a/examples/seg/deeplabv3/README.md +++ b/examples/seg/deeplabv3/README.md @@ -10,7 +10,7 @@ DeepLabV3 is a semantic segmentation architecture improved over previous version

- Figure 1. Architecture of DeepLabV3 with output_strip=16 [1] + Figure 1. Architecture of DeepLabV3 with output_stride=16 [1]

This example provides an implementation of DeepLabV3 using backbones from MindCV. More details about feature extraction of MindCV are in [this tutorial](https://github.com/mindspore-lab/mindcv/blob/main/docs/en/how_to_guides/feature_extraction.md). Note that the ResNet in DeeplabV3 contains atrous convolutions with different rates, `dilated_resnet.py` is provided as a modification of ResNet from MindCV, with atrous convolutions in block 3-4.