IOPaint/iopaint/const.py

176 lines
5.0 KiB
Python
Raw Normal View History

2023-04-03 17:04:59 +02:00
import json
2023-01-20 09:52:38 +01:00
import os
2023-03-28 15:55:25 +02:00
from enum import Enum
2023-04-03 17:04:59 +02:00
from pydantic import BaseModel
2023-01-20 09:52:38 +01:00
2023-12-27 15:00:07 +01:00
DIFFUSERS_SD_CLASS_NAME = "StableDiffusionPipeline"
DIFFUSERS_SD_INPAINT_CLASS_NAME = "StableDiffusionInpaintPipeline"
DIFFUSERS_SDXL_CLASS_NAME = "StableDiffusionXLPipeline"
DIFFUSERS_SDXL_INPAINT_CLASS_NAME = "StableDiffusionXLInpaintPipeline"
2023-12-01 03:15:35 +01:00
MPS_UNSUPPORT_MODELS = [
"lama",
"ldm",
"zits",
"mat",
"fcf",
"cv2",
"manga",
2023-02-06 15:00:47 +01:00
]
2023-01-20 09:52:38 +01:00
DEFAULT_MODEL = "lama"
2023-12-27 15:00:07 +01:00
AVAILABLE_MODELS = ["lama", "ldm", "zits", "mat", "fcf", "manga", "cv2", "migan"]
2023-11-16 05:45:05 +01:00
2023-01-20 09:52:38 +01:00
AVAILABLE_DEVICES = ["cuda", "cpu", "mps"]
2023-03-19 15:40:23 +01:00
DEFAULT_DEVICE = "cuda"
2023-01-20 09:52:38 +01:00
NO_HALF_HELP = """
2023-12-24 08:32:27 +01:00
Using full precision(fp32) model.
If your diffusion model generate result is always black or green, use this argument.
2023-01-20 09:52:38 +01:00
"""
CPU_OFFLOAD_HELP = """
2023-12-24 08:32:27 +01:00
Offloads diffusion model's weight to CPU RAM, significantly reducing vRAM usage.
2023-01-20 09:52:38 +01:00
"""
DISABLE_NSFW_HELP = """
2023-12-24 08:32:27 +01:00
Disable NSFW checker for diffusion model.
2023-01-20 09:52:38 +01:00
"""
2023-12-24 08:32:27 +01:00
CPU_TEXTENCODER_HELP = """
Run diffusion models text encoder on CPU to reduce vRAM usage.
2023-01-20 09:52:38 +01:00
"""
2023-05-11 15:51:58 +02:00
SD_CONTROLNET_CHOICES = [
2023-12-01 03:15:35 +01:00
"lllyasviel/control_v11p_sd15_canny",
# "lllyasviel/control_v11p_sd15_seg",
"lllyasviel/control_v11p_sd15_openpose",
"lllyasviel/control_v11p_sd15_inpaint",
"lllyasviel/control_v11f1p_sd15_depth",
]
SD2_CONTROLNET_CHOICES = [
"thibaud/controlnet-sd21-canny-diffusers",
"thibaud/controlnet-sd21-depth-diffusers",
"thibaud/controlnet-sd21-openpose-diffusers",
]
SDXL_CONTROLNET_CHOICES = [
"thibaud/controlnet-openpose-sdxl-1.0",
2023-12-24 08:32:27 +01:00
"destitech/controlnet-inpaint-dreamer-sdxl",
2023-12-01 03:15:35 +01:00
"diffusers/controlnet-canny-sdxl-1.0",
2023-12-19 06:16:30 +01:00
"diffusers/controlnet-canny-sdxl-1.0-mid",
2023-12-24 08:32:27 +01:00
"diffusers/controlnet-canny-sdxl-1.0-small",
2023-12-01 03:15:35 +01:00
"diffusers/controlnet-depth-sdxl-1.0",
2023-12-19 06:16:30 +01:00
"diffusers/controlnet-depth-sdxl-1.0-mid",
"diffusers/controlnet-depth-sdxl-1.0-small",
2023-05-11 15:51:58 +02:00
]
2023-03-19 15:40:23 +01:00
2023-01-20 09:52:38 +01:00
LOCAL_FILES_ONLY_HELP = """
2023-12-24 08:32:27 +01:00
When loading diffusion models, using local files only, not connect to HuggingFace server.
2023-01-20 09:52:38 +01:00
"""
DEFAULT_MODEL_DIR = os.getenv(
2023-03-19 15:40:23 +01:00
"XDG_CACHE_HOME", os.path.join(os.path.expanduser("~"), ".cache")
2023-01-20 09:52:38 +01:00
)
2023-12-24 08:32:27 +01:00
MODEL_DIR_HELP = f"""
Model download directory (by setting XDG_CACHE_HOME environment variable), by default model download to {DEFAULT_MODEL_DIR}
2023-01-20 09:52:38 +01:00
"""
OUTPUT_DIR_HELP = """
2023-12-24 08:32:27 +01:00
Result images will be saved to output directory automatically.
2023-01-20 09:52:38 +01:00
"""
INPUT_HELP = """
If input is image, it will be loaded by default.
If input is directory, you can browse and select image in file manager.
"""
GUI_HELP = """
Launch Lama Cleaner as desktop app
"""
QUALITY_HELP = """
Quality of image encoding, 0-100. Default is 95, higher quality will generate larger file size.
"""
2023-03-28 15:55:25 +02:00
2023-12-24 08:32:27 +01:00
class Choices(str, Enum):
@classmethod
def values(cls):
return [member.value for member in cls]
class RealESRGANModel(Choices):
2023-03-28 15:55:25 +02:00
realesr_general_x4v3 = "realesr-general-x4v3"
RealESRGAN_x4plus = "RealESRGAN_x4plus"
RealESRGAN_x4plus_anime_6B = "RealESRGAN_x4plus_anime_6B"
2023-12-24 08:32:27 +01:00
class Device(Choices):
cpu = "cpu"
cuda = "cuda"
mps = "mps"
class InteractiveSegModel(Choices):
vit_b = "vit_b"
vit_l = "vit_l"
vit_h = "vit_h"
mobile_sam = "mobile_sam"
2023-03-28 15:55:25 +02:00
2023-04-06 15:55:20 +02:00
INTERACTIVE_SEG_HELP = "Enable interactive segmentation using Segment Anything."
2023-04-16 04:35:51 +02:00
INTERACTIVE_SEG_MODEL_HELP = "Model size: vit_b < vit_l < vit_h. Bigger model size means better segmentation but slower speed."
2023-03-28 15:55:25 +02:00
REMOVE_BG_HELP = "Enable remove background. Always run on CPU"
2023-05-09 13:07:12 +02:00
ANIMESEG_HELP = "Enable anime segmentation. Always run on CPU"
2023-03-28 15:55:25 +02:00
REALESRGAN_HELP = "Enable realesrgan super resolution"
GFPGAN_HELP = (
"Enable GFPGAN face restore. To enhance background, use with --enable-realesrgan"
)
2023-03-30 10:07:38 +02:00
RESTOREFORMER_HELP = "Enable RestoreFormer face restore. To enhance background, use with --enable-realesrgan"
2023-03-28 15:55:25 +02:00
GIF_HELP = "Enable GIF plugin. Make GIF to compare original and cleaned image"
2023-04-03 17:04:59 +02:00
class Config(BaseModel):
host: str = "127.0.0.1"
port: int = 8080
model: str = DEFAULT_MODEL
sd_local_model_path: str = None
device: str = DEFAULT_DEVICE
gui: bool = False
no_gui_auto_close: bool = False
no_half: bool = False
cpu_offload: bool = False
disable_nsfw: bool = False
sd_cpu_textencoder: bool = False
local_files_only: bool = False
model_dir: str = DEFAULT_MODEL_DIR
input: str = None
output_dir: str = None
# plugins
enable_interactive_seg: bool = False
2023-04-06 16:56:19 +02:00
interactive_seg_model: str = "vit_l"
interactive_seg_device: str = "cpu"
2023-04-03 17:04:59 +02:00
enable_remove_bg: bool = False
2023-05-09 13:07:12 +02:00
enable_anime_seg: bool = False
2023-04-03 17:04:59 +02:00
enable_realesrgan: bool = False
realesrgan_device: str = "cpu"
2023-12-24 08:32:27 +01:00
realesrgan_model: str = RealESRGANModel.realesr_general_x4v3.value
2023-04-06 16:56:19 +02:00
realesrgan_no_half: bool = False
2023-04-03 17:04:59 +02:00
enable_gfpgan: bool = False
gfpgan_device: str = "cpu"
enable_restoreformer: bool = False
restoreformer_device: str = "cpu"
enable_gif: bool = False
def load_config(installer_config: str):
if os.path.exists(installer_config):
with open(installer_config, "r", encoding="utf-8") as f:
return Config(**json.load(f))
else:
return Config()