You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First embedding_editor.py needed to from modules.call_queue import wrap_gradio_gpu_call
instead of from webui. because of this edit: AUTOMATIC1111/stable-diffusion-webui@95821f0
Next, you need to add in the command line --disable-safe-unpickle
There might be a workaround for this, but i don't even know python!
Lastly, change line
251 from save_embedding(embedding, False, checkpoint, embedding_name, filename, remove_cached_checksum=True) to embedding.save(filename)
I have only 1 problem left:
It seems like the script cache the embeddings somehow and doesn't refresh them. I can go around this by copy paste a new embedding in my folder everytime between edit, and refer to the new copy. But it's pretty annoying. At least the rest works now.
First embedding_editor.py needed to
from modules.call_queue import wrap_gradio_gpu_call
instead of from webui. because of this edit: AUTOMATIC1111/stable-diffusion-webui@95821f0
Next, you need to add in the command line
--disable-safe-unpickle
There might be a workaround for this, but i don't even know python!
Lastly, change line
251 from save_embedding(embedding, False, checkpoint, embedding_name, filename, remove_cached_checksum=True) to
embedding.save(filename)
I have only 1 problem left:
It seems like the script cache the embeddings somehow and doesn't refresh them. I can go around this by copy paste a new embedding in my folder everytime between edit, and refer to the new copy. But it's pretty annoying. At least the rest works now.
embedding_editor.zip
The text was updated successfully, but these errors were encountered: