/
githubmirror
/
faceswap
Обзор
Документация
Войти
/
githubmirror
/
faceswap
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
plugins/train/model/original_defaults.py
41 строка
1 KB
torzdf
Faceswap 3 (#1516)
21 дек 2025, 05:45
Не верифицирован
21 дек 2025, 05:45
837bc2d
Код
Авторство
О чём код?
#!/usr/bin/env python3 """ The default options for the faceswap Original Model plugin. Defaults files should be named `<plugin_name>_defaults.py` Any qualifying items placed into this file will automatically get added to the relevant config .ini files within the faceswap/config folder and added to the relevant GUI settings page. The following variable should be defined: Parameters ---------- HELPTEXT: str A string describing what this plugin does Further plugin configuration options are assigned using: >>> <config_item> = ConfigItem(...) where <config_item> is the name of the configuration option to be added (lower-case, alpha-numeric + underscore only) and ConfigItem(...) is the [`~lib.config.objects.ConfigItem`] data for the option. See the docstring/ReadtheDocs documentation required parameters for the ConfigItem object. Items will be grouped together as per their `group` parameter, but otherwise will be processed in the order that they are added to this module. from lib.config import ConfigItem """ # pylint:disable=duplicate-code from lib.config import ConfigItem HELPTEXT = "Original Faceswap Model." lowmem = ConfigItem( datatype=bool, default=False, group="settings", info="Lower memory mode. Set to 'True' if having issues with VRAM useage.\n" "NB: Models with a changed lowmem mode are not compatible with each other.", fixed=True)