Shortcuts

Source code for mmrazor.models.architectures.mmseg

# Copyright (c) OpenMMLab. All rights reserved.
from ..builder import ARCHITECTURES
from .base import BaseArchitecture


[docs]@ARCHITECTURES.register_module() class MMSegArchitecture(BaseArchitecture): """Architecture based on MMSeg.""" def __init__(self, **kwargs): super(MMSegArchitecture, self).__init__(**kwargs)
Read the Docs v: v0.2.0
Versions
latest
stable
v0.2.0
Downloads
pdf
html
epub
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.