Skip to content

Commit

Permalink
[Feature] Support FLAVR Net (open-mmlab#866)
Browse files Browse the repository at this point in the history
* [Feature] Support FLAVR Net

* Update

* Update

* Update

* Update

* Update
  • Loading branch information
Yshuo-Li authored and wangruohui committed Jul 7, 2022
1 parent 172cca8 commit 4597b56
Show file tree
Hide file tree
Showing 4 changed files with 633 additions and 3 deletions.
4 changes: 2 additions & 2 deletions mmedit/models/backbones/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
BasicVSRPlusPlus, DICNet, EDVRNet, GLEANStyleGANv2,
IconVSR, MSRResNet, RealBasicVSRNet, RRDBNet,
TDANNet, TOFlow, TTSRNet)
from .vfi_backbones import CAINNet, TOFlowVFINet
from .vfi_backbones import CAINNet, FLAVRNet, TOFlowVFINet

__all__ = [
'MSRResNet', 'VGG16', 'PlainDecoder', 'SimpleEncoderDecoder',
Expand All @@ -29,5 +29,5 @@
'UnetGenerator', 'ResnetGenerator', 'FBAResnetDilated', 'FBADecoder',
'BasicVSRNet', 'IconVSR', 'TTSRNet', 'GLEANStyleGANv2', 'TDANNet',
'LIIFEDSR', 'LIIFRDN', 'BasicVSRPlusPlus', 'RealBasicVSRNet', 'CAINNet',
'TOFlowVFINet'
'TOFlowVFINet', 'FLAVRNet'
]
3 changes: 2 additions & 1 deletion mmedit/models/backbones/vfi_backbones/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Copyright (c) OpenMMLab. All rights reserved.
from .cain_net import CAINNet
from .flavr_net import FLAVRNet
from .tof_vfi_net import TOFlowVFINet

__all__ = ['CAINNet', 'TOFlowVFINet']
__all__ = ['CAINNet', 'TOFlowVFINet', 'FLAVRNet']
Loading

0 comments on commit 4597b56

Please sign in to comment.