mirror of
https://github.com/deepfakes/faceswap
synced 2025-06-07 10:43:27 -04:00
17 lines
378 B
Python
17 lines
378 B
Python
#!/usr/bin/env python3
|
|
""" Default configurations for convert """
|
|
|
|
import logging
|
|
import os
|
|
|
|
from lib.config import FaceswapConfig
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class Config(FaceswapConfig):
|
|
""" Config File for Convert """
|
|
|
|
def set_defaults(self):
|
|
""" Set the default values for config """
|
|
self._defaults_from_plugin(os.path.dirname(__file__))
|