1510 Commits (abfa22c16fb3d9b1ed8d049c7b68e94d1cca5b82)

Author SHA1 Message Date
brkirch abfa22c16f Revert "MPS Upscalers Fix"
This reverts commit 768b95394a8500da639b947508f78296524f1836.
3 years ago
AUTOMATIC 98947d173e run installers for newly installed extensions 3 years ago
AUTOMATIC a1a376331c make existing script loading and new preload code use same code for loading modules
limit extension preload scripts to just one file named preload.py
3 years ago
AUTOMATIC1111 e5690d0bf2
Merge pull request #4488 from d8ahazard/ExtensionPreload
Add option to preload extensions
3 years ago
AUTOMATIC 0ab0a50f9a change formatting to match the main program in devices.py 3 years ago
AUTOMATIC c62d17aee3 use the new devices.has_mps() function in register_buffer for DDIM/PLMS fix for OSX 3 years ago
源文雨 1130d5df66
Update devices.py 3 years ago
源文雨 76ab31e188 Fix wrong mps selection below MasOS 12.3 3 years ago
AUTOMATIC 7ba3923d5b move DDIM/PLMS fix for OSX out of the file with inpainting code. 3 years ago
AUTOMATIC1111 bb2e2c82ce
Merge pull request #4233 from thesved/patch-1
Make DDIM and PLMS work on Mac OS
3 years ago
AUTOMATIC1111 b8a2e38758
Merge pull request #4543 from tong-zeng/master
Fix a bug in list_files_with_name
3 years ago
AUTOMATIC1111 e666220ee4
Merge pull request #4514 from cluder/4448_fix_ckpt_cache
#4448 fix checkpoint cache usage
3 years ago
AUTOMATIC1111 6a2044f566
Merge pull request #4563 from JingShing/master
Add username and password in ngrok
3 years ago
AUTOMATIC1111 ec95ced6fb
Merge pull request #4573 from liamkerr/4415-update-generation-info
4415 update generation info
3 years ago
AUTOMATIC1111 73776907ec
Merge pull request #4117 from TinkTheBoush/master
Adding optional tag shuffling for training
3 years ago
AUTOMATIC1111 6585cba200
Merge pull request #4395 from snowmeow2/master
Add DeepDanbooru to the interrogate API
3 years ago
KyuSeok Jung a1e271207d
Update dataset.py 3 years ago
KyuSeok Jung b19af67d29
Update dataset.py 3 years ago
KyuSeok Jung 0959907f87
adding tag dropout option 3 years ago
KyuSeok Jung 13a2f1dca3
adding tag drop out option 3 years ago
KyuSeok Jung 6f8a807fe4
Update shared.py 3 years ago
Liam b98740129c added event listener for the image gallery modal; moved js to separate file 3 years ago
JingShing 1a01191e27
Add username and password in ngrok. 3 years ago
JingShing 2505f39e28
Add username and password in ngrok. 3 years ago
Tong Zeng 893191cab2 fix a bug in list_files_with_name 3 years ago
Liam 81f2575df9 updating the displayed generation info when user clicks images in the gallery. feature request 4415 3 years ago
cluder eebf49592a restore #4035 behavior
- if checkpoint cache is set to 1, keep 2 models in cache (current +1 more)
3 years ago
cluder f37cce0e3d Merge branch 'master' of https://github.com/cluder/stable-diffusion-webui into 4448_fix_ckpt_cache 3 years ago
cluder 3b51d239ac - do not use ckpt cache, if disabled
- cache model after is has been loaded from file
3 years ago
d8ahazard cfcadeae9a Add option to preload extensions
By creating a file called "preload.py" in an extension folder and declaring a preload(parser) method, we can add extra command-line args for an extension.
3 years ago
AUTOMATIC 1610b32584 add callback for creating a tab in train UI 3 years ago
AUTOMATIC 8011be33c3 move functions out of main body for image preprocessing for easier hijacking 3 years ago
AUTOMATIC c5334fc56b fix javascript duplication bug after pressing the restart UI button 3 years ago
snowmeow2 67c8e11be7 Adding DeepDanbooru to the interrogation API 3 years ago
AUTOMATIC 32c0eab895 load all settings in one call instead of one by one when the page loads 3 years ago
AUTOMATIC1111 07d1bd4267
Merge branch 'master' into roy.add_simple_interrogate_api 3 years ago
AUTOMATIC 6e4de5b442 add load_with_extra function for modules to load checkpoints with extended whitelist 3 years ago
AUTOMATIC e5b4e3f820 add tags to extensions, and ability to filter out tags
list changed Settings keys in UI
do not print VRAM/etc stats everywhere but in calls that use GPU
3 years ago
AUTOMATIC a2a1a2f727 add ability to create extensions that add localizations 3 years ago
Han Lin 6603f63b7b Fixes LDSR upscaler producing black bars 3 years ago
KyuSeok Jung 9b7289c349
Merge branch 'master' into master 3 years ago
AUTOMATIC 159475e072 tweak names a bit for new samplers 3 years ago
AUTOMATIC1111 bbfdfa52c5
Merge pull request #4304 from hentailord85ez/k-diffusion-update
Add support for the new DPM-Solver++ samplers added to k-diffusion
3 years ago
AUTOMATIC1111 2e604233fd
Merge pull request #4329 from Blucknote/patch-1
Python 3.8 typing compatibility
3 years ago
evshiron b6cfaaa20b Merge branch 'master' into fix/encode-pnginfo 3 years ago
AUTOMATIC 62e3d71aa7 rework the code to not use the walrus operator because colab's 3.7 does not support it 3 years ago
Evgeniy a170e3d222
Python 3.8 typing compatibility
Solves problems with

```Traceback (most recent call last):
  File "webui.py", line 201, in <module>
    webui()
  File "webui.py", line 178, in webui
    create_api(app)
  File "webui.py", line 117, in create_api
    from modules.api.api import Api
  File "H:\AIart\stable-diffusion\stable-diffusion-webui\modules\api\api.py", line 9, in <module>
    from modules.api.models import *
  File "H:\AIart\stable-diffusion\stable-diffusion-webui\modules\api\models.py", line 194, in <module>
    class SamplerItem(BaseModel):
  File "H:\AIart\stable-diffusion\stable-diffusion-webui\modules\api\models.py", line 196, in SamplerItem
    aliases: list[str] = Field(title="Aliases")
TypeError: 'type' object is not subscriptable```

and

```Traceback (most recent call last):
  File "webui.py", line 201, in <module>
    webui()
  File "webui.py", line 178, in webui
    create_api(app)
  File "webui.py", line 117, in create_api
    from modules.api.api import Api
  File "H:\AIart\stable-diffusion\stable-diffusion-webui\modules\api\api.py", line 9, in <module>
    from modules.api.models import *
  File "H:\AIart\stable-diffusion\stable-diffusion-webui\modules\api\models.py", line 194, in <module>
    class SamplerItem(BaseModel):
  File "H:\AIart\stable-diffusion\stable-diffusion-webui\modules\api\models.py", line 197, in SamplerItem
    options: dict[str, str] = Field(title="Options")
TypeError: 'type' object is not subscriptable```
3 years ago
AUTOMATIC1111 b8f2dfed3c
Merge pull request #4297 from AUTOMATIC1111/aria1th-patch-1
Fix errors from commit f2b697 with --hide-ui-dir-config
3 years ago
AUTOMATIC1111 37ba0070ec
Merge branch 'master' into feat/allow-origins 3 years ago
AUTOMATIC1111 c9b2eef6a3
Merge pull request #4293 from AUTOMATIC1111/innovaciones-patch-1
Open extensions links in new tab
3 years ago