update file organization, fix bug: scale argument in RRDB

This commit is contained in:
Xintao
2021-07-23 17:52:05 +08:00
parent cc153d278a
commit 7fcc11f255
5 changed files with 31 additions and 4 deletions

10
models/__init__.py Normal file
View File

@@ -0,0 +1,10 @@
import importlib
from basicsr.utils import scandir
from os import path as osp
# automatically scan and import model modules for registry
# scan all the files that end with '_model.py' under the model folder
model_folder = osp.dirname(osp.abspath(__file__))
model_filenames = [osp.splitext(osp.basename(v))[0] for v in scandir(model_folder) if v.endswith('_model.py')]
# import all the model modules
_model_modules = [importlib.import_module(f'models.{file_name}') for file_name in model_filenames]