shared.py 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907
  1. import datetime
  2. import json
  3. import os
  4. import re
  5. import sys
  6. import threading
  7. import time
  8. import logging
  9. import gradio as gr
  10. import torch
  11. import tqdm
  12. import launch
  13. import modules.interrogate
  14. import modules.memmon
  15. import modules.styles
  16. import modules.devices as devices
  17. from modules import localization, script_loading, errors, ui_components, shared_items, cmd_args
  18. 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
  19. from ldm.models.diffusion.ddpm import LatentDiffusion
  20. from typing import Optional
  21. log = logging.getLogger(__name__)
  22. demo = None
  23. parser = cmd_args.parser
  24. script_loading.preload_extensions(
  25. extensions_dir, parser, extension_list=launch.list_extensions(launch.args.ui_settings_file))
  26. script_loading.preload_extensions(extensions_builtin_dir, parser)
  27. if os.environ.get('IGNORE_CMD_ARGS_ERRORS', None) is None:
  28. cmd_opts = parser.parse_args()
  29. else:
  30. cmd_opts, _ = parser.parse_known_args()
  31. restricted_opts = {
  32. "samples_filename_pattern",
  33. "directories_filename_pattern",
  34. "outdir_samples",
  35. "outdir_txt2img_samples",
  36. "outdir_img2img_samples",
  37. "outdir_extras_samples",
  38. "outdir_grids",
  39. "outdir_txt2img_grids",
  40. "outdir_save",
  41. "outdir_init_images"
  42. }
  43. # https://huggingface.co/datasets/freddyaboulton/gradio-theme-subdomains/resolve/main/subdomains.json
  44. gradio_hf_hub_themes = [
  45. "gradio/glass",
  46. "gradio/monochrome",
  47. "gradio/seafoam",
  48. "gradio/soft",
  49. "freddyaboulton/dracula_revamped",
  50. "gradio/dracula_test",
  51. "abidlabs/dracula_test",
  52. "abidlabs/pakistan",
  53. "dawood/microsoft_windows",
  54. "ysharma/steampunk"
  55. ]
  56. cmd_opts.disable_extension_access = (
  57. cmd_opts.share or cmd_opts.listen or cmd_opts.server_name) and not cmd_opts.enable_insecure_extension_access
  58. devices.device, devices.device_interrogate, devices.device_gfpgan, devices.device_esrgan, devices.device_codeformer = \
  59. (devices.cpu if any(y in cmd_opts.use_cpu for y in [x, 'all']) else devices.get_optimal_device(
  60. ) for x in ['sd', 'interrogate', 'gfpgan', 'esrgan', 'codeformer'])
  61. devices.dtype = torch.float32 if cmd_opts.no_half else torch.float16
  62. devices.dtype_vae = torch.float32 if cmd_opts.no_half or cmd_opts.no_half_vae else torch.float16
  63. device = devices.device
  64. weight_load_location = None if cmd_opts.lowram else "cpu"
  65. batch_cond_uncond = cmd_opts.always_batch_cond_uncond or not (
  66. cmd_opts.lowvram or cmd_opts.medvram)
  67. parallel_processing_allowed = not cmd_opts.lowvram and not cmd_opts.medvram
  68. xformers_available = False
  69. config_filename = cmd_opts.ui_settings_file
  70. os.makedirs(cmd_opts.hypernetwork_dir, exist_ok=True)
  71. hypernetworks = {}
  72. loaded_hypernetworks = []
  73. def reload_hypernetworks():
  74. from modules.hypernetworks import hypernetwork
  75. global hypernetworks
  76. hypernetworks = hypernetwork.list_hypernetworks(cmd_opts.hypernetwork_dir)
  77. class State:
  78. skipped = False
  79. interrupted = False
  80. job = ""
  81. task_id = ""
  82. job_no = 0
  83. job_count = 0
  84. processing_has_refined_job_count = False
  85. job_timestamp = '0'
  86. sampling_step = 0
  87. sampling_steps = 0
  88. current_latent = None
  89. current_image = None
  90. current_image_sampling_step = 0
  91. id_live_preview = 0
  92. textinfo = None
  93. time_start = None
  94. server_start = None
  95. _server_command_signal = threading.Event()
  96. _server_command: Optional[str] = None
  97. @property
  98. def need_restart(self) -> bool:
  99. # Compatibility getter for need_restart.
  100. return self.server_command == "restart"
  101. @need_restart.setter
  102. def need_restart(self, value: bool) -> None:
  103. # Compatibility setter for need_restart.
  104. if value:
  105. self.server_command = "restart"
  106. @property
  107. def server_command(self):
  108. return self._server_command
  109. @server_command.setter
  110. def server_command(self, value: Optional[str]) -> None:
  111. """
  112. Set the server command to `value` and signal that it's been set.
  113. """
  114. self._server_command = value
  115. self._server_command_signal.set()
  116. def wait_for_server_command(self, timeout: Optional[float] = None) -> Optional[str]:
  117. """
  118. Wait for server command to get set; return and clear the value and signal.
  119. """
  120. if self._server_command_signal.wait(timeout):
  121. self._server_command_signal.clear()
  122. req = self._server_command
  123. self._server_command = None
  124. return req
  125. return None
  126. def request_restart(self) -> None:
  127. self.interrupt()
  128. self.server_command = "restart"
  129. log.info("Received restart request")
  130. def skip(self):
  131. self.skipped = True
  132. log.info("Received skip request")
  133. def interrupt(self):
  134. self.interrupted = True
  135. log.info("Received interrupt request")
  136. def nextjob(self):
  137. if opts.live_previews_enable and opts.show_progress_every_n_steps == -1:
  138. self.do_set_current_image()
  139. self.job_no += 1
  140. self.sampling_step = 0
  141. self.current_image_sampling_step = 0
  142. def dict(self):
  143. obj = {
  144. "skipped": self.skipped,
  145. "interrupted": self.interrupted,
  146. "job": self.job,
  147. "job_count": self.job_count,
  148. "job_timestamp": self.job_timestamp,
  149. "job_no": self.job_no,
  150. "sampling_step": self.sampling_step,
  151. "sampling_steps": self.sampling_steps,
  152. }
  153. return obj
  154. def begin(self, job: str = "(unknown)"):
  155. self.sampling_step = 0
  156. self.job_count = -1
  157. self.processing_has_refined_job_count = False
  158. self.job_no = 0
  159. self.job_timestamp = datetime.datetime.now().strftime("%Y%m%d%H%M%S")
  160. self.current_latent = None
  161. self.current_image = None
  162. self.current_image_sampling_step = 0
  163. self.id_live_preview = 0
  164. self.skipped = False
  165. self.interrupted = False
  166. self.textinfo = None
  167. self.time_start = time.time()
  168. self.job = job
  169. devices.torch_gc()
  170. log.info("Starting job %s", job)
  171. def end(self):
  172. duration = time.time() - self.time_start
  173. log.info("Ending job %s (%.2f seconds)", self.job, duration)
  174. self.job = ""
  175. self.job_count = 0
  176. devices.torch_gc()
  177. def set_current_image(self):
  178. """sets self.current_image from self.current_latent if enough sampling steps have been made after the last call to this"""
  179. if not parallel_processing_allowed:
  180. return
  181. if self.sampling_step - self.current_image_sampling_step >= opts.show_progress_every_n_steps and opts.live_previews_enable and opts.show_progress_every_n_steps != -1:
  182. self.do_set_current_image()
  183. def do_set_current_image(self):
  184. if self.current_latent is None:
  185. return
  186. import modules.sd_samplers
  187. if opts.show_progress_grid:
  188. self.assign_current_image(
  189. modules.sd_samplers.samples_to_image_grid(self.current_latent))
  190. else:
  191. self.assign_current_image(
  192. modules.sd_samplers.sample_to_image(self.current_latent))
  193. self.current_image_sampling_step = self.sampling_step
  194. def assign_current_image(self, image):
  195. self.current_image = image
  196. self.id_live_preview += 1
  197. state = State()
  198. state.server_start = time.time()
  199. styles_filename = cmd_opts.styles_file
  200. prompt_styles = modules.styles.StyleDatabase(styles_filename)
  201. interrogator = modules.interrogate.InterrogateModels("interrogate")
  202. face_restorers = []
  203. class OptionInfo:
  204. def __init__(self, default=None, label="", component=None, component_args=None, onchange=None, section=None, refresh=None, comment_before='', comment_after=''):
  205. self.default = default
  206. self.label = label
  207. self.component = component
  208. self.component_args = component_args
  209. self.onchange = onchange
  210. self.section = section
  211. self.refresh = refresh
  212. self.comment_before = comment_before
  213. """HTML text that will be added after label in UI"""
  214. self.comment_after = comment_after
  215. """HTML text that will be added before label in UI"""
  216. def link(self, label, url):
  217. self.comment_before += f"[<a href='{url}' target='_blank'>{label}</a>]"
  218. return self
  219. def js(self, label, js_func):
  220. self.comment_before += f"[<a onclick='{js_func}(); return false'>{label}</a>]"
  221. return self
  222. def info(self, info):
  223. self.comment_after += f"<span class='info'>({info})</span>"
  224. return self
  225. def html(self, html):
  226. self.comment_after += html
  227. return self
  228. def needs_restart(self):
  229. self.comment_after += " <span class='info'>(requires restart)</span>"
  230. return self
  231. def options_section(section_identifier, options_dict):
  232. for v in options_dict.values():
  233. v.section = section_identifier
  234. return options_dict
  235. def list_checkpoint_tiles():
  236. import modules.sd_models
  237. return modules.sd_models.checkpoint_tiles()
  238. def refresh_checkpoints():
  239. import modules.sd_models
  240. return modules.sd_models.list_models()
  241. def list_samplers():
  242. import modules.sd_samplers
  243. return modules.sd_samplers.all_samplers
  244. hide_dirs = {"visible": not cmd_opts.hide_ui_dir_config}
  245. tab_names = []
  246. options_templates = {}
  247. options_templates.update(options_section(('saving-images', "Saving images/grids"), {
  248. "samples_save": OptionInfo(True, "Always save all generated images"),
  249. "samples_format": OptionInfo('png', 'File format for images'),
  250. "samples_filename_pattern": OptionInfo("", "Images filename pattern", component_args=hide_dirs).link("wiki", "https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Custom-Images-Filename-Name-and-Subdirectory"),
  251. "save_images_add_number": OptionInfo(True, "Add number to filename when saving", component_args=hide_dirs),
  252. "grid_save": OptionInfo(True, "Always save all generated image grids"),
  253. "grid_format": OptionInfo('png', 'File format for grids'),
  254. "grid_extended_filename": OptionInfo(False, "Add extended info (seed, prompt) to filename when saving grid"),
  255. "grid_only_if_multiple": OptionInfo(True, "Do not save grids consisting of one picture"),
  256. "grid_prevent_empty_spots": OptionInfo(False, "Prevent empty spots in grid (when set to autodetect)"),
  257. "grid_zip_filename_pattern": OptionInfo("", "Archive filename pattern", component_args=hide_dirs).link("wiki", "https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Custom-Images-Filename-Name-and-Subdirectory"),
  258. "n_rows": OptionInfo(-1, "Grid row count; use -1 for autodetect and 0 for it to be same as batch size", gr.Slider, {"minimum": -1, "maximum": 16, "step": 1}),
  259. "font": OptionInfo("", "Font for image grids that have text"),
  260. "grid_text_active_color": OptionInfo("#000000", "Text color for image grids", ui_components.FormColorPicker, {}),
  261. "grid_text_inactive_color": OptionInfo("#999999", "Inactive text color for image grids", ui_components.FormColorPicker, {}),
  262. "grid_background_color": OptionInfo("#ffffff", "Background color for image grids", ui_components.FormColorPicker, {}),
  263. "enable_pnginfo": OptionInfo(True, "Save text information about generation parameters as chunks to png files"),
  264. "save_txt": OptionInfo(False, "Create a text file next to every image with generation parameters."),
  265. "save_images_before_face_restoration": OptionInfo(False, "Save a copy of image before doing face restoration."),
  266. "save_images_before_highres_fix": OptionInfo(False, "Save a copy of image before applying highres fix."),
  267. "save_images_before_color_correction": OptionInfo(False, "Save a copy of image before applying color correction to img2img results"),
  268. "save_mask": OptionInfo(False, "For inpainting, save a copy of the greyscale mask"),
  269. "save_mask_composite": OptionInfo(False, "For inpainting, save a masked composite"),
  270. "jpeg_quality": OptionInfo(80, "Quality for saved jpeg images", gr.Slider, {"minimum": 1, "maximum": 100, "step": 1}),
  271. "webp_lossless": OptionInfo(False, "Use lossless compression for webp images"),
  272. "export_for_4chan": OptionInfo(True, "Save copy of large images as JPG").info("if the file size is above the limit, or either width or height are above the limit"),
  273. "img_downscale_threshold": OptionInfo(4.0, "File size limit for the above option, MB", gr.Number),
  274. "target_side_length": OptionInfo(4000, "Width/height limit for the above option, in pixels", gr.Number),
  275. "img_max_size_mp": OptionInfo(200, "Maximum image size", gr.Number).info("in megapixels"),
  276. "use_original_name_batch": OptionInfo(True, "Use original name for output filename during batch process in extras tab"),
  277. "use_upscaler_name_as_suffix": OptionInfo(False, "Use upscaler name as filename suffix in the extras tab"),
  278. "save_selected_only": OptionInfo(True, "When using 'Save' button, only save a single selected image"),
  279. "save_init_img": OptionInfo(False, "Save init images when using img2img"),
  280. "temp_dir": OptionInfo("", "Directory for temporary images; leave empty for default"),
  281. "clean_temp_dir_at_start": OptionInfo(False, "Cleanup non-default temporary directory when starting webui"),
  282. }))
  283. options_templates.update(options_section(('saving-paths', "Paths for saving"), {
  284. "outdir_samples": OptionInfo("", "Output directory for images; if empty, defaults to three directories below", component_args=hide_dirs),
  285. "outdir_txt2img_samples": OptionInfo("outputs/txt2img-images", 'Output directory for txt2img images', component_args=hide_dirs),
  286. "outdir_img2img_samples": OptionInfo("outputs/img2img-images", 'Output directory for img2img images', component_args=hide_dirs),
  287. "outdir_extras_samples": OptionInfo("outputs/extras-images", 'Output directory for images from extras tab', component_args=hide_dirs),
  288. "outdir_grids": OptionInfo("", "Output directory for grids; if empty, defaults to two directories below", component_args=hide_dirs),
  289. "outdir_txt2img_grids": OptionInfo("outputs/txt2img-grids", 'Output directory for txt2img grids', component_args=hide_dirs),
  290. "outdir_img2img_grids": OptionInfo("outputs/img2img-grids", 'Output directory for img2img grids', component_args=hide_dirs),
  291. "outdir_save": OptionInfo("log/images", "Directory for saving images using the Save button", component_args=hide_dirs),
  292. "outdir_init_images": OptionInfo("outputs/init-images", "Directory for saving init images when using img2img", component_args=hide_dirs),
  293. }))
  294. options_templates.update(options_section(('saving-to-dirs', "Saving to a directory"), {
  295. "save_to_dirs": OptionInfo(True, "Save images to a subdirectory"),
  296. "grid_save_to_dirs": OptionInfo(True, "Save grids to a subdirectory"),
  297. "use_save_to_dirs_for_ui": OptionInfo(False, "When using \"Save\" button, save images to a subdirectory"),
  298. "directories_filename_pattern": OptionInfo("[date]", "Directory name pattern", component_args=hide_dirs).link("wiki", "https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Custom-Images-Filename-Name-and-Subdirectory"),
  299. "directories_max_prompt_words": OptionInfo(8, "Max prompt words for [prompt_words] pattern", gr.Slider, {"minimum": 1, "maximum": 20, "step": 1, **hide_dirs}),
  300. }))
  301. options_templates.update(options_section(('upscaling', "Upscaling"), {
  302. "ESRGAN_tile": OptionInfo(192, "Tile size for ESRGAN upscalers.", gr.Slider, {"minimum": 0, "maximum": 512, "step": 16}).info("0 = no tiling"),
  303. "ESRGAN_tile_overlap": OptionInfo(8, "Tile overlap for ESRGAN upscalers.", gr.Slider, {"minimum": 0, "maximum": 48, "step": 1}).info("Low values = visible seam"),
  304. "realesrgan_enabled_models": OptionInfo(["R-ESRGAN 4x+", "R-ESRGAN 4x+ Anime6B"], "Select which Real-ESRGAN models to show in the web UI.", gr.CheckboxGroup, lambda: {"choices": shared_items.realesrgan_models_names()}),
  305. "upscaler_for_img2img": OptionInfo(None, "Upscaler for img2img", gr.Dropdown, lambda: {"choices": [x.name for x in sd_upscalers]}),
  306. }))
  307. options_templates.update(options_section(('face-restoration', "Face restoration"), {
  308. "face_restoration_model": OptionInfo("CodeFormer", "Face restoration model", gr.Radio, lambda: {"choices": [x.name() for x in face_restorers]}),
  309. "code_former_weight": OptionInfo(0.5, "CodeFormer weight", gr.Slider, {"minimum": 0, "maximum": 1, "step": 0.01}).info("0 = maximum effect; 1 = minimum effect"),
  310. "face_restoration_unload": OptionInfo(False, "Move face restoration model from VRAM into RAM after processing"),
  311. }))
  312. options_templates.update(options_section(('system', "System"), {
  313. "show_warnings": OptionInfo(False, "Show warnings in console."),
  314. "memmon_poll_rate": OptionInfo(8, "VRAM usage polls per second during generation.", gr.Slider, {"minimum": 0, "maximum": 40, "step": 1}).info("0 = disable"),
  315. "samples_log_stdout": OptionInfo(False, "Always print all generation info to standard output"),
  316. "multiple_tqdm": OptionInfo(True, "Add a second progress bar to the console that shows progress for an entire job."),
  317. "print_hypernet_extra": OptionInfo(False, "Print extra hypernetwork information to console."),
  318. "list_hidden_files": OptionInfo(True, "Load models/files in hidden directories").info("directory is hidden if its name starts with \".\""),
  319. "disable_mmap_load_safetensors": OptionInfo(False, "Disable memmapping for loading .safetensors files.").info("fixes very slow loading speed in some cases"),
  320. }))
  321. options_templates.update(options_section(('training', "Training"), {
  322. "unload_models_when_training": OptionInfo(False, "Move VAE and CLIP to RAM when training if possible. Saves VRAM."),
  323. "pin_memory": OptionInfo(False, "Turn on pin_memory for DataLoader. Makes training slightly faster but can increase memory usage."),
  324. "save_optimizer_state": OptionInfo(False, "Saves Optimizer state as separate *.optim file. Training of embedding or HN can be resumed with the matching optim file."),
  325. "save_training_settings_to_txt": OptionInfo(True, "Save textual inversion and hypernet settings to a text file whenever training starts."),
  326. "dataset_filename_word_regex": OptionInfo("", "Filename word regex"),
  327. "dataset_filename_join_string": OptionInfo(" ", "Filename join string"),
  328. "training_image_repeats_per_epoch": OptionInfo(1, "Number of repeats for a single input image per epoch; used only for displaying epoch number", gr.Number, {"precision": 0}),
  329. "training_write_csv_every": OptionInfo(500, "Save an csv containing the loss to log directory every N steps, 0 to disable"),
  330. "training_xattention_optimizations": OptionInfo(False, "Use cross attention optimizations while training"),
  331. "training_enable_tensorboard": OptionInfo(False, "Enable tensorboard logging."),
  332. "training_tensorboard_save_images": OptionInfo(False, "Save generated images within tensorboard."),
  333. "training_tensorboard_flush_every": OptionInfo(120, "How often, in seconds, to flush the pending tensorboard events and summaries to disk."),
  334. }))
  335. options_templates.update(options_section(('sd', "Stable Diffusion"), {
  336. "sd_model_checkpoint": OptionInfo(None, "Stable Diffusion checkpoint", gr.Dropdown, lambda: {"choices": list_checkpoint_tiles()}, refresh=refresh_checkpoints),
  337. "sd_checkpoint_cache": OptionInfo(0, "Checkpoints to cache in RAM", gr.Slider, {"minimum": 0, "maximum": 10, "step": 1}),
  338. "sd_vae_checkpoint_cache": OptionInfo(0, "VAE Checkpoints to cache in RAM", gr.Slider, {"minimum": 0, "maximum": 10, "step": 1}),
  339. "sd_vae": OptionInfo("Automatic", "SD VAE", gr.Dropdown, lambda: {"choices": shared_items.sd_vae_items()}, refresh=shared_items.refresh_vae_list).info("choose VAE model: Automatic = use one with same filename as checkpoint; None = use VAE from checkpoint"),
  340. "sd_vae_as_default": OptionInfo(True, "Ignore selected VAE for stable diffusion checkpoints that have their own .vae.pt next to them"),
  341. "sd_unet": OptionInfo("Automatic", "SD Unet", gr.Dropdown, lambda: {"choices": shared_items.sd_unet_items()}, refresh=shared_items.refresh_unet_list).info("choose Unet model: Automatic = use one with same filename as checkpoint; None = use Unet from checkpoint"),
  342. "inpainting_mask_weight": OptionInfo(1.0, "Inpainting conditioning mask strength", gr.Slider, {"minimum": 0.0, "maximum": 1.0, "step": 0.01}),
  343. "initial_noise_multiplier": OptionInfo(1.0, "Noise multiplier for img2img", gr.Slider, {"minimum": 0.5, "maximum": 1.5, "step": 0.01}),
  344. "img2img_color_correction": OptionInfo(False, "Apply color correction to img2img results to match original colors."),
  345. "img2img_fix_steps": OptionInfo(False, "With img2img, do exactly the amount of steps the slider specifies.").info("normally you'd do less with less denoising"),
  346. "img2img_background_color": OptionInfo("#ffffff", "With img2img, fill image's transparent parts with this color.", ui_components.FormColorPicker, {}),
  347. "enable_quantization": OptionInfo(False, "Enable quantization in K samplers for sharper and cleaner results. This may change existing seeds. Requires restart to apply."),
  348. "enable_emphasis": OptionInfo(True, "Enable emphasis").info("use (text) to make model pay more attention to text and [text] to make it pay less attention"),
  349. "enable_batch_seeds": OptionInfo(True, "Make K-diffusion samplers produce same images in a batch as when making a single image"),
  350. "comma_padding_backtrack": OptionInfo(20, "Prompt word wrap length limit", gr.Slider, {"minimum": 0, "maximum": 74, "step": 1}).info("in tokens - for texts shorter than specified, if they don't fit into 75 token limit, move them to the next 75 token chunk"),
  351. "CLIP_stop_at_last_layers": OptionInfo(1, "Clip skip", gr.Slider, {"minimum": 1, "maximum": 12, "step": 1}).link("wiki", "https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Features#clip-skip").info("ignore last layers of CLIP network; 1 ignores none, 2 ignores one layer"),
  352. "upcast_attn": OptionInfo(False, "Upcast cross attention layer to float32"),
  353. "auto_vae_precision": OptionInfo(True, "Automaticlly revert VAE to 32-bit floats").info("triggers when a tensor with NaNs is produced in VAE; disabling the option in this case will result in a black square image"),
  354. "randn_source": OptionInfo("GPU", "Random number generator source.", gr.Radio, {"choices": ["GPU", "CPU"]}).info("changes seeds drastically; use CPU to produce the same picture across different videocard vendors"),
  355. }))
  356. options_templates.update(options_section(('sdxl', "Stable Diffusion XL"), {
  357. "sdxl_crop_top": OptionInfo(0, "crop top coordinate"),
  358. "sdxl_crop_left": OptionInfo(0, "crop left coordinate"),
  359. "sdxl_refiner_low_aesthetic_score": OptionInfo(2.5, "SDXL low aesthetic score", gr.Number).info("used for refiner model negative prompt"),
  360. "sdxl_refiner_high_aesthetic_score": OptionInfo(6.0, "SDXL high aesthetic score", gr.Number).info("used for refiner model prompt"),
  361. }))
  362. options_templates.update(options_section(('optimizations', "Optimizations"), {
  363. "cross_attention_optimization": OptionInfo("Automatic", "Cross attention optimization", gr.Dropdown, lambda: {"choices": shared_items.cross_attention_optimizations()}),
  364. "s_min_uncond": OptionInfo(0.0, "Negative Guidance minimum sigma", gr.Slider, {"minimum": 0.0, "maximum": 15.0, "step": 0.01}).link("PR", "https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/9177").info("skip negative prompt for some steps when the image is almost ready; 0=disable, higher=faster"),
  365. "token_merging_ratio": OptionInfo(0.0, "Token merging ratio", gr.Slider, {"minimum": 0.0, "maximum": 0.9, "step": 0.1}).link("PR", "https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/9256").info("0=disable, higher=faster"),
  366. "token_merging_ratio_img2img": OptionInfo(0.0, "Token merging ratio for img2img", gr.Slider, {"minimum": 0.0, "maximum": 0.9, "step": 0.1}).info("only applies if non-zero and overrides above"),
  367. "token_merging_ratio_hr": OptionInfo(0.0, "Token merging ratio for high-res pass", gr.Slider, {"minimum": 0.0, "maximum": 0.9, "step": 0.1}).info("only applies if non-zero and overrides above"),
  368. "pad_cond_uncond": OptionInfo(False, "Pad prompt/negative prompt to be same length").info("improves performance when prompt and negative prompt have different lengths; changes seeds"),
  369. "experimental_persistent_cond_cache": OptionInfo(False, "persistent cond cache").info("Experimental, keep cond caches across jobs, reduce overhead."),
  370. }))
  371. options_templates.update(options_section(('compatibility', "Compatibility"), {
  372. "use_old_emphasis_implementation": OptionInfo(False, "Use old emphasis implementation. Can be useful to reproduce old seeds."),
  373. "use_old_karras_scheduler_sigmas": OptionInfo(False, "Use old karras scheduler sigmas (0.1 to 10)."),
  374. "no_dpmpp_sde_batch_determinism": OptionInfo(False, "Do not make DPM++ SDE deterministic across different batch sizes."),
  375. "use_old_hires_fix_width_height": OptionInfo(False, "For hires fix, use width/height sliders to set final resolution rather than first pass (disables Upscale by, Resize width/height to)."),
  376. "dont_fix_second_order_samplers_schedule": OptionInfo(False, "Do not fix prompt schedule for second order samplers."),
  377. "hires_fix_use_firstpass_conds": OptionInfo(False, "For hires fix, calculate conds of second pass using extra networks of first pass."),
  378. }))
  379. options_templates.update(options_section(('interrogate', "Interrogate Options"), {
  380. "interrogate_keep_models_in_memory": OptionInfo(False, "Keep models in VRAM"),
  381. "interrogate_return_ranks": OptionInfo(False, "Include ranks of model tags matches in results.").info("booru only"),
  382. "interrogate_clip_num_beams": OptionInfo(1, "BLIP: num_beams", gr.Slider, {"minimum": 1, "maximum": 16, "step": 1}),
  383. "interrogate_clip_min_length": OptionInfo(24, "BLIP: minimum description length", gr.Slider, {"minimum": 1, "maximum": 128, "step": 1}),
  384. "interrogate_clip_max_length": OptionInfo(48, "BLIP: maximum description length", gr.Slider, {"minimum": 1, "maximum": 256, "step": 1}),
  385. "interrogate_clip_dict_limit": OptionInfo(1500, "CLIP: maximum number of lines in text file").info("0 = No limit"),
  386. "interrogate_clip_skip_categories": OptionInfo([], "CLIP: skip inquire categories", gr.CheckboxGroup, lambda: {"choices": modules.interrogate.category_types()}, refresh=modules.interrogate.category_types),
  387. "interrogate_deepbooru_score_threshold": OptionInfo(0.5, "deepbooru: score threshold", gr.Slider, {"minimum": 0, "maximum": 1, "step": 0.01}),
  388. "deepbooru_sort_alpha": OptionInfo(True, "deepbooru: sort tags alphabetically").info("if not: sort by score"),
  389. "deepbooru_use_spaces": OptionInfo(True, "deepbooru: use spaces in tags").info("if not: use underscores"),
  390. "deepbooru_escape": OptionInfo(True, "deepbooru: escape (\\) brackets").info("so they are used as literal brackets and not for emphasis"),
  391. "deepbooru_filter_tags": OptionInfo("", "deepbooru: filter out those tags").info("separate by comma"),
  392. }))
  393. options_templates.update(options_section(('extra_networks', "Extra Networks"), {
  394. "extra_networks_show_hidden_directories": OptionInfo(True, "Show hidden directories").info("directory is hidden if its name starts with \".\"."),
  395. "extra_networks_hidden_models": OptionInfo("When searched", "Show cards for models in hidden directories", gr.Radio, {"choices": ["Always", "When searched", "Never"]}).info('"When searched" option will only show the item when the search string has 4 characters or more'),
  396. "extra_networks_default_multiplier": OptionInfo(1.0, "Default multiplier for extra networks", gr.Slider, {"minimum": 0.0, "maximum": 2.0, "step": 0.01}),
  397. "extra_networks_card_width": OptionInfo(0, "Card width for Extra Networks").info("in pixels"),
  398. "extra_networks_card_height": OptionInfo(0, "Card height for Extra Networks").info("in pixels"),
  399. "extra_networks_card_text_scale": OptionInfo(1.0, "Card text scale", gr.Slider, {"minimum": 0.0, "maximum": 2.0, "step": 0.01}).info("1 = original size"),
  400. "extra_networks_card_show_desc": OptionInfo(True, "Show description on card"),
  401. "extra_networks_add_text_separator": OptionInfo(" ", "Extra networks separator").info("extra text to add before <...> when adding extra network to prompt"),
  402. "ui_extra_networks_tab_reorder": OptionInfo("", "Extra networks tab order").needs_restart(),
  403. "textual_inversion_print_at_load": OptionInfo(False, "Print a list of Textual Inversion embeddings when loading model"),
  404. "textual_inversion_add_hashes_to_infotext": OptionInfo(True, "Add Textual Inversion hashes to infotext"),
  405. "sd_hypernetwork": OptionInfo("None", "Add hypernetwork to prompt", gr.Dropdown, lambda: {"choices": ["None", *hypernetworks]}, refresh=reload_hypernetworks),
  406. }))
  407. options_templates.update(options_section(('ui', "User interface"), {
  408. "localization": OptionInfo("None", "Localization", gr.Dropdown, lambda: {"choices": ["None"] + list(localization.localizations.keys())}, refresh=lambda: localization.list_localizations(cmd_opts.localizations_dir)).needs_restart(),
  409. "gradio_theme": OptionInfo("Default", "Gradio theme", ui_components.DropdownEditable, lambda: {"choices": ["Default"] + gradio_hf_hub_themes}).needs_restart(),
  410. "img2img_editor_height": OptionInfo(720, "img2img: height of image editor", gr.Slider, {"minimum": 80, "maximum": 1600, "step": 1}).info("in pixels").needs_restart(),
  411. "return_grid": OptionInfo(True, "Show grid in results for web"),
  412. "return_mask": OptionInfo(False, "For inpainting, include the greyscale mask in results for web"),
  413. "return_mask_composite": OptionInfo(False, "For inpainting, include masked composite in results for web"),
  414. "do_not_show_images": OptionInfo(False, "Do not show any images in results for web"),
  415. "send_seed": OptionInfo(True, "Send seed when sending prompt or image to other interface"),
  416. "send_size": OptionInfo(True, "Send size when sending prompt or image to another interface"),
  417. "js_modal_lightbox": OptionInfo(True, "Enable full page image viewer"),
  418. "js_modal_lightbox_initially_zoomed": OptionInfo(True, "Show images zoomed in by default in full page image viewer"),
  419. "js_modal_lightbox_gamepad": OptionInfo(False, "Navigate image viewer with gamepad"),
  420. "js_modal_lightbox_gamepad_repeat": OptionInfo(250, "Gamepad repeat period, in milliseconds"),
  421. "show_progress_in_title": OptionInfo(True, "Show generation progress in window title."),
  422. "samplers_in_dropdown": OptionInfo(True, "Use dropdown for sampler selection instead of radio group").needs_restart(),
  423. "dimensions_and_batch_together": OptionInfo(True, "Show Width/Height and Batch sliders in same row").needs_restart(),
  424. "keyedit_precision_attention": OptionInfo(0.1, "Ctrl+up/down precision when editing (attention:1.1)", gr.Slider, {"minimum": 0.01, "maximum": 0.2, "step": 0.001}),
  425. "keyedit_precision_extra": OptionInfo(0.05, "Ctrl+up/down precision when editing <extra networks:0.9>", gr.Slider, {"minimum": 0.01, "maximum": 0.2, "step": 0.001}),
  426. "keyedit_delimiters": OptionInfo(".,\\/!?%^*;:{}=`~()", "Ctrl+up/down word delimiters"),
  427. "keyedit_move": OptionInfo(True, "Alt+left/right moves prompt elements"),
  428. "quicksettings_list": OptionInfo(["sd_model_checkpoint"], "Quicksettings list", ui_components.DropdownMulti, lambda: {"choices": list(opts.data_labels.keys())}).js("info", "settingsHintsShowQuicksettings").info("setting entries that appear at the top of page rather than in settings tab").needs_restart(),
  429. "ui_tab_order": OptionInfo([], "UI tab order", ui_components.DropdownMulti, lambda: {"choices": list(tab_names)}).needs_restart(),
  430. "hidden_tabs": OptionInfo([], "Hidden UI tabs", ui_components.DropdownMulti, lambda: {"choices": list(tab_names)}).needs_restart(),
  431. "ui_reorder_list": OptionInfo([], "txt2img/img2img UI item order", ui_components.DropdownMulti, lambda: {"choices": list(shared_items.ui_reorder_categories())}).info("selected items appear first").needs_restart(),
  432. "hires_fix_show_sampler": OptionInfo(False, "Hires fix: show hires sampler selection").needs_restart(),
  433. "hires_fix_show_prompts": OptionInfo(False, "Hires fix: show hires prompt and negative prompt").needs_restart(),
  434. "disable_token_counters": OptionInfo(False, "Disable prompt token counters").needs_restart(),
  435. }))
  436. options_templates.update(options_section(('infotext', "Infotext"), {
  437. "add_model_hash_to_info": OptionInfo(True, "Add model hash to generation information"),
  438. "add_model_name_to_info": OptionInfo(True, "Add model name to generation information"),
  439. "add_user_name_to_info": OptionInfo(False, "Add user name to generation information when authenticated"),
  440. "add_version_to_infotext": OptionInfo(True, "Add program version to generation information"),
  441. "disable_weights_auto_swap": OptionInfo(True, "Disregard checkpoint information from pasted infotext").info("when reading generation parameters from text into UI"),
  442. "infotext_styles": OptionInfo("Apply if any", "Infer styles from prompts of pasted infotext", gr.Radio, {"choices": ["Ignore", "Apply", "Discard", "Apply if any"]}).info("when reading generation parameters from text into UI)").html("""<ul style='margin-left: 1.5em'>
  443. <li>Ignore: keep prompt and styles dropdown as it is.</li>
  444. <li>Apply: remove style text from prompt, always replace styles dropdown value with found styles (even if none are found).</li>
  445. <li>Discard: remove style text from prompt, keep styles dropdown as it is.</li>
  446. <li>Apply if any: remove style text from prompt; if any styles are found in prompt, put them into styles dropdown, otherwise keep it as it is.</li>
  447. </ul>"""),
  448. }))
  449. options_templates.update(options_section(('ui', "Live previews"), {
  450. "show_progressbar": OptionInfo(True, "Show progressbar"),
  451. "live_previews_enable": OptionInfo(True, "Show live previews of the created image"),
  452. "live_previews_image_format": OptionInfo("png", "Live preview file format", gr.Radio, {"choices": ["jpeg", "png", "webp"]}),
  453. "show_progress_grid": OptionInfo(True, "Show previews of all images generated in a batch as a grid"),
  454. "show_progress_every_n_steps": OptionInfo(10, "Live preview display period", gr.Slider, {"minimum": -1, "maximum": 32, "step": 1}).info("in sampling steps - show new live preview image every N sampling steps; -1 = only show after completion of batch"),
  455. "show_progress_type": OptionInfo("Approx NN", "Live preview method", gr.Radio, {"choices": ["Full", "Approx NN", "Approx cheap", "TAESD"]}).info("Full = slow but pretty; Approx NN and TAESD = fast but low quality; Approx cheap = super fast but terrible otherwise"),
  456. "live_preview_content": OptionInfo("Prompt", "Live preview subject", gr.Radio, {"choices": ["Combined", "Prompt", "Negative prompt"]}),
  457. "live_preview_refresh_period": OptionInfo(1000, "Progressbar and preview update period").info("in milliseconds"),
  458. }))
  459. options_templates.update(options_section(('sampler-params', "Sampler parameters"), {
  460. "hide_samplers": OptionInfo([], "Hide samplers in user interface", gr.CheckboxGroup, lambda: {"choices": [x.name for x in list_samplers()]}).needs_restart(),
  461. "eta_ddim": OptionInfo(0.0, "Eta for DDIM", gr.Slider, {"minimum": 0.0, "maximum": 1.0, "step": 0.01}).info("noise multiplier; higher = more unperdictable results"),
  462. "eta_ancestral": OptionInfo(1.0, "Eta for ancestral samplers", gr.Slider, {"minimum": 0.0, "maximum": 1.0, "step": 0.01}).info("noise multiplier; applies to Euler a and other samplers that have a in them"),
  463. "ddim_discretize": OptionInfo('uniform', "img2img DDIM discretize", gr.Radio, {"choices": ['uniform', 'quad']}),
  464. 's_churn': OptionInfo(0.0, "sigma churn", gr.Slider, {"minimum": 0.0, "maximum": 1.0, "step": 0.01}),
  465. 's_tmin': OptionInfo(0.0, "sigma tmin", gr.Slider, {"minimum": 0.0, "maximum": 1.0, "step": 0.01}),
  466. 's_noise': OptionInfo(1.0, "sigma noise", gr.Slider, {"minimum": 0.0, "maximum": 1.0, "step": 0.01}),
  467. 'k_sched_type': OptionInfo("Automatic", "scheduler type", gr.Dropdown, {"choices": ["Automatic", "karras", "exponential", "polyexponential"]}).info("lets you override the noise schedule for k-diffusion samplers; choosing Automatic disables the three parameters below"),
  468. 'sigma_min': OptionInfo(0.0, "sigma min", gr.Number).info("0 = default (~0.03); minimum noise strength for k-diffusion noise scheduler"),
  469. 'sigma_max': OptionInfo(0.0, "sigma max", gr.Number).info("0 = default (~14.6); maximum noise strength for k-diffusion noise schedule"),
  470. 'rho': OptionInfo(0.0, "rho", gr.Number).info("0 = default (7 for karras, 1 for polyexponential); higher values result in a more steep noise schedule (decreases faster)"),
  471. 'eta_noise_seed_delta': OptionInfo(0, "Eta noise seed delta", gr.Number, {"precision": 0}).info("ENSD; does not improve anything, just produces different results for ancestral samplers - only useful for reproducing images"),
  472. 'always_discard_next_to_last_sigma': OptionInfo(False, "Always discard next-to-last sigma").link("PR", "https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/6044"),
  473. 'uni_pc_variant': OptionInfo("bh1", "UniPC variant", gr.Radio, {"choices": ["bh1", "bh2", "vary_coeff"]}),
  474. 'uni_pc_skip_type': OptionInfo("time_uniform", "UniPC skip type", gr.Radio, {"choices": ["time_uniform", "time_quadratic", "logSNR"]}),
  475. 'uni_pc_order': OptionInfo(3, "UniPC order", gr.Slider, {"minimum": 1, "maximum": 50, "step": 1}).info("must be < sampling steps"),
  476. 'uni_pc_lower_order_final': OptionInfo(True, "UniPC lower order final"),
  477. }))
  478. options_templates.update(options_section(('postprocessing', "Postprocessing"), {
  479. 'postprocessing_enable_in_main_ui': OptionInfo([], "Enable postprocessing operations in txt2img and img2img tabs", ui_components.DropdownMulti, lambda: {"choices": [x.name for x in shared_items.postprocessing_scripts()]}),
  480. 'postprocessing_operation_order': OptionInfo([], "Postprocessing operation order", ui_components.DropdownMulti, lambda: {"choices": [x.name for x in shared_items.postprocessing_scripts()]}),
  481. 'upscaling_max_images_in_cache': OptionInfo(5, "Maximum number of images in upscaling cache", gr.Slider, {"minimum": 0, "maximum": 10, "step": 1}),
  482. }))
  483. options_templates.update(options_section((None, "Hidden options"), {
  484. "disabled_extensions": OptionInfo([], "Disable these extensions"),
  485. "disable_all_extensions": OptionInfo("none", "Disable all extensions (preserves the list of disabled extensions)", gr.Radio, {"choices": ["none", "extra", "all"]}),
  486. "restore_config_state_file": OptionInfo("", "Config state file to restore from, under 'config-states/' folder"),
  487. "sd_checkpoint_hash": OptionInfo("", "SHA256 hash of the current checkpoint"),
  488. }))
  489. options_templates.update()
  490. class Options:
  491. data = None
  492. data_labels = options_templates
  493. typemap = {int: float}
  494. def __init__(self):
  495. self.data = {k: v.default for k, v in self.data_labels.items()}
  496. def __setattr__(self, key, value):
  497. if self.data is not None:
  498. if key in self.data or key in self.data_labels:
  499. assert not cmd_opts.freeze_settings, "changing settings is disabled"
  500. info = opts.data_labels.get(key, None)
  501. comp_args = info.component_args if info else None
  502. if isinstance(comp_args, dict) and comp_args.get('visible', True) is False:
  503. raise RuntimeError(
  504. f"not possible to set {key} because it is restricted")
  505. if cmd_opts.hide_ui_dir_config and key in restricted_opts:
  506. raise RuntimeError(
  507. f"not possible to set {key} because it is restricted")
  508. self.data[key] = value
  509. return
  510. return super(Options, self).__setattr__(key, value)
  511. def __getattr__(self, item):
  512. if self.data is not None:
  513. if item in self.data:
  514. return self.data[item]
  515. if item in self.data_labels:
  516. return self.data_labels[item].default
  517. return super(Options, self).__getattribute__(item)
  518. def set(self, key, value):
  519. """sets an option and calls its onchange callback, returning True if the option changed and False otherwise"""
  520. oldval = self.data.get(key, None)
  521. if oldval == value:
  522. return False
  523. try:
  524. setattr(self, key, value)
  525. except RuntimeError:
  526. return False
  527. if self.data_labels[key].onchange is not None:
  528. try:
  529. self.data_labels[key].onchange()
  530. except Exception as e:
  531. errors.display(e, f"changing setting {key} to {value}")
  532. setattr(self, key, oldval)
  533. return False
  534. return True
  535. def get_default(self, key):
  536. """returns the default value for the key"""
  537. data_label = self.data_labels.get(key)
  538. if data_label is None:
  539. return None
  540. return data_label.default
  541. def save(self, filename):
  542. assert not cmd_opts.freeze_settings, "saving settings is disabled"
  543. with open(filename, "w", encoding="utf8") as file:
  544. json.dump(self.data, file, indent=4)
  545. def same_type(self, x, y):
  546. if x is None or y is None:
  547. return True
  548. type_x = self.typemap.get(type(x), type(x))
  549. type_y = self.typemap.get(type(y), type(y))
  550. return type_x == type_y
  551. def load(self, filename):
  552. with open(filename, "r", encoding="utf8") as file:
  553. self.data = json.load(file)
  554. # 1.1.1 quicksettings list migration
  555. if self.data.get('quicksettings') is not None and self.data.get('quicksettings_list') is None:
  556. self.data['quicksettings_list'] = [i.strip()
  557. for i in self.data.get('quicksettings').split(',')]
  558. # 1.4.0 ui_reorder
  559. if isinstance(self.data.get('ui_reorder'), str) and self.data.get('ui_reorder') and "ui_reorder_list" not in self.data:
  560. self.data['ui_reorder_list'] = [i.strip()
  561. for i in self.data.get('ui_reorder').split(',')]
  562. bad_settings = 0
  563. for k, v in self.data.items():
  564. info = self.data_labels.get(k, None)
  565. if info is not None and not self.same_type(info.default, v):
  566. print(
  567. f"Warning: bad setting value: {k}: {v} ({type(v).__name__}; expected {type(info.default).__name__})", file=sys.stderr)
  568. bad_settings += 1
  569. if bad_settings > 0:
  570. print(
  571. f"The program is likely to not work with bad settings.\nSettings file: {filename}\nEither fix the file, or delete it and restart.", file=sys.stderr)
  572. def onchange(self, key, func, call=True):
  573. item = self.data_labels.get(key)
  574. item.onchange = func
  575. if call:
  576. func()
  577. def dumpjson(self):
  578. d = {k: self.data.get(k, v.default)
  579. for k, v in self.data_labels.items()}
  580. d["_comments_before"] = {k: v.comment_before for k, v in self.data_labels.items(
  581. ) if v.comment_before is not None}
  582. d["_comments_after"] = {k: v.comment_after for k, v in self.data_labels.items(
  583. ) if v.comment_after is not None}
  584. return json.dumps(d)
  585. def add_option(self, key, info):
  586. self.data_labels[key] = info
  587. def reorder(self):
  588. """reorder settings so that all items related to section always go together"""
  589. section_ids = {}
  590. settings_items = self.data_labels.items()
  591. for _, item in settings_items:
  592. if item.section not in section_ids:
  593. section_ids[item.section] = len(section_ids)
  594. self.data_labels = dict(
  595. sorted(settings_items, key=lambda x: section_ids[x[1].section]))
  596. def cast_value(self, key, value):
  597. """casts an arbitrary to the same type as this setting's value with key
  598. Example: cast_value("eta_noise_seed_delta", "12") -> returns 12 (an int rather than str)
  599. """
  600. if value is None:
  601. return None
  602. default_value = self.data_labels[key].default
  603. if default_value is None:
  604. default_value = getattr(self, key, None)
  605. if default_value is None:
  606. return None
  607. expected_type = type(default_value)
  608. if expected_type == bool and value == "False":
  609. value = False
  610. else:
  611. value = expected_type(value)
  612. return value
  613. opts = Options()
  614. if os.path.exists(config_filename):
  615. opts.load(config_filename)
  616. class Shared(sys.modules[__name__].__class__):
  617. """
  618. this class is here to provide sd_model field as a property, so that it can be created and loaded on demand rather than
  619. at program startup.
  620. """
  621. sd_model_val = None
  622. @property
  623. def sd_model(self):
  624. import modules.sd_models
  625. return modules.sd_models.model_data.get_sd_model()
  626. @sd_model.setter
  627. def sd_model(self, value):
  628. import modules.sd_models
  629. modules.sd_models.model_data.set_sd_model(value)
  630. # this var is here just for IDE's type checking; it cannot be accessed because the class field above will be accessed instead
  631. sd_model: LatentDiffusion = None
  632. sys.modules[__name__].__class__ = Shared
  633. settings_components = None
  634. """assinged from ui.py, a mapping on setting names to gradio components repsponsible for those settings"""
  635. latent_upscale_default_mode = "Latent"
  636. latent_upscale_modes = {
  637. "Latent": {"mode": "bilinear", "antialias": False},
  638. "Latent (antialiased)": {"mode": "bilinear", "antialias": True},
  639. "Latent (bicubic)": {"mode": "bicubic", "antialias": False},
  640. "Latent (bicubic antialiased)": {"mode": "bicubic", "antialias": True},
  641. "Latent (nearest)": {"mode": "nearest", "antialias": False},
  642. "Latent (nearest-exact)": {"mode": "nearest-exact", "antialias": False},
  643. }
  644. sd_upscalers = []
  645. clip_model = None
  646. progress_print_out = sys.stdout
  647. gradio_theme = gr.themes.Base()
  648. def reload_gradio_theme(theme_name=None):
  649. global gradio_theme
  650. if not theme_name:
  651. theme_name = opts.gradio_theme
  652. default_theme_args = dict(
  653. font=["Source Sans Pro", 'ui-sans-serif', 'system-ui', 'sans-serif'],
  654. font_mono=['IBM Plex Mono', 'ui-monospace', 'Consolas', 'monospace'],
  655. )
  656. if theme_name == "Default":
  657. gradio_theme = gr.themes.Default(**default_theme_args)
  658. else:
  659. try:
  660. gradio_theme = gr.themes.ThemeClass.from_hub(theme_name)
  661. except Exception as e:
  662. errors.display(e, "changing gradio theme")
  663. gradio_theme = gr.themes.Default(**default_theme_args)
  664. class TotalTQDM:
  665. def __init__(self):
  666. self._tqdm = None
  667. def reset(self):
  668. self._tqdm = tqdm.tqdm(
  669. desc="Total progress",
  670. total=state.job_count * state.sampling_steps,
  671. position=1,
  672. file=progress_print_out
  673. )
  674. def update(self):
  675. if not opts.multiple_tqdm or cmd_opts.disable_console_progressbars:
  676. return
  677. if self._tqdm is None:
  678. self.reset()
  679. self._tqdm.update()
  680. def updateTotal(self, new_total):
  681. if not opts.multiple_tqdm or cmd_opts.disable_console_progressbars:
  682. return
  683. if self._tqdm is None:
  684. self.reset()
  685. self._tqdm.total = new_total
  686. def clear(self):
  687. if self._tqdm is not None:
  688. self._tqdm.refresh()
  689. self._tqdm.close()
  690. self._tqdm = None
  691. total_tqdm = TotalTQDM()
  692. mem_mon = modules.memmon.MemUsageMonitor("MemMon", device, opts)
  693. mem_mon.start()
  694. def natural_sort_key(s, regex=re.compile('([0-9]+)')):
  695. return [int(text) if text.isdigit() else text.lower() for text in regex.split(s)]
  696. def listfiles(dirname):
  697. filenames = [os.path.join(dirname, x) for x in sorted(
  698. os.listdir(dirname), key=natural_sort_key) if not x.startswith(".")]
  699. return [file for file in filenames if os.path.isfile(file)]
  700. def html_path(filename):
  701. return os.path.join(script_path, "html", filename)
  702. def html(filename):
  703. path = html_path(filename)
  704. if os.path.exists(path):
  705. with open(path, encoding="utf8") as file:
  706. return file.read()
  707. return ""
  708. def walk_files(path, allowed_extensions=None):
  709. if not os.path.exists(path):
  710. return
  711. if allowed_extensions is not None:
  712. allowed_extensions = set(allowed_extensions)
  713. items = list(os.walk(path, followlinks=True))
  714. items = sorted(items, key=lambda x: natural_sort_key(x[0]))
  715. for root, _, files in items:
  716. for filename in sorted(files, key=natural_sort_key):
  717. if allowed_extensions is not None:
  718. _, ext = os.path.splitext(filename)
  719. if ext not in allowed_extensions:
  720. continue
  721. if not opts.list_hidden_files and ("/." in root or "\\." in root):
  722. continue
  723. yield os.path.join(root, filename)