mirror of
https://github.com/TencentARC/GFPGAN.git
synced 2025-05-16 15:20:23 -07:00
11 lines
263 B
Python
11 lines
263 B
Python
import os.path as osp
|
|
|
|
import archs # noqa: F401
|
|
import data # noqa: F401
|
|
import models # noqa: F401
|
|
from basicsr.train import train_pipeline
|
|
|
|
if __name__ == '__main__':
|
|
root_path = osp.abspath(osp.join(__file__, osp.pardir))
|
|
train_pipeline(root_path)
|