aboutsummaryrefslogtreecommitdiffstats
path: root/modules/shared.py
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Added ability to ignore last n layers in FrozenCLIPEmbedderFampai2022-10-081-0/+1
| |/ |/|
* | add --force-enable-xformers option and also add messages to console ↵AUTOMATIC2022-10-081-0/+1
|/ | | | regarding cross attention optimizations
* simplify xfrmers options: --xformers to enable and that's itAUTOMATIC2022-10-081-1/+1
|
* Merge pull request #1851 from C43H66N12O12S2/flashAUTOMATIC11112022-10-081-1/+2
|\ | | | | xformers attention
| * add xformers_available shared variableC43H66N12O12S22022-10-081-1/+1
| |
| * Update shared.pyC43H66N12O12S22022-10-071-0/+1
| |
* | do not let user choose his own prompt token count limitAUTOMATIC2022-10-081-3/+0
| |
* | check specifically for skippedTrung Ngo2022-10-081-1/+0
| |
* | Add button to skip the current iterationTrung Ngo2022-10-081-0/+5
| |
* | let user choose his own prompt token count limitAUTOMATIC2022-10-081-2/+3
| |
* | added support for hypernetworks (???)AUTOMATIC2022-10-071-1/+8
|/
* Removed duplicate defined models_pathMilly2022-10-061-10/+9
| | | | Use `modules.paths.models_path` instead `modules.shared.model_path`.
* Default window title progress updates onDepFA2022-10-061-1/+1
|
* Update shared.pyDepFA2022-10-061-0/+1
|
* integrate the new samplers PRAUTOMATIC2022-10-061-1/+0
|
* add variant settingC43H66N12O12S22022-10-061-0/+1
|
* option to let users select which samplers they want to hideAUTOMATIC2022-10-061-6/+9
|
* Set gradio-img2img-tool default to 'editor'DepFA2022-10-061-1/+1
|
* add editor to img2imgAUTOMATIC2022-10-041-0/+1
|
* option to not show images in web uiAUTOMATIC2022-10-041-0/+1
|
* Remove pycharm note, fix typoJustin Riddiough2022-10-041-2/+2
|
* Explain how to use second progress bar in pycharmJustin Riddiough2022-10-041-1/+1
|
* Modify --add-cpu descriptionbrkirch2022-10-041-1/+1
|
* Add BSRGAN to --add-cpubrkirch2022-10-041-3/+3
|
* Add --use-cpu command line optionbrkirch2022-10-041-2/+7
| | | | Remove MPS detection to use CPU for GFPGAN / CodeFormer and add a --use-cpu command line option.
* use dropdown instead of radio for img2img upscaler selectionAUTOMATIC2022-10-031-1/+1
|
* change wording for optionsAUTOMATIC2022-10-021-3/+3
|
* make save to dirs optional for imgs saved from uiLopyter2022-10-021-0/+1
|
* added --disable-console-progressbars to disable progressbars in consoleAUTOMATIC2022-10-021-2/+5
| | | | disabled printing prompts to console by default, enabled by --enable-console-prompts
* Merge branch 'master' into ScuNETd8ahazard2022-10-021-2/+3
|\
| * initial support for training textual inversionAUTOMATIC2022-10-021-1/+2
| |
| * if --ckpt option is specified, load that modelAUTOMATIC2022-09-301-1/+1
| |
* | Add ScuNET DeNoiser/Upscalerd8ahazard2022-09-301-0/+1
|/ | | | | | Q&D Implementation of ScuNET, thanks to our handy model loader. :P https://github.com/cszn/SCUNet
* return the dropdown that mysteriously disappearedAUTOMATIC2022-09-301-1/+1
|
* remove unwanted formatting/functionality from the PRAUTOMATIC2022-09-301-7/+1
|
* Merge remote-tracking branch 'upstream/master' into ModelLoaderd8ahazard2022-09-301-6/+7
|\
| * new implementation for attention/emphasisAUTOMATIC2022-09-291-1/+2
| |
| * update lists of models after merging them in checkpoints tabAUTOMATIC2022-09-281-1/+1
| | | | | | | | support saving as half
| * added support for automatically installing latest k-diffusionAUTOMATIC2022-09-281-2/+3
| | | | | | | | | | added eta parameter to parameters output for generated images split eta settings into ancestral and ddim (because they have different default values)
| * save parameters for images when using the Save button.AUTOMATIC2022-09-281-1/+1
| |
| * Update shared.pyC43H66N12O12S22022-09-281-1/+1
| |
| * Fix downssample typo in optionsDave Bauman2022-09-271-1/+1
| | | | | | Updated `downssample` to `down-sample`, matching spelling in other places.
* | Holy $hit.d8ahazard2022-09-291-9/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Yep. Fix gfpgan_model_arch requirement(s). Add Upscaler base class, move from images. Add a lot of methods to Upscaler. Re-work all the child upscalers to be proper classes. Add BSRGAN scaler. Add ldsr_model_arch class, removing the dependency for another repo that just uses regular latent-diffusion stuff. Add one universal method that will always find and load new upscaler models without having to add new "setup_model" calls. Still need to add command line params, but that could probably be automated. Add a "self.scale" property to all Upscalers so the scalers themselves can do "things" in response to the requested upscaling size. Ensure LDSR doesn't get stuck in a longer loop of "upscale/downscale/upscale" as we try to reach the target upscale size. Add typehints for IDE sanity. PEP-8 improvements. Moar.
* | Merge remote-tracking branch 'upstream/master' into ModelLoaderd8ahazard2022-09-271-1/+9
|\|
| * rename DDIM eta labelDepFA2022-09-271-2/+2
| |
| * Add extra kdiffusion parametersDepFA2022-09-271-0/+3
| |
| * Add options for exposed ddim sampler paramsDepFA2022-09-271-0/+4
| | | | | | ddim_eta & ddim_discretize
| * job_timestamp initialization changeDepFA2022-09-271-1/+2
| |
* | Use model loader with stable-diffusion too.d8ahazard2022-09-271-11/+17
| | | | | | | | | | | | | | | | | | | | Hook the model loader into the SD_models file. Add default url/download if checkpoint is not found. Add matching stablediffusion-models-path argument. Add message that --ckpt-dir will be removed in the future, but have it pipe to stablediffusion-models-path for now. Update help strings for models-path args so they're more or less uniform. Move sd_model "setup" call to webUI with the others. Ensure "cleanup_models" method moves existing models to the new locations, including SD, and that we aren't deleting folders that still have stuff in them.
* | Re-implement universal model loadingd8ahazard2022-09-261-4/+8
|/