Andrew Wong
Andrew Wong
@danielsaidi, I tried this technique in simulator. It doesn't work. Are you able to make this work? Thanks.
It is caused by the masks of training data encoded as RLE. You will need to convert the masks from RLE to polygon.
See the same bug in Google Colab.
The issue is in gradio itself. It has been there for quite some time. Issue: https://github.com/gradio-app/gradio/issues/3810 If you really need this function, the best bet is to revert to an...
Same issue on Colab. Confirm the fix with running the following in the beginning. %pip install torch==2.0.0 torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118
Here's the requirement cell that works. ``` !wget -q https://github.com/ShivamShrirao/diffusers/raw/main/examples/dreambooth/train_dreambooth.py !wget -q https://github.com/ShivamShrirao/diffusers/raw/main/scripts/convert_diffusers_to_original_stable_diffusion.py %pip install git+https://github.com/ShivamShrirao/diffusers %pip install -U --pre triton %pip install transformers ftfy bitsandbytes gradio natsort safetensors xformers...
> Was able to successfully execute with modified code. However, when attempting to use the generated model with Stable Diffusion was getting the following error: > > *** Error verifying...
@AUTOMATIC1111 , could you please take a look? This addresses install failure for Mac users.
@brkirch thanks for your feedback! I think it is a good practice to put the install script in the same repos so that it can be properly maintained. It has...
Got you. I think it's better to separate them. It's not a good practice to pull and run the latest code every time. Something could be broken in master and...