AbdBarho
2023-05-08 19:29:38 +02:00
committed by GitHub
parent d47e77f19c
commit c836f41921
4 changed files with 25 additions and 3 deletions

1
data/.gitignore vendored
View File

@ -25,3 +25,4 @@
/ModelScope /ModelScope
/LyCORIS /LyCORIS
/GLIGEN /GLIGEN
/CLIPEncoder

View File

@ -74,7 +74,7 @@ services:
<<: *base_service <<: *base_service
profiles: ["comfy"] profiles: ["comfy"]
build: ./services/comfy/ build: ./services/comfy/
image: sd-comfy:1 image: sd-comfy:2
tty: true tty: true
environment: environment:
- CLI_ARGS= - CLI_ARGS=

View File

@ -14,10 +14,11 @@ a111:
hypernetworks: Hypernetworks hypernetworks: Hypernetworks
controlnet: ControlNet controlnet: ControlNet
gligen: GLIGEN gligen: GLIGEN
clip: CLIPEncoder
custom_nodes: config/comfy/custom_nodes custom_nodes: config/comfy/custom_nodes
# TODO: I am unsure about these, need more testing # TODO: I am unsure about these, need more testing
# clip: .cache/clip
# style_models: config/comfy/style_models # style_models: config/comfy/style_models
# t2i_adapter: config/comfy/t2i_adapter # t2i_adapter: config/comfy/t2i_adapter
# clip_vision: config/comfy/clip_vision # clip_vision: config/comfy/clip_vision

View File

@ -3,7 +3,27 @@
set -Eeuo pipefail set -Eeuo pipefail
# TODO: maybe just use the .gitignore file to create all of these # TODO: maybe just use the .gitignore file to create all of these
mkdir -vp /data/.cache /data/StableDiffusion /data/LyCORIS /data/Codeformer /data/ModelScope /data/GFPGAN /data/ESRGAN /data/BSRGAN /data/RealESRGAN /data/SwinIR /data/LDSR /data/ScuNET /data/embeddings /data/VAE /data/Deepdanbooru /data/MiDaS /data/Lora /data/ControlNet /data/openpose /data/GLIGEN mkdir -vp /data/.cache \
/data/StableDiffusion \
/data/LyCORIS \
/data/Codeformer \
/data/ModelScope \
/data/GFPGAN \
/data/ESRGAN \
/data/BSRGAN \
/data/RealESRGAN \
/data/SwinIR \
/data/LDSR \
/data/ScuNET \
/data/embeddings \
/data/VAE \
/data/Deepdanbooru \
/data/MiDaS \
/data/Lora \
/data/ControlNet \
/data/openpose \
/data/GLIGEN \
/data/CLIPEncoder # this is different from the cached pre-train ViT saved in /data/.cache/clip TODO: find out how
echo "Downloading, this might take a while..." echo "Downloading, this might take a while..."