Skip to content

Commit e171e80

Browse files
authored
The path of the annotation is wrong in the tutorial (open-mmlab#907)
* Update config.md * Update config.md
1 parent 186a1fc commit e171e80

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/tutorials/config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ model = dict(
4848
type='EncoderDecoder', # Name of segmentor
4949
pretrained='open-mmlab://resnet50_v1c', # The ImageNet pretrained backbone to be loaded
5050
backbone=dict(
51-
type='ResNetV1c', # The type of backbone. Please refer to mmseg/backbone/resnet.py for details.
51+
type='ResNetV1c', # The type of backbone. Please refer to mmseg/models/backbones/resnet.py for details.
5252
depth=50, # Depth of backbone. Normally 50, 101 are used.
5353
num_stages=4, # Number of stages of backbone.
5454
out_indices=(0, 1, 2, 3), # The index of output feature maps produced in each stages.

docs_zh-CN/tutorials/config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ model = dict(
4444
type='EncoderDecoder', # 分割器(segmentor)的名字
4545
pretrained='open-mmlab://resnet50_v1c', # 将被加载的 ImageNet 预训练主干网络
4646
backbone=dict(
47-
type='ResNetV1c', # 主干网络的类别。 可用选项请参考 mmseg/backbone/resnet.py
47+
type='ResNetV1c', # 主干网络的类别。 可用选项请参考 mmseg/models/backbones/resnet.py
4848
depth=50, # 主干网络的深度。通常为 50 和 101。
4949
num_stages=4, # 主干网络状态(stages)的数目,这些状态产生的特征图作为后续的 head 的输入。
5050
out_indices=(0, 1, 2, 3), # 每个状态产生的特征图输出的索引。

0 commit comments

Comments
 (0)