IOPaint/lama_cleaner/schema.py

41 lines
850 B
Python
Raw Normal View History

2022-04-15 18:11:51 +02:00
from enum import Enum
from pydantic import BaseModel
class HDStrategy(str, Enum):
ORIGINAL = 'Original'
RESIZE = 'Resize'
CROP = 'Crop'
2022-06-12 07:14:17 +02:00
class LDMSampler(str, Enum):
ddim = 'ddim'
plms = 'plms'
2022-04-15 18:11:51 +02:00
class Config(BaseModel):
ldm_steps: int
2022-07-14 10:49:03 +02:00
ldm_sampler: str = LDMSampler.plms
zits_wireframe: bool = True
2022-04-15 18:11:51 +02:00
hd_strategy: str
hd_strategy_crop_margin: int
hd_strategy_crop_trigger_size: int
hd_strategy_resize_limit: int
2022-09-15 16:21:27 +02:00
prompt: str = ''
# 始终是在原图尺度上的值
use_croper: bool = False
croper_x: int = None
croper_y: int = None
croper_height: int = None
croper_width: int = None
# sd
sd_strength: float = 0.75
sd_steps: int = 50
sd_guidance_scale: float = 7.5
sd_sampler: str = 'ddim' # ddim/pndm
# -1 mean random seed
sd_seed: int = 42