- 08 Jul, 2023 6 commits
-
-
AUTOMATIC1111 authored
Fix throwing exception when trying to resize image with I;16 mode
-
AUTOMATIC1111 authored
add a description for save_image_with_geninfo
-
AUTOMATIC1111 authored
Fix warning of 'has_mps' deprecated from PyTorch
-
AUTOMATIC1111 authored
fix(api): convert to "RGB" if image mode is "RGBA" #11655
-
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.
-
- 06 Jul, 2023 2 commits
- 05 Jul, 2023 1 commit
-
-
semjon00 authored
-
- 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
-