Illustrious_Row_9971

Illustrious_Row_9971 t1_j1uxh50 wrote

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>

1

Illustrious_Row_9971 OP t1_izuuyb1 wrote

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

9