[Fix] Fix setr decode head typos. (#787)

pull/1801/head
sennnnn 2021-08-13 14:55:29 +08:00 committed by GitHub
parent b4fd32d049
commit 94a1946351
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ from .decode_head import BaseDecodeHead
class SETRMLAHead(BaseDecodeHead):
"""Multi level feature aggretation head of SETR.
MLA head of `SETR <https://arxiv.org/pdf/2012.15840.pdf>`.
MLA head of `SETR <https://arxiv.org/pdf/2012.15840.pdf>`_.
Args:
mlahead_channels (int): Channels of conv-conv-4x of multi-level feature

View File

@ -10,7 +10,7 @@ from .decode_head import BaseDecodeHead
class SETRUPHead(BaseDecodeHead):
"""Naive upsampling head and Progressive upsampling head of SETR.
Naive or PUP head of `SETR <https://arxiv.org/pdf/2012.15840.pdf>`.
Naive or PUP head of `SETR <https://arxiv.org/pdf/2012.15840.pdf>`_.
Args:
norm_layer (dict): Config dict for input normalization.