From 20b593f840d17c9e512e6984d75579df489a8783 Mon Sep 17 00:00:00 2001 From: Simon McNair <101189766+simonmcnair@users.noreply.github.com> Date: Mon, 20 Jan 2025 11:49:41 +0000 Subject: [PATCH] huggingface_guess was in incorrect location --- services/forge/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/services/forge/Dockerfile b/services/forge/Dockerfile index d18f430..807f3ac 100644 --- a/services/forge/Dockerfile +++ b/services/forge/Dockerfile @@ -13,6 +13,7 @@ RUN . /clone.sh k-diffusion https://github.com/crowsonkb/k-diffusion.git ab527a9 RUN . /clone.sh clip-interrogator https://github.com/pharmapsychotic/clip-interrogator 2cf03aaf6e704197fd0dae7c7f96aa59cf1b11c9 RUN . /clone.sh generative-models https://github.com/Stability-AI/generative-models 45c443b316737a4ab6e40413d7794a7f5657c19f RUN . /clone.sh stable-diffusion-webui-assets https://github.com/AUTOMATIC1111/stable-diffusion-webui-assets.git 6f7db241d2f8ba7457bac5ca9753331f0c266917 +RUN . /clone.sh huggingface_guess https://github.com/lllyasviel/huggingface_guess.git 70942022b6bcd17d941c1b4172804175758618e2 FROM pytorch/pytorch:2.3.1-cuda12.1-cudnn8-runtime @@ -42,8 +43,8 @@ RUN --mount=type=cache,target=/root/.cache/pip \ pip install -r ${ROOT}/repositories/CodeFormer/requirements.txt # Clone and copy huggingface_guess module -RUN git clone https://github.com/lllyasviel/huggingface_guess.git /tmp/huggingface_guess && \ - cp -r /tmp/huggingface_guess/huggingface_guess ${ROOT}/huggingface_guess +#RUN git clone https://github.com/lllyasviel/huggingface_guess.git /tmp/huggingface_guess && \ +# cp -r /tmp/huggingface_guess/huggingface_guess ${ROOT}/huggingface_guess # Ensure torchvision is correctly installed RUN --mount=type=cache,target=/root/.cache/pip \