- 12月 31, 2023
-
-
由 Aarni Koskela 创作于
-
- 10月 14, 2023
-
-
由 AUTOMATIC1111 创作于
-
- 9月 05, 2023
-
-
由 AngelBottomless 创作于
-
- 8月 04, 2023
-
-
由 AUTOMATIC1111 创作于
-
- 7月 29, 2023
-
-
由 AUTOMATIC1111 创作于
-
- 7月 15, 2023
-
-
由 AUTOMATIC1111 创作于
-
由 AUTOMATIC1111 创作于
-
- 7月 11, 2023
-
-
由 Aarni Koskela 创作于
Follows up on #11569
-
- 6月 02, 2023
-
-
由 Aarni Koskela 创作于
-
- 6月 01, 2023
-
-
由 AUTOMATIC 创作于
-
- 5月 29, 2023
-
-
由 Aarni Koskela 创作于
-
由 klimaleksus 创作于
-
- 5月 12, 2023
-
-
由 Aarni Koskela 创作于
-
- 5月 11, 2023
-
-
由 AUTOMATIC 创作于
-
- 5月 10, 2023
-
-
由 AUTOMATIC 创作于
-
由 AUTOMATIC 创作于
-
由 AUTOMATIC 创作于
-
由 AUTOMATIC 创作于
-
由 Aarni Koskela 创作于
-
- 4月 14, 2023
-
-
由 Brad Smith 创作于
-
- 4月 09, 2023
-
-
由 Brad Smith 创作于
-
- 3月 26, 2023
-
-
由 bluelovers 创作于
-
- 3月 25, 2023
-
-
由 butaixianran 创作于
When user using model_name.png as a preview image, textural_inversion.py still treat it as an embeding, and didn't handle its error, just let python throw out an None type error like following: ```bash File "D:\Work\Dev\AI\stable-diffusion-webui\modules\textual_inversion\textual_inversion.py", line 155, in load_from_file name = data.get('name', name) AttributeError: 'NoneType' object has no attribute 'get' ``` With just a simple `if data:` checking as following, there will be no error, breaks nothing, and now this module can works fine with user's preview images. Old code: ```python data = extract_image_data_embed(embed_image) name = data.get('name', name) ``` New code: ```python data = extract_image_data_embed(embed_image) if data: name = data.get('name', name) else: # if data is None, means this is not an embeding, just a preview image return ``` Also, since there is no more errors on textual inversion module, from now on, extra network can set "model_name.png" as preview image for embedings.
-
- 3月 15, 2023
-
-
由 bluelovers 创作于
by ChatGPT
-
- 3月 12, 2023
-
- 2月 15, 2023
- 1月 29, 2023
-
-
由 AUTOMATIC 创作于
-
- 1月 26, 2023
-
-
由 Alex "mcmonkey" Goodwin 创作于
-
- 1月 21, 2023
-
-
由 AUTOMATIC 创作于
rework of hypernets: rather than via settings, hypernets are added directly to prompt as <hypernet:name:weight>
-
- 1月 19, 2023
-
-
由 AUTOMATIC 创作于
removed hiding warnings from LDSR fixed/reworked few places that produced warnings
-
- 1月 15, 2023
-
-
由 AUTOMATIC 创作于
big rework of progressbar/preview system to allow multiple users to prompts at the same time and do not get previews of each other
-
- 1月 14, 2023
-
-
由 AUTOMATIC 创作于
-
- 1月 13, 2023
- 1月 12, 2023
-
-
由 Shondoit 创作于
-
- 1月 11, 2023
-
-
由 Vladimir Mandic 创作于
-
由 Lee Bousfield 创作于
-
- 1月 10, 2023