mirror of
https://github.com/zebrajr/faceswap.git
synced 2025-12-06 00:20:09 +01:00
18 lines
378 B
Python
18 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__))
|