aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/xy_grid.py
AgeCommit message (Collapse)AuthorLines
2022-10-17Safeguard setting restore logic against exceptionsGreg Fuller-22/+26
also useful for keeping settings cache and restore logic together, and nice for code reuse (other third party scripts can import this class)
2022-10-14Fix XY-plot steps if highres fix is enabledspace-nuko-1/+4
2022-10-14remove the other DenoisingAUTOMATIC-1/+0
2022-10-14[xy_grid.py] add option denoising_strengthNaeaeaeaeae-0/+1
2022-10-14regression in xy_grid Var. seed fixingRnDMonkey-1/+1
2022-10-13add hypernetwork multipliersAUTOMATIC-1/+8
2022-10-13Fix metadata contentsGreg Fuller-18/+34
2022-10-13draw_xy_grid provides the option to also return lone imagesGreg Fuller-5/+12
2022-10-12xy_grid: Refactor confirm functionsMilly-34/+39
2022-10-12xy_grid: Confirm that hypernetwork options are valid before startingMilly-0/+12
2022-10-12xy_grid: Find hypernetwork by closest nameMilly-1/+5
2022-10-11change default for XY plot's Y to Nothing.AUTOMATIC-1/+1
2022-10-11rename hypernetwork dir to hypernetworks to prevent clash with an old ↵AUTOMATIC-1/+1
filename that people who use zip instead of git clone will have
2022-10-11Merge remote-tracking branch 'origin/master'AUTOMATIC-0/+3
2022-10-11fixes related to mergeAUTOMATIC-1/+2
2022-10-11add incorrect start word guard to xy_grid (#2259)DepFA-7/+2
2022-10-11revert sr warningDepFA-1/+2
2022-10-11Error if prompt missing SR token to prevent mis-gens (#2209)aperullo-0/+7
2022-10-10remove batch size restriction from X/Y plotAUTOMATIC-1/+4
2022-10-09Clip skip variable name change breaks x/y plot script. This fixes thatFampai-3/+3
2022-10-09added clip skip to XY plotAUTOMATIC-0/+8
2022-10-09fix broken samplers in XY plotAUTOMATIC-0/+1
2022-10-09fix btoken hypernetworks in XY plotAUTOMATIC-6/+3
2022-10-09Don't change the seed initially if "Keep -1 for seeds" is checkedBrendan Byrd-1/+3
Fixes #1049
2022-10-09Confirm that options are valid before starting Jesse Williams-6/+15
When using the 'Sampler' or 'Checkpoint' options, if one of the entered names has a typo, an error will only be thrown once the `draw_xy_grid` loop reaches that name. This can waste a lot of time for large grids with a typo near the end of a list, since the script needs to start over and re-generate any earlier images to finish making the grid. Also fixing typo in variable name in `draw_xy_grid`.
2022-10-09Fix incorrect sampler name in outputfrostydad-7/+9
2022-10-07added support for hypernetworks (???)AUTOMATIC-0/+10
2022-10-06revert back to using list comprehension rather than list and mapAUTOMATIC-1/+1
2022-10-06Update xy_grid.pyDepFA-1/+1
split vals not 's' from tests
2022-10-06strip() split comma delimited linesDepFA-1/+1
2022-10-06use csv.readerDepFA-5/+4
2022-10-06Allow escaping of commas in xy_gridDepFA-1/+2
2022-10-04add hint, refactor code for #1607AUTOMATIC-17/+18
2022-10-04XY plot prompt order simplify logicDoTheSneedful-9/+15
2022-10-04Fix token ordering in prompt order XY plotDoTheSneedful-8/+5
2022-10-04Add a prompt order option to XY plot scriptDoTheSneedful-2/+38
2022-09-30use closest match checkpoint methodDepFA-5/+2
2022-09-29scripts/xy_grid: Handle edge-case with non-empty axis valuesNick Renieris-0/+3
Fixes bug where if Type is Nothing and axis values are filled out (from ie. previously using another Type), it will still needlessly run it N times (with identical results).
2022-09-28added support for automatically installing latest k-diffusionAUTOMATIC-6/+6
added eta parameter to parameters output for generated images split eta settings into ancestral and ddim (because they have different default values)
2022-09-27Add DDIM Eta to txt2img in xy_gridDepFA-2/+2
2022-09-27Add extra sampler params to xy_gridDepFA-1/+6
2022-09-27xy_grid - Show blank cells when grid is incompleteDepFA-1/+5
2022-09-24Reformat some changes from the previous commit.AUTOMATIC-11/+8
2022-09-24Fix to XY_Grid script console progress bar and other progress bar ↵RnDMonkey-4/+28
improvements (#890) Fix to XY_Grid script console progress bar and other progress bar improvements #890
2022-09-17process all values for x/y plot right away to error out if any are bad ↵AUTOMATIC-5/+5
before any processing begins
2022-09-17X/Y plot support for switching checkpoints.AUTOMATIC-0/+15
2022-09-14add draw legend toggleDepFA-6/+10
2022-09-14Add square bracket range+count syntaxDepFA-0/+17
2022-09-14 Overall progress incorrect with X/Y plot and batch count > 1 #441AUTOMATIC-3/+3
2022-09-14prevent extras from saving in dirJustAnOkapi-1/+1
Extras have none of the vars used in dir names, so they cant be saved into dirs. +grid code cleanup