aboutsummaryrefslogtreecommitdiffstats
path: root/modules
AgeCommit message (Collapse)AuthorLines
2023-12-04Fixed unused import.CodeHatchling-1/+1
2023-12-04Fixed issue where batched inpainting (batch size > 1) wouldn't work because ↵CodeHatchling-18/+71
of mismatched tensor sizes. The 'already_decoded' decoded case should also be handled correctly (tested indirectly).
2023-12-04Applies a convert('RGBA') operation early to mimic previous behaviour.CodeHatchling-1/+1
2023-12-04Restored original formatting.CodeHatchling-25/+11
2023-12-04Re-introduce latent blending step from the vanilla inpainting procedure.CodeHatchling-0/+3
2023-12-04Fixed issue with whitespace, removed commented out code that was meant to be ↵CodeHatchling-14/+6
used as a reference.
2023-12-04Cleaned up code, moved main code contributions into soft_inpainting.pyCodeHatchling-150/+174
2023-12-04Enables the original functionality to be toggled on and off.CodeHatchling-29/+70
2023-12-04Organized the settings and UI of soft inpainting to allow for toggling the ↵CodeHatchling-29/+179
feature, and centralizes default values to reduce the amount of copy-pasta.
2023-12-03"Uncrop" the original denoised image for the composite step, fixing a ↵CodeHatchling-0/+4
"ValueError: Images do not match" *shudder*
2023-12-03Fixed a math mistake.CodeHatchling-1/+1
2023-12-02Merge remote-tracking branch 'origin/dev' into soft-inpaintingCodeHatchling-516/+1293
# Conflicts: # modules/processing.py
2023-12-02Rewrote latent_blend() to use in-place operations and to aggressively "del" ↵CodeHatchling-13/+28
references with the intention of minimizing allocations and easing garbage collection.
2023-12-02Blend masks are now produced afterward, based on an estimate of the visual ↵CodeHatchling-29/+90
difference between the original and modified latent images. This should remove ghosting and clipping artifacts from masks, while preserving the details of largely unchanged content.
2023-12-02Added utility functions related to processing masks.CodeHatchling-0/+191
2023-11-28Tweaked default values.CodeHatchling-4/+4
2023-11-28Tweaked UI sliders and labels.CodeHatchling-4/+4
2023-11-28Added slider for detail preservation strength, removed largely needless ↵CodeHatchling-20/+19
offset parameter, changed labels in UI and for saving to/pasting data from PNG files.
2023-11-28Added UI elements to control blending parameters.CodeHatchling-1/+62
2023-11-28Nerfs the aggressive post-processing step of overlaying the original image.CodeHatchling-3/+11
2023-11-28Implements "scheduling" for blending of the original latents and a latent ↵CodeHatchling-2/+59
blending formula that preserves details in blend transition areas.
2023-11-28Removed conflicting step that replaces the softly inpainted latents with a ↵CodeHatchling-3/+0
naive blend with the original latents.
2023-11-28Removed code which forces the inpainting mask to be 0 or 1. Now fractional ↵CodeHatchling-5/+1
values (e.g. 0.5) are accepted.
2023-11-26add categories to settingsAUTOMATIC1111-28/+96
2023-11-26json.dump(ensure_ascii=False)w-e-w-5/+5
improve json readability
2023-11-26compact prompt layout: preserve scroll when switching between lora tabsAUTOMATIC1111-1/+4
2023-11-26Merge pull request #14059 from akx/upruffAUTOMATIC1111-1/+1
Update Ruff to 0.1.6
2023-11-26do not save HTML explanations from options page to configAUTOMATIC1111-2/+2
2023-11-26Merge pull request #14084 from wfjsw/move-from-sysinfo-to-errorsAUTOMATIC1111-19/+17
Move exception_records related methods to errors.py
2023-11-26Merge branch 'hypertile-in-sample' into devAUTOMATIC1111-403/+13
2023-11-26Merge pull request #13948 from aria1th/hypertile-in-sampleAUTOMATIC1111-19/+404
support HyperTile optimization
2023-11-26rework hypertile into a built-in extensionAUTOMATIC1111-32/+13
2023-11-26move fileAUTOMATIC1111-371/+0
2023-11-24remove traceback in sysinfoJabasukuriputo Wang-1/+0
2023-11-24Move exception_records related methods to errors.pyJabasukuriputo Wang-18/+17
2023-11-22Simplify restart_sampler (suggested by ruff)Aarni Koskela-1/+1
2023-11-21fix [Bug]: (Dev Branch) Placing "Dimensions" first in "ui_reorder_list" ↵AUTOMATIC1111-6/+6
prevents start #14047
2023-11-20Merge pull request #14009 from ↵AUTOMATIC1111-4/+21
AUTOMATIC1111/Option-to-show-batch-img2img-results-in-UI Option to show batch img2img results in UI
2023-11-20Merge branch 'dag' into devAUTOMATIC1111-153/+148
2023-11-20Merge pull request #13944 from wfjsw/dagAUTOMATIC1111-24/+188
implementing script metadata and DAG sorting mechanism
2023-11-20rework extensions metadata: use custom sorter that doesn't mess the order as ↵AUTOMATIC1111-153/+148
much and ignores cyclic errors, use classes with named fields instead of dictionaries, eliminate some duplicated code
2023-11-20save sysinfo as .jsonw-e-w-2/+2
GitHub now allows uploading of .json files in issues
2023-11-19Option to show batch img2img results in UIw-e-w-4/+21
shared.opts.img2img_batch_show_results_limit limit the number of images return to the UI for batch img2img default limit 32 0 no images are shown -1 unlimited, all images are shown
2023-11-19use metadata.ini for meta filenamewfjsw-6/+6
2023-11-19Merge pull request #13931 from AUTOMATIC1111/style-hotkeysAUTOMATIC1111-2/+2
Enable prompt hotkeys in style editor
2023-11-19Merge pull request #13014 from ↵AUTOMATIC1111-6/+25
AUTOMATIC1111/thread-safe-extranetworks-list_items thread safe extra network list_items
2023-11-19Merge pull request #13968 from kaalibro/extranetworks-path-sortingAUTOMATIC1111-2/+3
Adds 'Path' sorting for Extra network cards
2023-11-19Merge pull request #13977 from AUTOMATIC1111/hotfix-postprocessing-state-endAUTOMATIC1111-1/+1
Hotfix: call shared.state.end() after postprocessing done
2023-11-19Merge pull request #13996 from Luxter77/patch-1AUTOMATIC1111-1/+26
Adds tqdm handler to logging_config.py for progress bar integration
2023-11-19Merge pull request #13826 from ezxzeng/ui_mobile_optimizationsAUTOMATIC1111-2/+13
added accordion settings options