feat: add SD 1.5 model and update AnimateDiff workflow
Changes: - Added Stable Diffusion v1.5 model to comfyui_models.yaml - Required for AnimateDiff motion modules (mm_sd_v15_v2.ckpt) - Size: 4GB, VRAM: 8GB - Updated AnimateDiff workflow to use SD 1.5 instead of SDXL - Changed checkpoint from sd_xl_base_1.0.safetensors to v1-5-pruned-emaonly.safetensors - Updated VRAM requirement from 18GB to 12GB - Updated model requirements in metadata AnimateDiff v15 motion modules are not compatible with SDXL. This resolves: "Motion module 'mm_sd_v15_v2.ckpt' is intended for SD1.5 models" 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -53,6 +53,19 @@ model_categories:
|
|||||||
- source: "flux1-dev.safetensors"
|
- source: "flux1-dev.safetensors"
|
||||||
dest: "flux1-dev.safetensors"
|
dest: "flux1-dev.safetensors"
|
||||||
|
|
||||||
|
- repo_id: runwayml/stable-diffusion-v1-5
|
||||||
|
description: SD 1.5 - For AnimateDiff
|
||||||
|
size_gb: 4
|
||||||
|
essential: true
|
||||||
|
category: image
|
||||||
|
type: checkpoints
|
||||||
|
format: fp16
|
||||||
|
vram_gb: 8
|
||||||
|
notes: Stable Diffusion 1.5 required for AnimateDiff motion modules
|
||||||
|
files:
|
||||||
|
- source: "v1-5-pruned-emaonly.safetensors"
|
||||||
|
dest: "v1-5-pruned-emaonly.safetensors"
|
||||||
|
|
||||||
- repo_id: stabilityai/stable-diffusion-xl-base-1.0
|
- repo_id: stabilityai/stable-diffusion-xl-base-1.0
|
||||||
description: SDXL Base 1.0 - Industry standard
|
description: SDXL Base 1.0 - Industry standard
|
||||||
size_gb: 7
|
size_gb: 7
|
||||||
|
|||||||
@@ -11,8 +11,8 @@
|
|||||||
"order": 0,
|
"order": 0,
|
||||||
"mode": 0,
|
"mode": 0,
|
||||||
"properties": {"Node name for S&R": "CheckpointLoaderSimple"},
|
"properties": {"Node name for S&R": "CheckpointLoaderSimple"},
|
||||||
"widgets_values": ["sd_xl_base_1.0.safetensors"],
|
"widgets_values": ["v1-5-pruned-emaonly.safetensors"],
|
||||||
"title": "SDXL Checkpoint Loader",
|
"title": "SD 1.5 Checkpoint Loader",
|
||||||
"outputs": [
|
"outputs": [
|
||||||
{"name": "MODEL", "type": "MODEL", "links": [1], "slot_index": 0},
|
{"name": "MODEL", "type": "MODEL", "links": [1], "slot_index": 0},
|
||||||
{"name": "CLIP", "type": "CLIP", "links": [2, 3], "slot_index": 1},
|
{"name": "CLIP", "type": "CLIP", "links": [2, 3], "slot_index": 1},
|
||||||
@@ -203,14 +203,14 @@
|
|||||||
],
|
],
|
||||||
"requirements": {
|
"requirements": {
|
||||||
"models": [
|
"models": [
|
||||||
"stable-diffusion-xl-base-1.0",
|
"stable-diffusion-v1-5",
|
||||||
"animatediff-motion-module"
|
"animatediff-motion-module-v15"
|
||||||
],
|
],
|
||||||
"custom_nodes": [
|
"custom_nodes": [
|
||||||
"ComfyUI-AnimateDiff-Evolved",
|
"ComfyUI-AnimateDiff-Evolved",
|
||||||
"ComfyUI-VideoHelperSuite"
|
"ComfyUI-VideoHelperSuite"
|
||||||
],
|
],
|
||||||
"vram_min": "18GB"
|
"vram_min": "12GB"
|
||||||
},
|
},
|
||||||
"parameters": {
|
"parameters": {
|
||||||
"prompt": {
|
"prompt": {
|
||||||
|
|||||||
Reference in New Issue
Block a user