Skip to content

Commit

Permalink
add BaseSegmentor import to segmentors/__init__.py (#495)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ziyi Wu authored Apr 19, 2021
1 parent 8f37e55 commit 1483720
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mmseg/models/segmentors/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from .base import BaseSegmentor
from .cascade_encoder_decoder import CascadeEncoderDecoder
from .encoder_decoder import EncoderDecoder

__all__ = ['EncoderDecoder', 'CascadeEncoderDecoder']
__all__ = ['BaseSegmentor', 'EncoderDecoder', 'CascadeEncoderDecoder']

0 comments on commit 1483720

Please sign in to comment.