aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorberkybear <berk.erkul@gmail.com>2022-09-18 14:37:31 -0700
committerAUTOMATIC1111 <16777216c@gmail.com>2022-09-19 00:40:30 +0300
commit21244f50c45968a58abfa7cf486f004a3a4b2890 (patch)
treedeeabcfc7ca92edb6dba09da1121711cc0e8819a
parent7ae3dc286623771c2925d8d91dbca736920757e8 (diff)
fix some typos and remove unused import
-rw-r--r--modules/shared.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/modules/shared.py b/modules/shared.py
index ac5bf466..88879a64 100644
--- a/modules/shared.py
+++ b/modules/shared.py
@@ -4,7 +4,6 @@ import json
import os
import gradio as gr
-import torch
import tqdm
import modules.artists
@@ -38,7 +37,7 @@ parser.add_argument("--share", action='store_true', help="use share=True for gra
parser.add_argument("--esrgan-models-path", type=str, help="path to directory with ESRGAN models", default=os.path.join(script_path, 'ESRGAN'))
parser.add_argument("--opt-split-attention", action='store_true', help="does not do anything")
parser.add_argument("--disable-opt-split-attention", action='store_true', help="disable an optimization that reduces vram usage by a lot")
-parser.add_argument("--opt-split-attention-v1", action='store_true', help="enable older version of split attention optimization that does not consaumes all the VRAM it can find")
+parser.add_argument("--opt-split-attention-v1", action='store_true', help="enable older version of split attention optimization that does not consumes all the VRAM it can find")
parser.add_argument("--listen", action='store_true', help="launch gradio with 0.0.0.0 as server name, allowing to respond to network requests")
parser.add_argument("--port", type=int, help="launch gradio with given server port, you need root/admin rights for ports < 1024, defaults to 7860 if available", default=None)
parser.add_argument("--show-negative-prompt", action='store_true', help="does not do anything", default=False)
@@ -135,7 +134,7 @@ class Options:
"enable_pnginfo": OptionInfo(True, "Save text information about generation parameters as chunks to png files"),
"add_model_hash_to_info": OptionInfo(False, "Add model hash to generation information"),
"img2img_color_correction": OptionInfo(False, "Apply color correction to img2img results to match original colors."),
- "img2img_fix_steps": OptionInfo(False, "With img2img, do exactly the amount of steps the slider specifies (normaly you'd do less with less denoising)."),
+ "img2img_fix_steps": OptionInfo(False, "With img2img, do exactly the amount of steps the slider specifies (normally you'd do less with less denoising)."),
"enable_quantization": OptionInfo(False, "Enable quantization in K samplers for sharper and cleaner results. This may change existing seeds. Requires restart to apply."),
"font": OptionInfo("", "Font for image grids that have text"),
"enable_emphasis": OptionInfo(True, "Use (text) to make model pay more attention to text and [text] to make it pay less attention"),