aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
Commit message (Collapse)AuthorAgeFilesLines
...
* | Merge pull request #8799 from JaRail/masterAUTOMATIC11112023-03-251-25/+70
|\ \ | | | | | | Loopback Script Updates
| * | Fix "masked content" in loopback scriptJames Railton2023-03-231-0/+4
| | | | | | | | | | | | | | | | | | The loopback script did not set masked content to original after first loop. So each loop would apply a fill, or latent mask. This would essentially reset progress each loop. The desired behavior is to use the mask for the first loop, then continue to iterate on the results of the previous loop.
| * | Loopback Script UpdatesJames Railton2023-03-221-26/+67
| |/ | | | | | | | | | | | | | | - Improved user experience. You can now pick the denoising strength of the final loop and one of three curves. Previously you picked a multiplier such as 0.98 or 1.03 to define the change to the denoising strength for each loop. You had to do a ton of math in your head to visualize what was happening. The new UX makes it very easy to understand what's going on and tweak. - For batch sizes over 1, intermediate images no longer returned. For a batch size of 1, intermediate images from each loop will continue to be returned. When more than 1 image is returned, a grid will also be generated. Previously for larger jobs, you'd get back a mess of many grids and potentially hundreds of images with no organization. To make large jobs usable, only final images are returned. - Added support for skipping current image. Fixed interrupt to cleanly end and return images. Previously these would throw. - Improved tooltip descriptions - Fix some edge cases
* | Merge pull request #8801 from EllangoK/xyz-valuesAUTOMATIC11112023-03-251-5/+16
|\ \ | | | | | | Fixes xyz extra_generation_params not being saved (previously worked)
| * | fixes xyz extra_generation_params not being savedEllangoK2023-03-221-5/+16
| |/
* / initial gradio 3.22 supportAUTOMATIC2023-03-251-16/+18
|/
* add face restoration option to xyz_gridhigh_byte2023-03-121-0/+15
|
* emergency fix for xyz plotAUTOMATIC2023-03-111-1/+0
|
* Merge pull request #8175 from vladmandic/image_sizeAUTOMATIC11112023-03-111-0/+5
|\ | | | | adds checks for resulting image size to avoid memory issues
| * use assert instead of returnVladimir Mandic2023-03-111-3/+2
| |
| * fix silly math errorVladimir Mandic2023-03-101-1/+1
| |
| * add check for resulting image sizeVladimir Mandic2023-02-271-0/+6
| |
* | Merge pull request #7954 from EllangoK/xyz-newlineAUTOMATIC11112023-03-111-1/+1
|\ \ | | | | | | Fixes newlines within checkpoints being detected as its own entry
| * | fixes newline being detected as its own entryEllangoK2023-02-201-1/+1
| |/
* | Merge pull request #8021 from 112292454/masterAUTOMATIC11112023-03-111-1/+1
|\ \ | | | | | | continue fix prompt_matrix.py when high-res
| * | Update prompt_matrix.py1122924542023-02-221-1/+1
| | | | | | | | | 1
| * | Update prompt_matrix.py1122924542023-02-221-1/+1
| |/ | | | | | | this file last commit fixed common situation when using both prompts matrix and high-res。 but if we just open matrix option,but not use ‘|’,we will only get one pic,and `processed.images[0].width, processed.images[1].height` will cause a index out of bounds exception
* | Merge pull request #8326 from DejitaruJin/xyz-order-fixAUTOMATIC11112023-03-111-50/+77
|\ \ | | | | | | Xyz order fix
| * | Short-circuit error handlingDejitaruJin2023-03-051-1/+5
| | |
| * | Add files via uploadDejitaruJin2023-03-041-4/+4
| | |
| * | Add files via uploadDejitaruJin2023-03-041-3/+6
| | |
| * | Add files via uploadDejitaruJin2023-03-041-1/+8
| | |
| * | Fix display and save order for X/Y/Z Grid scriptDejitaruJin2023-03-041-60/+73
| |/
* | Merge remote-tracking branch 'origin/master' into unipcspace-nuko2023-03-113-6/+26
|\|
| * possible fix for #7804AUTOMATIC2023-02-191-0/+3
| |
| * Merge pull request #7571 from mezotaken/int_loopAUTOMATIC11112023-02-191-2/+12
| |\ | | | | | | Optionally append interrogated prompt in loopback script
| | * Optionally append interrogated prompt in loopback scriptVladimir Repin2023-02-051-2/+12
| | |
| * | Merge branch 'master' into 6866-fix-hires-prompt-matrixAUTOMATIC11112023-02-193-32/+72
| |\ \
| | * \ Merge pull request #7568 from Klace/XYZ-ImageCFGAUTOMATIC11112023-02-191-0/+1
| | |\ \ | | | | | | | | | | Add Image CFG Scale to XYZ Grid
| | | * | Img2Img OnlyKyle2023-02-051-1/+1
| | | | | | | | | | | | | | | | | | | | Will still show up as an option with regular img2img models, but outputs no changes.
| | | * | Add Image CFG Scale to XYZ GridKyle2023-02-051-0/+1
| | | |/
| | * | fix incorrectly named args for gr.Slider in prompt matrix and xyz gridAUTOMATIC2023-02-192-2/+2
| | | |
| | * | Expose xyz_grid's values to other extensions for #7721AUTOMATIC2023-02-191-0/+6
| | |/
| * | Use the real images size, not the processFrancesco Manzali2023-02-011-2/+2
| | | | | | | | | | | | | | | - Use the width/height of the first image in processed.images - No more need for rounding in prompt_matrix
| * | Fix prompt matrix #rows/#cols when using hiresFrancesco Manzali2023-01-311-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - images.draw_prompt_matrix() should be called with the final width/height of the generated images, after upscaling. Otherwise, the number of rows/cols computed in images.draw_grid_annotations will increase by the upscaling factor. - Round the number of cols/rows in images.draw_grid_annotations, since the final images width may be a bit less than the required hr_upscale_to_x/y
* | | Add UniPC sampler settingsspace-nuko2023-02-101-0/+7
| |/ |/|
* | adds grid margins to xyz plot and prompt matrixEllangoK2023-02-052-24/+25
| |
* | Fix img2imgalt after samplers separationVladimir Repin2023-02-031-3/+3
| |
* | Merge pull request #7334 from EllangoK/masterAUTOMATIC11112023-02-011-8/+13
|\ \ | | | | | | X/Y/Z plot now saves sub grids if opts.grid_save and honors draw_legend
| * | xyz plot now saves sub grids if opts.grid_saveEllangoK2023-01-281-8/+13
| |/ | | | | | | also fixed no draw legend for z grid
* | Cleanup changes made by formatterYevhenii Hurin2023-01-291-17/+8
| |
* | Compact options UI for Prompt MatrixYevhenii Hurin2023-01-291-10/+17
| |
* | Add delimiter selector to the Prompt Matrix scriptYevhenii Hurin2023-01-291-15/+34
| |
* | Prompt selector for Prompt Matrix scriptYevhenii Hurin2023-01-291-7/+17
|/
* Merge pull request #7231 from EllangoK/masterAUTOMATIC11112023-01-281-0/+10
|\ | | | | Fixes X/Y/Z Plot parameters not being restored from images
| * adds components to infotext_fieldsEllangoK2023-01-261-0/+10
| | | | | | | | allows for loading script params
* | changes remaining text from X/Y -> X/Y/ZEllangoK2023-01-271-1/+1
| |
* | deepcopy pc.styles, allows for multiple style axisEllangoK2023-01-271-1/+2
| |
* | add an option to enable sections from extras tab in txt2img/img2imgAUTOMATIC2023-01-261-0/+25
|/ | | | fix some style inconsistenices
* swaps xyz axes internally if one costs moreEllangoK2023-01-241-12/+52
|