Upload 2 files
Browse files- Dockerfile +3 -2
- requirements.txt +2 -1
Dockerfile
CHANGED
@@ -61,8 +61,8 @@ RUN echo "Downloading checkpoints..." && \
|
|
61 |
# VAE
|
62 |
wget -c https://huggingface.co/RedRayz/MyVAE/resolve/main/CleanVAE.safetensors -P ./models/vae/ && \
|
63 |
wget -c https://huggingface.co/stabilityai/sd-vae-ft-mse-original/resolve/main/vae-ft-mse-840000-ema-pruned.safetensors -P ./models/vae/ && \
|
64 |
-
wget -c https://huggingface.co/tuwonga/marblesh/resolve/main/marblesh.safetensors -P ./models/vae/ && \
|
65 |
-
wget -c https://huggingface.co/SimianLuo/LCM_Dreamshaper_v7/blob/main/LCM_Dreamshaper_v7_4k.safetensors -P ./models/vae/ && \
|
66 |
|
67 |
# ControlNet
|
68 |
wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11e_sd15_ip2p_fp16.safetensors -P ./models/controlnet/ && \
|
@@ -141,6 +141,7 @@ RUN echo "Downloading checkpoints..." && \
|
|
141 |
# RUN cd custom_nodes && echo 'ops_backend: "taichi" #Either "taichi" or "cupy"' >> ComfyUI-LCM/config.yaml
|
142 |
# RUN cd custom_nodes && cd ComfyUI-LCM/ && pip install -r requirements.txt
|
143 |
|
|
|
144 |
|
145 |
RUN cd custom_nodes && git clone https://github.com/Fannovel16/ComfyUI-Frame-Interpolation.git --depth 1 && cd ComfyUI-Frame-Interpolation && python install.py
|
146 |
|
|
|
61 |
# VAE
|
62 |
wget -c https://huggingface.co/RedRayz/MyVAE/resolve/main/CleanVAE.safetensors -P ./models/vae/ && \
|
63 |
wget -c https://huggingface.co/stabilityai/sd-vae-ft-mse-original/resolve/main/vae-ft-mse-840000-ema-pruned.safetensors -P ./models/vae/ && \
|
64 |
+
#wget -c https://huggingface.co/tuwonga/marblesh/resolve/main/marblesh.safetensors -P ./models/vae/ && \
|
65 |
+
#wget -c https://huggingface.co/SimianLuo/LCM_Dreamshaper_v7/blob/main/LCM_Dreamshaper_v7_4k.safetensors -P ./models/vae/ && \
|
66 |
|
67 |
# ControlNet
|
68 |
wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11e_sd15_ip2p_fp16.safetensors -P ./models/controlnet/ && \
|
|
|
141 |
# RUN cd custom_nodes && echo 'ops_backend: "taichi" #Either "taichi" or "cupy"' >> ComfyUI-LCM/config.yaml
|
142 |
# RUN cd custom_nodes && cd ComfyUI-LCM/ && pip install -r requirements.txt
|
143 |
|
144 |
+
RUN cd custom_nodes && git clone https://github.com/WASasquatch/PowerNoiseSuite.git
|
145 |
|
146 |
RUN cd custom_nodes && git clone https://github.com/Fannovel16/ComfyUI-Frame-Interpolation.git --depth 1 && cd ComfyUI-Frame-Interpolation && python install.py
|
147 |
|
requirements.txt
CHANGED
@@ -11,4 +11,5 @@ opencv-python
|
|
11 |
imageio-ffmpeg
|
12 |
transformers
|
13 |
accelerate
|
14 |
-
taichi
|
|
|
|
11 |
imageio-ffmpeg
|
12 |
transformers
|
13 |
accelerate
|
14 |
+
taichi
|
15 |
+
optimum
|