Illustrious_Row_9971
Illustrious_Row_9971 t1_j1uxh50 wrote
Reply to comment by TrueBlueDreamin in [P] I built an API that makes it easy and cheap for developers to build ML-powered apps using Stable Diffusion by TrueBlueDreamin
Since you are using huggingface for hosting models, you can also create a organization with a webui there and embed it in your website
for example this is stabiity ai org: https://huggingface.co/stabilityai
this is a web demo: https://huggingface.co/spaces/stabilityai/stable-diffusion
you can duplicate and embed it:
<script
type="module"
src="https://gradio.s3-us-west-2.amazonaws.com/3.11.0/gradio.js"
\></script>
<gradio-app src="
https://stabilityai-stable-diffusion.hf.space">
</gradio-app>
Illustrious_Row_9971 OP t1_izuuyb1 wrote
Reply to [P] LORA Dreambooth - fine-tune Stable diffusion models twice as faster than Dreambooth method, smaller model sizes 3-4 MBs by Illustrious_Row_9971
https://huggingface.co/spaces/ysharma/Low-rank-Adaptation
Duplicate the space and go to settings to assign a gpu to train your own model
huggingface is like github so you can clone the space and run it locally as you would a github repo
git clone https://huggingface.co/spaces/ysharma/Low-rank-Adaptation
pip install -r requirements.txt
python app.py
Illustrious_Row_9971 OP t1_j6bhakx wrote
Reply to [R] InstructPix2Pix: Learning to Follow Image Editing Instructions by Illustrious_Row_9971
demo: https://huggingface.co/spaces/timbrooks/instruct-pix2pix
github: https://github.com/timothybrooks/instruct-pix2pix
project page: https://www.timothybrooks.com/instruct-pix2pix/