- 08 Jul, 2023 2 commits
-
-
AUTOMATIC1111 authored
Fix UnicodeEncodeError when writing to file CLIP Interrogator Batch Mode
-
AUTOMATIC1111 authored
Hotfix: API cache cleanup
-
- 07 Jul, 2023 1 commit
-
-
Neil Mahseth authored
The code snippet print(interrogation_function(img), file=open(os.path.join(ii_output_dir, f"{left}.txt"), 'a')) raises a UnicodeEncodeError with the message "'charmap' codec can't encode character '\u016b' in position 129". This error occurs because the default encoding used by the open() function cannot handle certain Unicode characters. To fix this issue, the encoding parameter needs to be explicitly specified when opening the file. By using an appropriate encoding, such as 'utf-8', we can ensure that Unicode characters are properly encoded and written to the file. The updated code should be modified as follows: python Copy code print(interrogation_function(img), file=open(os.path.join(ii_output_dir, f"{left}.txt"), 'a', encoding='utf-8')) By making this change, the code will no longer raise the UnicodeEncodeError and will correctly handle Unicode characters during the file write operation.
-
- 04 Jul, 2023 2 commits
- 02 Jul, 2023 1 commit
-
-
ramyma authored
-
- 27 Jun, 2023 27 commits
-
-
AUTOMATIC1111 authored
Add parameter to differentiate between batch run grids or ordinary images to write proper metadata
-
AUTOMATIC1111 authored
Remove a bunch of unused/vestigial code
-
AUTOMATIC authored
-
AUTOMATIC1111 authored
add model exists status check /sdapi/v1/options #11112
-
AUTOMATIC1111 authored
-
AUTOMATIC1111 authored
Upscaler model loading cleanup
-
AUTOMATIC1111 authored
Upgrade Ruff to 0.0.272
-
AUTOMATIC authored
send tensors to the correct device when loading from safetensors file with memmap disabled for #11260
-
AUTOMATIC1111 authored
fix very slow loading speed of .safetensors files
-
AUTOMATIC1111 authored
Add Gradio User to Metadata
-
AUTOMATIC1111 authored
-
AUTOMATIC1111 authored
🐛 Allow Script to have custom metaclass -
AUTOMATIC1111 authored
-
AUTOMATIC1111 authored
show Git clone progress
-
AUTOMATIC authored
-
AUTOMATIC1111 authored
fix: adding elem_id for img2img resize to and resize by tabs
-
AUTOMATIC1111 authored
Add checkbox to check/uncheck all extensions in the Installed tab
-
AUTOMATIC1111 authored
api quit restart
-
AUTOMATIC authored
-
AUTOMATIC authored
-
AUTOMATIC authored
-
AUTOMATIC1111 authored
Zoom and pan: More options in the settings and improved error output
-
AUTOMATIC1111 authored
fixed typos
-
AUTOMATIC1111 authored
Use os.makedirs(..., exist_ok=True)
-
AUTOMATIC1111 authored
Fix Typo of hints.js
-
AUTOMATIC1111 authored
Strip whitespaces from URL and dirname prior to extension installation
-
AUTOMATIC authored
-
- 25 Jun, 2023 2 commits
-
-
Martín (Netux) Rodríguez authored
Small QoL addition. While there is the option to disable all extensions with the radio buttons at the top, that only acts as an added flag and doesn't really change the state of the extensions in the UI. An use case for this checkbox is to disable all extensions except for a few, which is important for debugging extensions. You could do that before, but you'd have to uncheck and recheck every extension one by one.
-
Jabasukuriputo Wang authored
This avoid some cryptic errors brought by accidental spaces around urls
-
- 20 Jun, 2023 1 commit
-
-
stablegeniusdiffuser authored
-
- 19 Jun, 2023 1 commit
-
-
George Gu authored
-
- 18 Jun, 2023 2 commits
- 17 Jun, 2023 1 commit
-
-
huchenlei authored
-