1
0
Fork 0
mirror of https://github.com/deepfakes/faceswap synced 2025-06-09 04:36:50 -04:00
faceswap/plugins/train/trainer/original.py
2019-06-26 10:48:38 +00:00

10 lines
298 B
Python

#!/usr/bin/env python3
""" Original Trainer """
from ._base import TrainerBase
class Trainer(TrainerBase):
""" Original is currently identical to Base """
def __init__(self, *args, **kwargs): # pylint:disable=useless-super-delegation
super().__init__(*args, **kwargs)