1
0
mirror of https://github.com/TencentARC/GFPGAN.git synced 2025-05-16 23:30:13 -07:00
GFPGAN/train.py
2021-05-18 15:09:11 +08:00

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)