CR-TZM
RRunPod
•Created by CR-TZM on 8/25/2024 in #⚡|serverless
Dependencies version issue between gradio and runpod
Hello everyone, I'm trying to rebuild the docker image from the runpod-workers repository for a1111 to change the model available and possibly try to add ad detailer and open pose to it.
https://github.com/runpod-workers/worker-a1111
When I'm building the image I got this dependencies conflict that I can't solve
The conflict is caused by:
gradio 4.42.0 depends on tomlkit==0.12.0
runpod 1.4.1 depends on tomlkit>=0.12.2
I tried runpod's version from last to 1.4.1 and gradio I put the last one as the original one wasn't working.
Do you know what can I do? How was @Merrell able to build his image as I reused his code and didn't work.
3 replies
RRunPod
•Created by CR-TZM on 8/10/2024 in #⚡|serverless
Does Runpod have an alternative to Ashley Kleynhans' github repository for creating a1111 worker?
3 days ago, I created a serverless instance by using https://github.com/ashleykleynhans/runpod-worker-a1111.
It's not accessible anymore. The https://github.com/runpod-workers/worker-a1111 doesn't seem to have the same functionality.
I would want to choose my own endpoint, loras, Ad detailer and an upscaler.
What solution do we have now to replace Ashley's work?
Does somebody as forked his repo?
40 replies
RRunPod
•Created by CR-TZM on 1/24/2024 in #⚡|serverless
Add lora inside a docker image with A1111
Hello, I'm trying to add lora to the docker image created by the runpod team.
If somebody knows how it needs to be done, can he checks some lines of my dockerfile? I can't run docker on my PC, so I want to be pretty sure about the code before running it with a friend.
The dockerfile already provide the solution to install the checkpoint. I tried to mimic the code to get the same result, but I don't know if I put the file in the right place.
First download of models:
RUN apk update && \
wget -q -O /model.safetensors https://civitai.com/api/download/models/270057
RUN apk update && \
wget -q -O /Lora.safetensors https://civitai.com/api/download/models/118273
Then copy from download:
COPY --from=download /model.safetensors /model.safetensors
COPY --from=download /Lora.safetensors /Lora.safetensors
Finally run them:
RUN cd /stable-diffusion-webui && python cache.py --use-cpu=all --ckpt /model.safetensors
RUN cd /stable-diffusion-webui && python cache.py --use-cpu=all --ckpt /Lora.safetensors
Thanks in advance!
3 replies
RRunPod
•Created by CR-TZM on 1/21/2024 in #⚡|serverless
Can we use other SD models (and Loras) on Quick Deploy serverless?
7 replies