diff --git a/CHANGELOG.md b/CHANGELOG.md index ff378a84d..2f0ca2728 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -262,7 +262,7 @@ Originating as a service-pack update with a handful of fixes and quality-of-life - **First-Last-Frame** (FLF2V) support for Wan-2.2-I2V and LTX - add option: *compute settings -> force dtype on load* use to force model components to override loading with desired dtype regardless of component config - - add option: *backend settings -> force sychronize* + - add option: *backend settings -> force synchronize* enabled by default, disable to speed up processing but may cause image corruptions, especially during preview - add option: *model loading -> attempt to load incomplete model* disabled by default, attempts to load model by mapping it to known model even if some components are missing @@ -399,7 +399,7 @@ And we have a new modular LoRA loader, new native Transformers loader and improv - **Samplers** reorganized into clear sampler categories - **Gallery** add clear cache button to folder menu - **Finetunes** improved support for loading model finetunes - this also includes detecting compatibility and falbacks + this also includes detecting compatibility and fallbacks - **UV** much updated `--uv` support for fast installs now also supports global `uv` if present in the system - **Attention Dispatcher** new attention backends dispatcher diff --git a/modules/caption/toriigate.py b/modules/caption/toriigate.py index 52cd05d70..e58ea4002 100644 --- a/modules/caption/toriigate.py +++ b/modules/caption/toriigate.py @@ -57,7 +57,7 @@ Give some info about objects on background, describe the location (if seen). The /or if there are no characters "main content" : "long and detailed description of main content of image that might be the main focus if characters are missing", / -"background" : "Detailed descritpion of background and it's content", +"background" : "Detailed description of background and it's content", "image_effects" : "If there are some visual effects like fisheye distortion, chromatic aberration, glitches, messy drawing or anything else - write about it. If it's just a general anime art - omit this field." "texts" : "Speech bubbles, bars, marks, signs etc. with texts if present, else None", "atmosphere" : "...", @@ -72,7 +72,7 @@ In special cases you can add extra keys. You need to think here and compare peoples/creatures that you see on the picture with given popular tags, or descriptions, or your memories for each characters to determine who is who. If no characters are listed in input - just write here "No named characters" # 2. Key details -Here you need to write about the key details on image, prefere using regular text. +Here you need to write about the key details on image, prefer using regular text. # 3. Structured description ## General Write about general composition, content of image, background and all things that are not related to characters directly. @@ -85,13 +85,13 @@ Mention image effect, style, camera angle In general stick to shorter descriptions. """, -"json_comic": """Use json-style caption to describe to comin, stick to following structure: +"json_comic": """Use json-style caption to describe the comic, stick to following structure: { -"comic_format": "menation the format, for example Comic of N frames", +"comic_format": "mention the format, for example Comic of N frames", "1st_frame": "Main description of the content for fist frame", "2nd_frame": "Same for the second", ... -"Nth_ftame": "...", +"Nth_frame": "...", "character_1": "Describe the characters in comic", ... "character_N": "Separate description for each", @@ -105,15 +105,15 @@ You need to think here and compare peoples/creatures that you see on the picture # 2. Key details Here you need to determine key details on comic and list them. # 3. Comic format -In this section come up with the description of comic format, how many pages there are, horisontal/vertical orientation and other things. Optionally you can list main characters here. +In this section come up with the description of comic format, how many pages there are, horizontal/vertical orientation and other things. Optionally you can list main characters here. # 4. Details for each frame ## 4.1 Frame 1 (position) -Description for each frame, includding characters, objects, interactions, texts/speech bubbles and other things. Be detailed but not overdoo. +Description for each frame, including characters, objects, interactions, texts/speech bubbles and other things. Be detailed but not overdoo. ## 4.2 Frame 2 (position) Same for each frame. ... # 5. Extra comment -Here you should write general desciption and some other info about the image. +Here you should write general description and some other info about the image. """, "min_structured_json": """ @@ -127,7 +127,7 @@ Use json-style caption for given image with following structure: "texts" : "Speech bubbles, bars, marks, signs etc. with texts if present, else None", "watermarks" : "If present", } -Prefere shorter description and tags. +Prefer shorter description and tags. """, "chroma-style": """Your task is to describe the picture in very detail using a structure of 4 parts. ### 1. Regular Summary: diff --git a/pyproject.toml b/pyproject.toml index e7094dfbc..2282f59b3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -446,6 +446,6 @@ call-top-callable = "ignore" [tool.codespell] skip = "./venv, ./.git, __pycache__, ./tmp, ./extensions-builtin, ./configs, ./models, ./outputs, *.txt, *.json, *.yaml, *.map, *.mjs, *.log" ignore-words-list = [ - "te", "nd", "TE", "padd", "inpt", "thw", "thre", "tipe", "ACI", "Foto", "CNA", "LAMA", "lama", "LaMa", "SOM", "trU", "PatchIn", "AllTime", + "te", "nd", "TE", "padd", "inpt", "thw", "thre", "tipe", "ACI", "Foto", "CNA", "LAMA", "lama", "LaMa", "SOM", "COO", "trU", "PatchIn", "AllTime", "youre", "thats", "dont", "whats", "havent", "isnt", "doesnt", "cant", "theres", "receipe", "splitted", "spacial", "patchs", ] diff --git a/ui/progressBar.ts b/ui/progressBar.ts index 722de863c..b87a706b6 100644 --- a/ui/progressBar.ts +++ b/ui/progressBar.ts @@ -9,7 +9,7 @@ const startTimeout = 5; export function setRefreshInterval() { refreshInterval = window.opts.live_preview_refresh_period || 500; - log('refreshInterval', { visibile: document.visibilityState, interval: refreshInterval }); + log('refreshInterval', { visible: document.visibilityState, interval: refreshInterval }); document.addEventListener('visibilitychange', () => { if (window.opts.live_preview_require_focus !== false && document.hidden) refreshInterval = Math.max(2500, window.opts.live_preview_refresh_period || 1000); else refreshInterval = window.opts.live_preview_refresh_period || 1000;