Create const.py
Browse files
const.py
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
SAMPLER_LIST = ["Euler", "Euler a", "LMS", "Heun", "DPM2", "DPM2 a", "DPM++ 2S a", "DPM++ 2M", "DPM++ SDE", "DPM fast",
|
| 2 |
+
"DPM adaptive", "LMS Karras", "DPM2 Karras", "DPM2 a Karras", "DPM++ 2S a Karras", "DPM++ 2M Karras",
|
| 3 |
+
"DPM++ SDE Karras", "DDIM", "PLMS"]
|
| 4 |
+
|
| 5 |
+
SDXL_MODEL_LIST = ["sd_xl_base_1.0.safetensors [be9edd61]", "dreamshaperXL10_alpha2.safetensors [c8afe2ef]",
|
| 6 |
+
"dynavisionXL_0411.safetensors [c39cc051]"]
|
| 7 |
+
|
| 8 |
+
CMODULES = ['none', 'canny', 'depth', 'depth_leres', 'depth_leres++', 'hed', 'hed_safe', 'mediapipe_face', 'mlsd',
|
| 9 |
+
'normal_map', 'openpose', 'openpose_hand', 'openpose_face', 'openpose_faceonly', 'openpose_full',
|
| 10 |
+
'clip_vision', 'color', 'pidinet', 'pidinet_safe', 'pidinet_sketch', 'pidinet_scribble', 'scribble_xdog',
|
| 11 |
+
'scribble_hed', 'segmentation', 'threshold', 'depth_zoe', 'normal_bae', 'oneformer_coco', 'oneformer_ade20k',
|
| 12 |
+
'lineart', 'lineart_coarse', 'lineart_anime', 'lineart_standard', 'shuffle', 'tile_resample', 'invert',
|
| 13 |
+
'lineart_anime_denoise', 'reference_only', 'reference_adain', 'reference_adain+attn', 'inpaint',
|
| 14 |
+
'inpaint_only', 'inpaint_only+lama', 'tile_colorfix', 'tile_colorfix+sharp']
|
| 15 |
+
|
| 16 |
+
CMODELS = ['control_v11p_sd15_canny [d14c016b]', 'control_v11p_sd15_openpose [cab727d4]',
|
| 17 |
+
'control_v11p_sd15_softedge [a8575a2a]', 'control_v11p_sd15_scribble [d4ba51ff]']
|