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