mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-12-24 10:51:03 -08:00
add webp for embed load
This commit is contained in:
parent
939f16529a
commit
9a1dcd78ed
1 changed files with 4 additions and 0 deletions
|
|
@ -96,6 +96,10 @@ class EmbeddingDatabase:
|
|||
else:
|
||||
data = extract_image_data_embed(embed_image)
|
||||
name = data.get('name', name)
|
||||
elif filename.upper().endswith('.WEBP'):
|
||||
embed_image = Image.open(path)
|
||||
data = extract_image_data_embed(embed_image)
|
||||
name = data.get('name', name)
|
||||
else:
|
||||
data = torch.load(path, map_location="cpu")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue