1
0
Fork 0
mirror of https://github.com/deepfakes/faceswap synced 2025-06-07 19:05:02 -04:00
faceswap/plugins/plugin_loader.py
torzdf 236c35f11a
Convert settings tool (#737)
* Initial prediction pipeline and display

* Patch faces from convert pipeline. Load configs

* Add tkinter canvas for image display

* Radio buttons to config gui. Standardise config gui. Remove dssim loss from realface

* Add action frame

* Live update cli options

* Live update config changes

* Quicker frame loading. Refresh faces button callback

* remove debug code

* Add saving and reloading config buttons

* Reduce lag with threading

* Busy indicator + geometry updates

* Fix options canvas resizing

* Add global config saving and resetting

* tools to own tab

* Rename tool to 'preview'

* geometry tweak

* pep8 fixes
2019-05-30 18:15:25 +01:00

91 lines
3.7 KiB
Python

#!/usr/bin/env python3
""" Plugin loader for extract, training and model tasks """
import logging
import os
from importlib import import_module
logger = logging.getLogger(__name__) # pylint: disable=invalid-name
class PluginLoader():
""" Plugin loader for extract, training and model tasks """
@staticmethod
def get_detector(name, disable_logging=False):
""" Return requested detector plugin """
return PluginLoader._import("extract.detect", name, disable_logging)
@staticmethod
def get_aligner(name, disable_logging=False):
""" Return requested detector plugin """
return PluginLoader._import("extract.align", name, disable_logging)
@staticmethod
def get_model(name, disable_logging=False):
""" Return requested model plugin """
return PluginLoader._import("train.model", name, disable_logging)
@staticmethod
def get_trainer(name, disable_logging=False):
""" Return requested trainer plugin """
return PluginLoader._import("train.trainer", name, disable_logging)
@staticmethod
def get_converter(category, name, disable_logging=False):
""" Return the converter sub plugin """
return PluginLoader._import("convert.{}".format(category), name, disable_logging)
@staticmethod
def _import(attr, name, disable_logging):
""" Import the plugin's module """
name = name.replace("-", "_")
ttl = attr.split(".")[-1].title()
if not disable_logging:
logger.info("Loading %s from %s plugin...", ttl, name.title())
attr = "model" if attr == "Trainer" else attr.lower()
mod = ".".join(("plugins", attr, name))
module = import_module(mod)
return getattr(module, ttl)
@staticmethod
def get_available_extractors(extractor_type):
""" Return a list of available models """
extractpath = os.path.join(os.path.dirname(__file__),
"extract",
extractor_type)
extractors = sorted(item.name.replace(".py", "").replace("_", "-")
for item in os.scandir(extractpath)
if not item.name.startswith("_")
and item.name.endswith(".py")
and item.name != "manual.py")
return extractors
@staticmethod
def get_available_models():
""" Return a list of available models """
modelpath = os.path.join(os.path.dirname(__file__), "train", "model")
models = sorted(item.name.replace(".py", "").replace("_", "-")
for item in os.scandir(modelpath)
if not item.name.startswith("_")
and item.name.endswith(".py"))
return models
@staticmethod
def get_default_model():
""" Return the default model """
models = PluginLoader.get_available_models()
return 'original' if 'original' in models else models[0]
@staticmethod
def get_available_convert_plugins(convert_category, add_none=True):
""" Return a list of available models """
convertpath = os.path.join(os.path.dirname(__file__),
"convert",
convert_category)
converters = sorted(item.name.replace(".py", "").replace("_", "-")
for item in os.scandir(convertpath)
if not item.name.startswith("_")
and item.name.endswith(".py"))
if add_none:
converters.insert(0, "none")
return converters