2022-09-29 16:46:23 -06:00
|
|
|
import sys
|
|
|
|
|
2022-09-03 03:08:45 -06:00
|
|
|
import gradio as gr
|
|
|
|
|
2023-08-09 01:25:35 -06:00
|
|
|
from modules import shared_cmd_options, shared_gradio_themes, options, shared_items
|
2023-05-10 00:02:23 -06:00
|
|
|
from modules.paths_internal import models_path, script_path, data_path, sd_configs_path, sd_default_config, sd_model_file, default_sd_model_file, extensions_dir, extensions_builtin_dir # noqa: F401
|
2023-05-02 00:08:00 -06:00
|
|
|
from ldm.models.diffusion.ddpm import LatentDiffusion
|
2023-08-09 01:25:35 -06:00
|
|
|
from modules import util
|
2022-11-27 01:52:53 -07:00
|
|
|
|
2023-08-09 01:25:35 -06:00
|
|
|
cmd_opts = shared_cmd_options.cmd_opts
|
|
|
|
parser = shared_cmd_options.parser
|
2022-09-10 23:11:27 -06:00
|
|
|
|
2022-09-03 03:08:45 -06:00
|
|
|
batch_cond_uncond = cmd_opts.always_batch_cond_uncond or not (cmd_opts.lowvram or cmd_opts.medvram)
|
2022-09-06 14:10:12 -06:00
|
|
|
parallel_processing_allowed = not cmd_opts.lowvram and not cmd_opts.medvram
|
2022-09-13 16:18:07 -06:00
|
|
|
styles_filename = cmd_opts.styles_file
|
2023-08-09 01:25:35 -06:00
|
|
|
config_filename = cmd_opts.ui_settings_file
|
2022-09-24 07:29:20 -06:00
|
|
|
hide_dirs = {"visible": not cmd_opts.hide_ui_dir_config}
|
2023-05-17 11:22:38 -06:00
|
|
|
|
2023-08-09 01:25:35 -06:00
|
|
|
demo = None
|
2023-01-29 14:25:30 -07:00
|
|
|
|
2023-08-09 01:25:35 -06:00
|
|
|
device = None
|
2023-01-29 14:25:30 -07:00
|
|
|
|
2023-08-09 01:25:35 -06:00
|
|
|
weight_load_location = None
|
2022-09-03 03:08:45 -06:00
|
|
|
|
2023-08-09 01:25:35 -06:00
|
|
|
xformers_available = False
|
2023-05-02 00:08:00 -06:00
|
|
|
|
2023-08-09 01:25:35 -06:00
|
|
|
hypernetworks = {}
|
2023-05-02 00:08:00 -06:00
|
|
|
|
2023-08-09 01:25:35 -06:00
|
|
|
loaded_hypernetworks = []
|
2023-05-02 00:08:00 -06:00
|
|
|
|
2023-08-09 01:25:35 -06:00
|
|
|
state = None
|
2023-05-02 00:08:00 -06:00
|
|
|
|
2023-08-09 01:25:35 -06:00
|
|
|
prompt_styles = None
|
2023-05-02 00:08:00 -06:00
|
|
|
|
2023-08-09 01:25:35 -06:00
|
|
|
interrogator = None
|
2023-05-02 00:08:00 -06:00
|
|
|
|
2023-08-09 01:25:35 -06:00
|
|
|
face_restorers = []
|
2023-05-02 00:08:00 -06:00
|
|
|
|
2023-08-09 01:25:35 -06:00
|
|
|
options_templates = None
|
|
|
|
opts = None
|
2023-08-09 06:06:03 -06:00
|
|
|
restricted_opts = None
|
2023-05-02 00:08:00 -06:00
|
|
|
|
2023-08-09 01:25:35 -06:00
|
|
|
sd_model: LatentDiffusion = None
|
2023-05-02 00:08:00 -06:00
|
|
|
|
2023-01-29 14:25:30 -07:00
|
|
|
settings_components = None
|
2023-05-02 00:08:00 -06:00
|
|
|
"""assinged from ui.py, a mapping on setting names to gradio components repsponsible for those settings"""
|
2023-01-29 14:25:30 -07:00
|
|
|
|
2023-08-09 01:25:35 -06:00
|
|
|
tab_names = []
|
|
|
|
|
2023-01-02 09:42:10 -07:00
|
|
|
latent_upscale_default_mode = "Latent"
|
|
|
|
latent_upscale_modes = {
|
2023-01-04 03:12:06 -07:00
|
|
|
"Latent": {"mode": "bilinear", "antialias": False},
|
|
|
|
"Latent (antialiased)": {"mode": "bilinear", "antialias": True},
|
|
|
|
"Latent (bicubic)": {"mode": "bicubic", "antialias": False},
|
2023-01-04 03:36:18 -07:00
|
|
|
"Latent (bicubic antialiased)": {"mode": "bicubic", "antialias": True},
|
2023-01-04 03:12:06 -07:00
|
|
|
"Latent (nearest)": {"mode": "nearest", "antialias": False},
|
2023-01-05 08:17:39 -07:00
|
|
|
"Latent (nearest-exact)": {"mode": "nearest-exact", "antialias": False},
|
2023-01-02 09:42:10 -07:00
|
|
|
}
|
|
|
|
|
2022-09-04 09:54:12 -06:00
|
|
|
sd_upscalers = []
|
2022-09-03 03:08:45 -06:00
|
|
|
|
2022-10-16 09:53:56 -06:00
|
|
|
clip_model = None
|
2022-09-05 14:08:06 -06:00
|
|
|
|
2022-09-08 07:37:13 -06:00
|
|
|
progress_print_out = sys.stdout
|
2022-09-05 14:08:06 -06:00
|
|
|
|
2023-03-25 14:11:41 -06:00
|
|
|
gradio_theme = gr.themes.Base()
|
|
|
|
|
2023-08-09 01:25:35 -06:00
|
|
|
total_tqdm = None
|
2023-03-25 14:11:41 -06:00
|
|
|
|
2023-08-09 01:25:35 -06:00
|
|
|
mem_mon = None
|
2023-05-17 12:45:26 -06:00
|
|
|
|
2023-08-09 01:25:35 -06:00
|
|
|
options_section = options.options_section
|
|
|
|
OptionInfo = options.OptionInfo
|
|
|
|
OptionHTML = options.OptionHTML
|
2023-07-31 15:24:48 -06:00
|
|
|
|
2023-08-09 01:25:35 -06:00
|
|
|
natural_sort_key = util.natural_sort_key
|
|
|
|
listfiles = util.listfiles
|
|
|
|
html_path = util.html_path
|
|
|
|
html = util.html
|
|
|
|
walk_files = util.walk_files
|
|
|
|
ldm_print = util.ldm_print
|
2023-07-31 15:24:48 -06:00
|
|
|
|
2023-08-09 01:25:35 -06:00
|
|
|
reload_gradio_theme = shared_gradio_themes.reload_gradio_theme
|
2023-07-31 15:24:48 -06:00
|
|
|
|
2023-08-09 01:25:35 -06:00
|
|
|
list_checkpoint_tiles = shared_items.list_checkpoint_tiles
|
|
|
|
refresh_checkpoints = shared_items.refresh_checkpoints
|
|
|
|
list_samplers = shared_items.list_samplers
|
|
|
|
reload_hypernetworks = shared_items.reload_hypernetworks
|