mirror of
https://github.com/TencentARC/GFPGAN.git
synced 2025-05-16 23:30:13 -07:00
13 lines
521 B
Python
13 lines
521 B
Python
import importlib
|
|
from os import path as osp
|
|
|
|
from basicsr.utils import scandir
|
|
|
|
# automatically scan and import model modules for registry
|
|
# scan all the files under the 'models' folder and collect files ending with
|
|
# '_model.py'
|
|
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]
|