You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
631 B
Python
16 lines
631 B
Python
import os
|
|
from modules import scripts
|
|
|
|
MODELS_DIR = os.path.abspath(os.path.join("models", "faceswaplab"))
|
|
ANALYZER_DIR = os.path.abspath(os.path.join(MODELS_DIR, "analysers"))
|
|
FACE_PARSER_DIR = os.path.abspath(os.path.join(MODELS_DIR, "parser"))
|
|
REFERENCE_PATH = os.path.join(
|
|
scripts.basedir(), "extensions", "sd-webui-faceswaplab", "references"
|
|
)
|
|
|
|
VERSION_FLAG: str = "v1.1.2"
|
|
EXTENSION_PATH = os.path.join("extensions", "sd-webui-faceswaplab")
|
|
|
|
# The NSFW score threshold. If any part of the image has a score greater than this threshold, the image will be considered NSFW.
|
|
NSFW_SCORE_THRESHOLD: float = 0.7
|