aboutsummaryrefslogtreecommitdiffstats
path: root/modules
AgeCommit message (Collapse)AuthorLines
2022-10-14Merge branch 'AUTOMATIC1111:master' into master不会画画的中医不是好程序员-12/+28
2022-10-14add an ability to merge three checkpointsAUTOMATIC-12/+28
2022-10-14Merge branch 'master' of https://github.com/yfszzx/stable-diffusion-webui-plusyfszzx-32/+96
2022-10-14fix deep nesting directories problemyfszzx-34/+42
2022-10-14Merge branch 'AUTOMATIC1111:master' into master不会画画的中医不是好程序员-32/+96
2022-10-14images history fix all known bugyfszzx-24/+27
2022-10-13emergency fix for broken send to buttonsAUTOMATIC-1/+1
2022-10-13add hypernetwork multipliersAUTOMATIC-3/+15
2022-10-13options to refresh list of models and hypernetworksAUTOMATIC-8/+34
2022-10-13add option to change what's shown in quicksettings barAUTOMATIC-9/+11
2022-10-13Add learn_rate to csv and removed a left-over debug statementMelan-5/+6
2022-10-13Revert "fix prompt in log.csv"Greg Fuller-6/+2
This reverts commit e4b5d1696429ab78dae9779420ce6ec4cd9c5f67.
2022-10-13fix prompt in log.csvGreg Fuller-2/+6
2022-10-13Fix metadata contentsGreg Fuller-4/+1
2022-10-13Fix save errorGreg Fuller-1/+4
2022-10-13update #2336 to prevent reading params.txt when --hide-ui-dir-config option ↵AUTOMATIC-1/+2
is enabled (for servers, since this will let some users access others' params)
2022-10-13Restore last generation paramsTrung Ngo-0/+12
2022-10-13Merge branch 'master' of https://github.com/HunterVacui/stable-diffusion-webuiGreg Fuller-1/+1
2022-10-13Merge pull request #2324 from HunterVacui/interrogate_include_ranks_in_outputAUTOMATIC1111-14/+24
Interrogate: add option to include ranks in output
2022-10-13remove interrogate option I accidentally deletedAUTOMATIC-0/+1
2022-10-13Merge branch 'AUTOMATIC1111:master' into master不会画画的中医不是好程序员-133/+197
2022-10-13images history delete a number of images consecutively nextyfszzx-20/+24
2022-10-12Add drag/drop param loading.d8ahazard-1/+49
Drop an image or generational text onto the prompt bar, it loads the info for parsing.
2022-10-12Save a csv containing the loss while trainingMelan-2/+35
2022-10-12[3/?] [wip] fix incorrect variable referenceGreg Fuller-1/+1
still needs testing
2022-10-12[2/?] [wip] ignore OPT_INCLUDE_RANKS for training filenamesGreg Fuller-2/+5
2022-10-12[1/?] [wip] Reintroduce opts.interrogate_return_ranksGreg Fuller-11/+14
looks functionally correct, needs testing Needs particular testing care around whether the colon usage (:) will break anything in whatever new use cases were introduced by https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/2143
2022-10-12Merge remote-tracking branch 'upstream/master' into ↵Greg Fuller-169/+624
interrogate_include_ranks_in_output
2022-10-12deepbooru: added option to use spaces or underscoresAUTOMATIC-71/+95
deepbooru: added option to quote (\) in tags deepbooru/BLIP: write caption to file instead of image filename deepbooru/BLIP: now possible to use both for captions deepbooru: process is stopped even if an exception occurs
2022-10-12train: change filename processing to be more simple and configurableAUTOMATIC-62/+102
train: make it possible to make text files with prompts train: rework scheduler so that there's less repeating code in textual inversion and hypernets train: move epochs setting to options
2022-10-13Merge branch 'master' of https://github.com/yfszzx/stable-diffusion-webui-plusyfszzx-2/+265
2022-10-13Merge branch 'AUTOMATIC1111:master' into master不会画画的中医不是好程序员-2/+265
2022-10-13images history improvementyfszzx-2/+2
2022-10-13images history improvementyfszzx-24/+23
2022-10-12testyfszzx-111/+458
2022-10-12Merge pull request #2037 from AUTOMATIC1111/embed-embeddings-in-imagesAUTOMATIC1111-2/+265
Add option to store TI embeddings in png chunks, and load from same.
2022-10-12Merge branch 'master' of https://github.com/yfszzx/stable-diffusion-webui-plusyfszzx-26/+58
2022-10-12images history improvementyfszzx-24/+43
2022-10-12formattingDepFA-11/+11
2022-10-12formattingDepFA-79/+91
2022-10-12fix iterator bug for #2295AUTOMATIC-4/+4
2022-10-12Account when lines are mismatchedhentailord85ez-1/+11
2022-10-12change textual inversion tab to trainAUTOMATIC-14/+10
remake train interface to use tabs
2022-10-12xy_grid: Find hypernetwork by closest nameMilly-0/+11
2022-10-12Merge branch 'master' into feature/scale_toAUTOMATIC1111-259/+2003
2022-10-12Ensure the directory exists before saving to itbrkirch-0/+2
The directory for the images saved with the Save button may still not exist, so it needs to be created prior to opening the log.csv file.
2022-10-12just add the deepdanbooru settings unconditionallyAUTOMATIC-9/+4
2022-10-12Merge remote-tracking branch 'origin/steve3d'AUTOMATIC-1/+1
2022-10-12Merge pull request #2143 from JC-Array/deepdanbooru_pre_processAUTOMATIC1111-27/+114
deepbooru tags for textual inversion preproccessing
2022-10-12Truncate error text to fix service lockup / stallGreg Fuller-1/+8
What: * Update wrap_gradio_call to add a limit to the maximum amount of text output Why: * wrap_gradio_call currently prints out a list of the arguments provided to the failing function. * if that function is save_image, this causes the entire image to be printed to stderr * If the image is large, this can cause the service to lock up while attempting to print all the text * It is easy to generate large images using the x/y plot script * it is easy to encounter image save exceptions, including if the output directory does not exist / cannot be written to, or if the file is too big * The huge amount of log spam is confusing and not particularly helpful