forked from open-mmlab/mmagic
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add BasicVSR * fix isort * fix isort * rename to basicvsr_net.py * change step_counter to a key in train_cfg * rename and fix minor bug * rename to BasicVSRNet * Fix init and model
- Loading branch information
1 parent
91f84dd
commit eb798ae
Showing
7 changed files
with
794 additions
and
4 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,8 +1,11 @@ | ||
from .basicvsr_net import BasicVSRNet | ||
from .edsr import EDSR | ||
from .edvr_net import EDVRNet | ||
from .rrdb_net import RRDBNet | ||
from .sr_resnet import MSRResNet | ||
from .srcnn import SRCNN | ||
from .tof import TOFlow | ||
|
||
__all__ = ['MSRResNet', 'RRDBNet', 'EDSR', 'EDVRNet', 'TOFlow', 'SRCNN'] | ||
__all__ = [ | ||
'MSRResNet', 'RRDBNet', 'EDSR', 'EDVRNet', 'TOFlow', 'SRCNN', 'BasicVSRNet' | ||
] |
Oops, something went wrong.