Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
TencentARC
GitHub Repository: TencentARC/GFPGAN
Path: blob/master/gfpgan/models/__init__.py
884 views
1
import importlib
2
from basicsr.utils import scandir
3
from os import path as osp
4
5
# automatically scan and import model modules for registry
6
# scan all the files that end with '_model.py' under the model folder
7
model_folder = osp.dirname(osp.abspath(__file__))
8
model_filenames = [osp.splitext(osp.basename(v))[0] for v in scandir(model_folder) if v.endswith('_model.py')]
9
# import all the model modules
10
_model_modules = [importlib.import_module(f'gfpgan.models.{file_name}') for file_name in model_filenames]
11
12