shared.py 46 KB

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