AUTOMATIC1111
274a3e21ba
small rework for img2img PNG info
2023-07-08 15:42:00 +03:00
AUTOMATIC1111
1d71c36de2
third time's the charm
2023-07-08 15:21:29 +03:00
AUTOMATIC1111
9043b91649
additional changes for merge conflict for #11337
2023-07-08 15:14:24 +03:00
AUTOMATIC1111
b88645d9eb
additional changes for merge conflict for #11337
2023-07-08 15:14:14 +03:00
AUTOMATIC1111
b0419b60a0
Merge pull request #11337 from FWeynschenk/img2img-batch-png-info
...
Img2img batch png info
2023-07-08 15:10:33 +03:00
AUTOMATIC1111
ec9bbda3da
Merge branch 'dev' into img2img-batch-png-info
2023-07-08 15:10:10 +03:00
AUTOMATIC1111
18256c5f01
fix for #11478
2023-07-08 14:58:33 +03:00
AUTOMATIC1111
211c3398f6
Merge pull request #11478 from catalpaaa/subpath
...
Fixing --subpath on newer gradio version
2023-07-08 14:53:42 +03:00
AUTOMATIC1111
539518292e
Merge pull request #11468 from NoCrypt/grid-colors-options
...
Add options to change colors in grid
2023-07-08 14:51:50 +03:00
AUTOMATIC1111
f0c62688d2
Merge pull request #11488 from AUTOMATIC1111/callback-after_extra_networks_activate
...
add callback after_extra_networks_activate
2023-07-08 14:50:11 +03:00
AUTOMATIC1111
3602602260
whitespace for #11477
2023-07-08 14:44:02 +03:00
AUTOMATIC1111
53924aeaf0
Merge pull request #11477 from hako-mikan/master
...
add `before_hr` script callback
2023-07-08 14:43:06 +03:00
AUTOMATIC1111
953147bf6b
Merge pull request #11495 from missionfloyd/end-paren-fix
...
Correctly remove end parenthesis with ctrl+up/down
2023-07-08 14:41:33 +03:00
AUTOMATIC1111
eb51acb89e
Merge pull request #11503 from AUTOMATIC1111/rename---add-stop-route-to---api-server-stop
...
Rename --add-stop-route to --api-server-stop
2023-07-08 14:40:21 +03:00
AUTOMATIC1111
6acc4cd7e1
Merge pull request #11513 from Akegarasu/dev
...
fix can't get current hash
2023-07-08 14:39:52 +03:00
AUTOMATIC1111
b25925c95b
Merge pull request #11520 from AUTOMATIC1111/extension-metadata
...
Extension metadata
2023-07-08 14:30:17 +03:00
AUTOMATIC1111
b74f661ed9
Merge pull request #11529 from hunshcn/sync-weight
...
sync default value of process_focal_crop_entropy_weight between ui and api
2023-07-08 14:24:48 +03:00
AUTOMATIC1111
7a7fa25d02
lint fix for #11492
2023-07-08 14:21:40 +03:00
AUTOMATIC1111
d78377ea5d
Merge pull request #11593 from akx/better-status-reporting-1
...
Better status reporting, part 1
2023-07-08 14:20:28 +03:00
AUTOMATIC1111
fc049a2fd3
Merge branch 'dev' into better-status-reporting-1
2023-07-08 14:19:34 +03:00
AUTOMATIC1111
ae74b44c69
Merge pull request #11596 from akx/use-read-info
...
postprocessing: use read_info_from_image
2023-07-08 14:14:12 +03:00
AUTOMATIC1111
9be8903ca9
Merge pull request #11567 from AUTOMATIC1111/seed_resize_to_0
...
Don't add "Seed Resize: -1x-1" to API image metadata
2023-07-08 13:58:31 +03:00
AUTOMATIC1111
e338f4142f
Merge pull request #11592 from onyasumi/launchscript-directory
...
Fixed launch script to be runnable from any directory
2023-07-08 13:57:01 +03:00
AUTOMATIC1111
3a294a08bc
Merge pull request #11535 from gshawn3/bugfix/11534
...
fix for #11534 : canvas zoom and pan extension hijacking shortcut keys
2023-07-08 13:48:58 +03:00
AUTOMATIC1111
d12ccb91a8
Merge pull request #11631 from AUTOMATIC1111/gif-preview
...
Allow gif for extra network previews
2023-07-08 13:47:57 +03:00
AUTOMATIC1111
2151a9881f
Merge pull request #11492 from semjon00/dev
...
Fix throwing exception when trying to resize image with I;16 mode
2023-07-08 13:46:08 +03:00
AUTOMATIC1111
19772c3c97
fix problem with extra network saving images as previews losing generation info
...
add a description for save_image_with_geninfo
2023-07-08 13:43:42 +03:00
AUTOMATIC1111
16045d0877
Merge pull request #11637 from Hao-Wu/fix-has-mps-deprecated
...
Fix warning of 'has_mps' deprecated from PyTorch
2023-07-08 13:11:52 +03:00
AUTOMATIC1111
5ed1ae5003
Merge pull request #11656 from jovijovi/dev
...
fix(api): convert to "RGB" if image mode is "RGBA" #11655
2023-07-08 13:10:50 +03:00
AUTOMATIC1111
46c2b1e202
Merge pull request #11660 from neilmahaseth/patch-1
...
Fix UnicodeEncodeError when writing to file CLIP Interrogator Batch Mode
2023-07-08 13:10:03 +03:00
AUTOMATIC1111
7348440524
Merge pull request #11569 from ramyma/hotfix-api-cache
...
Hotfix: API cache cleanup
2023-07-08 13:09:20 +03:00
Neil Mahseth
c258dd34a8
Fix UnicodeEncodeError when writing to file CLIP Interrogator Batch Mode
...
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.
2023-07-06 22:02:47 +05:30
jovijovi
259967b7c6
fix(api): convert to "RGB" if image mode is "RGBA"
2023-07-06 18:43:17 +08:00
Hao-Wu
daf41a2734
Fix warning of 'has_mps' is deprecated from PyTorch
2023-07-06 15:37:10 +08:00
semjon00
fb661e089f
Fix throwing exception when trying to resize image with I;16 mode
2023-07-05 15:39:04 +03:00
missionfloyd
c602471b85
Allow gif for extra network previews
2023-07-05 03:19:26 -06:00
Danil Boldyrev
f325783abd
made the blur function optional, added exclusion buttons
2023-07-04 22:26:43 +03:00
missionfloyd
f731a728c6
Check seed_resize_from <= 0
2023-07-03 11:41:10 -06:00
ramyma
c1c0492859
Use contextlib for closing the generation process
2023-07-03 20:17:47 +03:00
ramyma
3278887317
Handle cleanup in case there's an exception thrown
2023-07-03 20:02:30 +03:00
Aarni Koskela
5c6a33b3e1
read_info_from_image: don't mutate info in passed-in image
2023-07-03 13:10:42 +03:00
Aarni Koskela
96f0593c8f
read_info_from_image: add type
2023-07-03 13:10:20 +03:00
Aarni Koskela
b2c574891f
read_info_from_image: add photoshop
to ignored
2023-07-03 13:09:37 +03:00
Aarni Koskela
08f9b705cd
Use read_info_from_image in postprocessing
...
Avoids bad keys such as `exif` ending up in the "PNG info" passed forward
2023-07-03 13:08:28 +03:00
Aarni Koskela
522a8b9f62
Add a status logger in modules.shared
2023-07-03 11:07:57 +03:00
Aarni Koskela
e430344347
API: use finally: for state.end()
2023-07-03 11:03:41 +03:00
Aarni Koskela
f44feb6a10
Add job argument to State.begin()
2023-07-03 11:03:41 +03:00
Aarni Koskela
b70001e618
Add SD_WEBUI_LOG_LEVEL envvar
2023-07-03 11:03:41 +03:00
Frank Tao
e33e2c5175
Update webui.sh
2023-07-03 03:17:27 -04:00
onyasumi
5a32d4fcb1
Fix launch script to be runnable from any directory
2023-07-03 07:15:19 +00:00