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
Hello
This looks like a promising app and i like very much your effort in this.
I am trying to develop a full app included frontend for a project of mine using vLogger.
That is quite challenging
However i ran into some issues
I am unable to get a local copy of stablediffusion model
Tried several ways with python
from transformers import AutoModel, AutoTokenizer
model_id = "openai/stablediffusion-v1-4" # ID of the Stable Diffusion model
# Download tokenizer and model
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModel.from_pretrained(model_id)
# Save the tokenizer and model
tokenizer.save_pretrained("/cache/tokenizer")
model.save_pretrained("/cache/model")
The reason for the incompatibility may be that in order to add STEB, I rewrote the model code in the models folder, which may cause the code to be inconsistent with the interface in diffusers.
Hello
This looks like a promising app and i like very much your effort in this.
I am trying to develop a full app included frontend for a project of mine using vLogger.
That is quite challenging
However i ran into some issues
I am unable to get a local copy of stablediffusion model
Tried several ways with python
https://chat.openai.com/share/94d052f4-5b87-4848-b347-1982307917e7
This code works for OpenClip and showMaker, fails for sd-v1-5
Do you know any workaround for this?
Thanks
The text was updated successfully, but these errors were encountered: