Commit ·
beda921
1
Parent(s): 4ea43a4
distributed models wget
Browse files- README.md +11 -13
- distribute.sh +0 -18
- distribute_models.sh +29 -0
- distribute_models_wget.sh +26 -0
README.md
CHANGED
|
@@ -2,25 +2,23 @@
|
|
| 2 |
license: mit
|
| 3 |
---
|
| 4 |
|
| 5 |
-
## models that can be installed via manager:
|
| 6 |
-
- ip-adapter-plus_sd15.safetensors
|
| 7 |
-
|
| 8 |
## models that must be manually placed (included in this repo):
|
|
|
|
| 9 |
- ip-adapter_image_encoder_sd15.safetensors
|
| 10 |
-
|
| 11 |
- motion_controlnet_checkpoint.ckpt
|
| 12 |
-
|
| 13 |
- AnimateLCM_sd15_t2v.ckpt
|
| 14 |
-
|
| 15 |
-
-
|
| 16 |
-
|
| 17 |
- ip-adapter-plus_sd15.safetensors
|
| 18 |
-
|
| 19 |
- photonLCM_v10.safetensors
|
| 20 |
-
|
| 21 |
- vae-ft-mse-840000-ema-pruned.safetensors
|
| 22 |
-
|
| 23 |
- lcm_lora_sd15.safetensors
|
| 24 |
-
|
| 25 |
- WAS26.safetensors
|
| 26 |
-
|
|
|
|
| 2 |
license: mit
|
| 3 |
---
|
| 4 |
|
|
|
|
|
|
|
|
|
|
| 5 |
## models that must be manually placed (included in this repo):
|
| 6 |
+
|
| 7 |
- ip-adapter_image_encoder_sd15.safetensors
|
| 8 |
+
- must be added to _models\clip_vision_
|
| 9 |
- motion_controlnet_checkpoint.ckpt
|
| 10 |
+
- must be added to _models\controlnet_
|
| 11 |
- AnimateLCM_sd15_t2v.ckpt
|
| 12 |
+
- must be added to _models\animatediff_models_
|
| 13 |
+
- 4xLexicaDAT2_otfi.pth
|
| 14 |
+
- must be added to _models\upscale_models_
|
| 15 |
- ip-adapter-plus_sd15.safetensors
|
| 16 |
+
- must be added to _models\ipadadapter_
|
| 17 |
- photonLCM_v10.safetensors
|
| 18 |
+
- must be added to _models\checkpoints_
|
| 19 |
- vae-ft-mse-840000-ema-pruned.safetensors
|
| 20 |
+
- must be added to \*models\vae"
|
| 21 |
- lcm_lora_sd15.safetensors
|
| 22 |
+
- must be added to _models\loras_
|
| 23 |
- WAS26.safetensors
|
| 24 |
+
- must be added to _models/animatediff_motion_lora_
|
distribute.sh
DELETED
|
@@ -1,18 +0,0 @@
|
|
| 1 |
-
#!/bin/bash
|
| 2 |
-
|
| 3 |
-
# Define the source directory
|
| 4 |
-
source_directory="$(pwd)/data"
|
| 5 |
-
|
| 6 |
-
# Define the base directory for models
|
| 7 |
-
base_directory=".."
|
| 8 |
-
|
| 9 |
-
# Copy files to their respective directories
|
| 10 |
-
cp "$source_directory/ip-adapter_image_encoder_sd15.safetensors" "$base_directory/clip_vision"
|
| 11 |
-
cp "$source_directory/motion_controlnet_checkpoint.ckpt" "$base_directory/controlnet"
|
| 12 |
-
cp "$source_directory/AnimateLCM_sd15_t2v.ckpt" "$base_directory/animatediff_models"
|
| 13 |
-
cp "$source_directory/4xLexicaDAT2_otf.pth" "$base_directory/upscale_models"
|
| 14 |
-
cp "$source_directory/ip-adapter-plus_sd15.safetensors" "$base_directory/ipadadapter"
|
| 15 |
-
cp "$source_directory/photonLCM_v10.safetensors" "$base_directory/checkpoints"
|
| 16 |
-
cp "$source_directory/vae-ft-mse-840000-ema-pruned.safetensors" "$base_directory/vae"
|
| 17 |
-
cp "$source_directory/lcm_lora_sd15.safetensors" "$base_directory/loras"
|
| 18 |
-
cp "$source_directory/WAS26.safetensors" "$base_directory/animatediff_motion_lora"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
distribute_models.sh
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/bash
|
| 2 |
+
|
| 3 |
+
# Define the source directory
|
| 4 |
+
source_directory="$(pwd)/data"
|
| 5 |
+
|
| 6 |
+
# Define the base directory for models
|
| 7 |
+
base_directory="../models"
|
| 8 |
+
|
| 9 |
+
# Ensure directories exist
|
| 10 |
+
mkdir -p "$base_directory/clip_vision"
|
| 11 |
+
mkdir -p "$base_directory/controlnet"
|
| 12 |
+
mkdir -p "$base_directory/animatediff_models"
|
| 13 |
+
mkdir -p "$base_directory/upscale_models"
|
| 14 |
+
mkdir -p "$base_directory/ipadadapter"
|
| 15 |
+
mkdir -p "$base_directory/checkpoints"
|
| 16 |
+
mkdir -p "$base_directory/vae"
|
| 17 |
+
mkdir -p "$base_directory/loras"
|
| 18 |
+
mkdir -p "$base_directory/animatediff_motion_lora"
|
| 19 |
+
|
| 20 |
+
# Copy files to their respective directories
|
| 21 |
+
mv "$source_directory/ip-adapter_image_encoder_sd15.safetensors" "$base_directory/clip_vision"
|
| 22 |
+
mv "$source_directory/motion_controlnet_checkpoint.ckpt" "$base_directory/controlnet"
|
| 23 |
+
mv "$source_directory/AnimateLCM_sd15_t2v.ckpt" "$base_directory/animatediff_models"
|
| 24 |
+
mv "$source_directory/4xLexicaDAT2_otf.pth" "$base_directory/upscale_models"
|
| 25 |
+
mv "$source_directory/ip-adapter-plus_sd15.safetensors" "$base_directory/ipadadapter"
|
| 26 |
+
mv "$source_directory/photonLCM_v10.safetensors" "$base_directory/checkpoints"
|
| 27 |
+
mv "$source_directory/vae-ft-mse-840000-ema-pruned.safetensors" "$base_directory/vae"
|
| 28 |
+
mv "$source_directory/lcm_lora_sd15.safetensors" "$base_directory/loras"
|
| 29 |
+
mv "$source_directory/WAS26.safetensors" "$base_directory/animatediff_motion_lora"
|
distribute_models_wget.sh
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/bash
|
| 2 |
+
|
| 3 |
+
# Define the base directory for models
|
| 4 |
+
base_directory="../models"
|
| 5 |
+
|
| 6 |
+
# Ensure directories exist
|
| 7 |
+
mkdir -p "$base_directory/clip_vision"
|
| 8 |
+
mkdir -p "$base_directory/controlnet"
|
| 9 |
+
mkdir -p "$base_directory/animatediff_models"
|
| 10 |
+
mkdir -p "$base_directory/upscale_models"
|
| 11 |
+
mkdir -p "$base_directory/ipadadapter"
|
| 12 |
+
mkdir -p "$base_directory/checkpoints"
|
| 13 |
+
mkdir -p "$base_directory/vae"
|
| 14 |
+
mkdir -p "$base_directory/loras"
|
| 15 |
+
mkdir -p "$base_directory/animatediff_motion_lora"
|
| 16 |
+
|
| 17 |
+
# Download files to their respective directories
|
| 18 |
+
wget -P "$base_directory/clip_vision" "https://huggingface.co/datasets/nilor-corp/nilor-upscale/resolve/main/data/ip-adapter_image_encoder_sd15.safetensors"
|
| 19 |
+
wget -P "$base_directory/controlnet" "https://huggingface.co/datasets/nilor-corp/nilor-upscale/resolve/main/data/motion_controlnet_checkpoint.ckpt"
|
| 20 |
+
wget -P "$base_directory/animatediff_models" "https://huggingface.co/datasets/nilor-corp/nilor-upscale/resolve/main/data/AnimateLCM_sd15_t2v.ckpt"
|
| 21 |
+
wget -P "$base_directory/upscale_models" "https://huggingface.co/datasets/nilor-corp/nilor-upscale/resolve/main/data/4xLexicaDAT2_otf.pth"
|
| 22 |
+
wget -P "$base_directory/ipadadapter" "https://huggingface.co/datasets/nilor-corp/nilor-upscale/resolve/main/data/ip-adapter-plus_sd15.safetensors"
|
| 23 |
+
wget -P "$base_directory/checkpoints" "https://huggingface.co/datasets/nilor-corp/nilor-upscale/resolve/main/data/photonLCM_v10.safetensors"
|
| 24 |
+
wget -P "$base_directory/vae" "https://huggingface.co/datasets/nilor-corp/nilor-upscale/resolve/main/data/vae-ft-mse-840000-ema-pruned.safetensors"
|
| 25 |
+
wget -P "$base_directory/loras" "https://huggingface.co/datasets/nilor-corp/nilor-upscale/resolve/main/data/lcm_lora_sd15.safetensors"
|
| 26 |
+
wget -P "$base_directory/animatediff_motion_lora" "https://huggingface.co/datasets/nilor-corp/nilor-upscale/resolve/main/data/WAS26.safetensors"
|