diff --git a/CHANGELOG.md b/CHANGELOG.md index 27b488b04..25ae77ddf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log for SD.Next -## Update for 06/11/2023 +## Update for 06/12/2023 - updated ui labels and hints to improve clarity and provide some extra info this is 1st stage of the process, more to come... diff --git a/html/locale_en.json b/html/locale_en.json index e89f94ec9..247ec959f 100644 --- a/html/locale_en.json +++ b/html/locale_en.json @@ -73,8 +73,8 @@ {"id":"","label":"Upscale by","localized":"","hint":"Adjusts the size of the image by multiplying the original width and height by the selected value. Ignored if either Resize width to or Resize height to are non-zero"}, {"id":"","label":"Resize width to","localized":"","hint":"Resizes image to this width. If 0, width is inferred from either of two nearby sliders"}, {"id":"","label":"Resize height to","localized":"","hint":"Resizes image to this height. If 0, height is inferred from either of two nearby sliders"}, - {"id":"","label":"Width","localized":"","hint":"Width"}, - {"id":"","label":"Height","localized":"","hint":"Height"}, + {"id":"","label":"Width","localized":"","hint":"Image width"}, + {"id":"","label":"Height","localized":"","hint":"Image height"}, {"id":"","label":"Batch count","localized":"","hint":"How many batches of images to create (has no impact on generation performance or VRAM usage)"}, {"id":"","label":"Batch size","localized":"","hint":"How many image to create in a single batch (increases generation performance at cost of higher VRAM usage)"}, {"id":"","label":"CFG Scale","localized":"","hint":"Classifier Free Guidance scale: how strongly the image should conform to prompt. Lower values produce more creative results, higher values make it follow the prompt more strictly; recommended values between 5-10"}, @@ -258,11 +258,11 @@ "settings": [ {"id":"","label":"Number of cached model checkpoints","localized":"","hint":"The amount of models to store in RAM for quick access"}, {"id":"","label":"Number of cached VAE checkpoints","localized":"","hint":"The amount of VAE files to store in RAM for quick access"}, - {"id":"","label":"Select VAE","localized":"","hint":""}, - {"id":"","label":"Enable splitting of hires batch processing","localized":"","hint":""}, + {"id":"","label":"Select VAE","localized":"","hint":"VAE helps with fine details in the final image and may also alter colors"}, + {"id":"","label":"Enable splitting of hires batch processing","localized":"","hint":"Reduces VRAM usage when using hires fix on batches of images"}, {"id":"","label":"When loading models attempt stream loading optimized for slow or network storage","localized":"","hint":""}, {"id":"","label":"When loading models attempt to reuse previous model dictionary","localized":"","hint":""}, - {"id":"","label":"Disable cross-attention layer optimization","localized":"","hint":""}, + {"id":"","label":"Disable cross-attention layer optimization","localized":"","hint":"Disable the all cross-attention optimization. May result in higher VRAM usage and longer generation times"}, {"id":"","label":"xFormers","localized":"","hint":"Memory optimization. Non-Deterministic (different results each time)"}, {"id":"","label":"Scaled-Dot-Product","localized":"","hint":"Memory optimization. Non-Deterministic unless SDP memory attention is disabled."}, {"id":"","label":"Doggettx's","localized":"","hint":""}, @@ -290,9 +290,9 @@ {"id":"","label":"FP32","localized":"","hint":""}, {"id":"","label":"FP16","localized":"","hint":""}, {"id":"","label":"BF16","localized":"","hint":""}, - {"id":"","label":"Use full precision for model (--no-half)","localized":"","hint":""}, - {"id":"","label":"Use full precision for VAE (--no-half-vae)","localized":"","hint":""}, - {"id":"","label":"Enable upcast sampling","localized":"","hint":""}, + {"id":"","label":"Use full precision for model (--no-half)","localized":"","hint":"Uses FP32 for the model. May produce better results while using more VRAM and slower generation"}, + {"id":"","label":"Use full precision for VAE (--no-half-vae)","localized":"","hint":"Uses FP32 for the VAE. May produce better results while using more VRAM and slower generation"}, + {"id":"","label":"Enable upcast sampling","localized":"","hint":"Usually produces similar results to --no-half with better performance while using less memory"}, {"id":"","label":"Enable upcast cross attention layer","localized":"","hint":""}, {"id":"","label":"Disable NaN check in produced images/latent spaces","localized":"","hint":""}, {"id":"","label":"Attempt to roll back VAE when produced NaN values, requires NaN check (experimental)","localized":"","hint":""}, @@ -337,9 +337,9 @@ {"id":"","label":"Add extended info (seed, prompt) to filename when saving grid","localized":"","hint":""}, {"id":"","label":"Do not save grids consisting of one picture","localized":"","hint":""}, {"id":"","label":"Prevent empty spots in grid (when set to autodetect)","localized":"","hint":""}, - {"id":"","label":"Grid row count; use -1 for autodetect and 0 for it to be same as batch size","localized":"","hint":""}, + {"id":"","label":"Grid row count","localized":"","hint":"Use -1 for autodetect and 0 for it to be same as batch size"}, {"id":"","label":"Create a text file next to every image with generation parameters","localized":"","hint":""}, - {"id":"","label":"Create a JSON log file with image information for each saved image","localized":"","hint":""}, + {"id":"","label":"Create a JSON log file for each saved image","localized":"","hint":"Save image information to a JSON file"}, {"id":"","label":"Save a copy of image before doing face restoration","localized":"","hint":""}, {"id":"","label":"Save a copy of image before applying highres fix","localized":"","hint":""}, {"id":"","label":"Save a copy of image before applying color correction to img2img results","localized":"","hint":""}, diff --git a/modules/shared.py b/modules/shared.py index b35bab804..b53f2c5f3 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -361,9 +361,9 @@ options_templates.update(options_section(('saving-images', "Image Options"), { "grid_extended_filename": OptionInfo(True, "Add extended info (seed, prompt) to filename when saving grid"), "grid_only_if_multiple": OptionInfo(True, "Do not save grids consisting of one picture"), "grid_prevent_empty_spots": OptionInfo(True, "Prevent empty spots in grid (when set to autodetect)"), - "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}), + "n_rows": OptionInfo(-1, "Grid row count", gr.Slider, {"minimum": -1, "maximum": 16, "step": 1}), "save_txt": OptionInfo(False, "Create a text file next to every image with generation parameters"), - "save_log_fn": OptionInfo("", "Create a JSON log file with image information for each saved image", component_args=hide_dirs), + "save_log_fn": OptionInfo("", "Create a JSON log file for each saved image", component_args=hide_dirs), "save_images_before_face_restoration": OptionInfo(False, "Save a copy of image before doing face restoration"), "save_images_before_highres_fix": OptionInfo(False, "Save a copy of image before applying highres fix"), "save_images_before_color_correction": OptionInfo(False, "Save a copy of image before applying color correction to img2img results"),