-
Notifications
You must be signed in to change notification settings - Fork 232
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
base: lk:add docstring for IndexDict
- Loading branch information
liukai
committed
Aug 29, 2022
1 parent
0eefd45
commit 37d9fb4
Showing
12 changed files
with
123 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,18 @@ | ||
# Copyright (c) OpenMMLab. All rights reserved. | ||
from .base_mutable_channel import BaseMutableChannel | ||
from .groups import (MUTABLECHANNELGROUP, MutableChannelGroup, | ||
SimpleChannelGroup) | ||
SequentialChannelGroup) | ||
from .mutable_channel import MutableChannel | ||
from .mutable_channel_container import MutableChannelContainer | ||
from .one_shot_mutable_channel import OneShotMutableChannel | ||
from .sequential_mutable_channel import SquentialMutableChannel | ||
from .simple_mutable_channel import SimpleMutableChannel | ||
from .slimmable_mutable_channel import SlimmableMutableChannel | ||
from .stack_mutable_channel import StackMutableChannel | ||
|
||
__all__ = [ | ||
'SimpleMutableChannel', 'SimpleChannelGroup', 'MutableChannelGroup', | ||
'OneShotChannelGroup', 'BaseMutableChannel', 'MutableChannelContainer', | ||
'StackMutableChannel', 'MUTABLECHANNELGROUP', 'MutableChannel', | ||
'OneShotMutableChannel', 'SlimmableMutableChannel' | ||
'SimpleMutableChannel', 'MutableChannelGroup', 'OneShotChannelGroup', | ||
'BaseMutableChannel', 'MutableChannelContainer', 'StackMutableChannel', | ||
'MUTABLECHANNELGROUP', 'MutableChannel', 'OneShotMutableChannel', | ||
'SlimmableMutableChannel', 'SquentialMutableChannel', | ||
'SequentialChannelGroup' | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
# Copyright (c) OpenMMLab. All rights reserved. | ||
from .mutable_channel_group import MUTABLECHANNELGROUP, MutableChannelGroup | ||
from .simple_channel_group import SimpleChannelGroup | ||
from .sequential_channel_group import SequentialChannelGroup | ||
|
||
__all__ = ['MutableChannelGroup', 'SimpleChannelGroup', 'MUTABLECHANNELGROUP'] | ||
__all__ = [ | ||
'MutableChannelGroup', 'SequentialChannelGroup', 'MUTABLECHANNELGROUP' | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.