Best models to train on DreamBooth? (Community Help) #1763
Replies: 4 comments 11 replies
-
im curious too. i tried urpm and got errors. |
Beta Was this translation helpful? Give feedback.
-
I found a solution by d8ahazard that can help to continue training of such models. Haven't tried it yet though. |
Beta Was this translation helpful? Give feedback.
-
If you need the diffusers version of a model, check huggingface - most popular models have been uploaded there, plus plenty of others. Here is DreamShaper: https://huggingface.co/Lykon/DreamShaper/tree/main For the issue of running out of memory when merging checkpoints, you can add the --lowvram argument in the "Start Stable-Diffusion" section of the colab. So, change the code from: !python /content/gdrive/MyDrive/sd/stable-diffusion-webui/webui.py $share --api --disable-safe-unpickle --enable-insecure-extension-access --no-download-sd-model --no-half-vae --ckpt "$model" --xformers $auth --disable-console-progressbars
else:
!python /content/gdrive/MyDrive/sd/stable-diffusion-webui/webui.py $share --api --disable-safe-unpickle --enable-insecure-extension-access --no-download-sd-model --no-half-vae --ckpt-dir "$model" --xformers $auth --disable-console-progressbars
except:
!python /content/gdrive/MyDrive/sd/stable-diffusion-webui/webui.py $share --api --disable-safe-unpickle --enable-insecure-extension-access --no-download-sd-model --no-half-vae --xformers $auth --disable-console-progressbars` to: !python /content/gdrive/MyDrive/sd/stable-diffusion-webui/webui.py $share --api --disable-safe-unpickle --enable-insecure-extension-access --no-download-sd-model --no-half-vae --ckpt "$model" --xformers $auth --disable-console-progressbars --lowvram
else:
!python /content/gdrive/MyDrive/sd/stable-diffusion-webui/webui.py $share --api --disable-safe-unpickle --enable-insecure-extension-access --no-download-sd-model --no-half-vae --ckpt-dir "$model" --xformers $auth --disable-console-progressbars --lowvram
except:
!python /content/gdrive/MyDrive/sd/stable-diffusion-webui/webui.py $share --api --disable-safe-unpickle --enable-insecure-extension-access --no-download-sd-model --no-half-vae --xformers $auth --disable-console-progressbars --lowvram and then you shouldn't have the CUDA out of memory issue anymore. Remove the --lowvram arguments when you aren't merging checkpoints. |
Beta Was this translation helpful? Give feedback.
-
Guys, thank you. I've solved doing this, a friend have teach me how to train models that gives error. I don't know the reason why it works. Doing this, and not using a specific file, it works magically. Not only for this model, but a lot of others that was giving the same error. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hey guys, since I've discovered we can only train models on DreamBooth Colab that have diffusers..
What's the best models you guys recommend to use?
This Model here Called "DreamShaper" I've read on CIVITAI that has diffusers.. but give me an error.. so I would like the help of community to use models without keep been frustrated trying
Beta Was this translation helpful? Give feedback.
All reactions