neil1145 commited on
Commit
7fa9a26
Β·
verified Β·
1 Parent(s): bfa60cc

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +90 -0
README.md ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ tags:
4
+ - shadowforge
5
+ - comfyui
6
+ - flux
7
+ - wan
8
+ - horror
9
+ - video-generation
10
+ - image-generation
11
+ ---
12
+
13
+ # ShadowForge Models
14
+
15
+ Pre-packaged model weights for [ShadowForge](https://github.com/neil1145/ShadowForge) β€” an AI horror content generation pipeline.
16
+
17
+ All models are selected, quantized, and tested for **16GB VRAM** GPUs (RTX 4060 Ti 16GB, RTX 5060 Ti, etc.).
18
+
19
+ ## Models Included
20
+
21
+ ### Image Generation (Flux.1 Dev)
22
+ | File | Size | Description |
23
+ |------|------|-------------|
24
+ | `diffusion_models/flux1-dev-Q5_0.gguf` | ~7.8 GB | Flux.1 Dev UNET, GGUF Q5 quantized |
25
+ | `text_encoders/clip_l.safetensors` | ~235 MB | CLIP-L text encoder |
26
+ | `text_encoders/t5xxl_fp8_e4m3fn.safetensors` | ~4.6 GB | T5-XXL text encoder, fp8 |
27
+ | `vae/ae.safetensors` | ~320 MB | Flux autoencoder |
28
+
29
+ ### Video Generation (Wan 2.1 I2V)
30
+ | File | Size | Description |
31
+ |------|------|-------------|
32
+ | `diffusion_models/wan2.1_i2v_480p_14B_fp8_e4m3fn.safetensors` | ~16 GB | Wan 2.1 I2V 14B, fp8 |
33
+ | `text_encoders/umt5_xxl_fp8_e4m3fn_scaled.safetensors` | ~6.3 GB | UMT5-XXL encoder, fp8 |
34
+ | `clip_vision/clip_vision_h.safetensors` | ~1.2 GB | CLIP Vision H encoder |
35
+ | `vae/wan_2.1_vae.safetensors` | ~243 MB | Wan 2.1 video VAE |
36
+
37
+ **Total: ~37 GB**
38
+
39
+ ## Quick Download
40
+
41
+ ```bash
42
+ # Clone ShadowForge and download all models
43
+ git clone https://github.com/neil1145/ShadowForge.git
44
+ cd ShadowForge
45
+ pip install -r requirements.txt
46
+ python scripts/download_models.py --models-dir /path/to/comfyui/models
47
+ ```
48
+
49
+ Or download individual files:
50
+ ```bash
51
+ pip install huggingface_hub
52
+ huggingface-cli download neil1145/ShadowForge-models --local-dir /path/to/comfyui/models
53
+ ```
54
+
55
+ ## Directory Structure
56
+
57
+ Files should be placed in your ComfyUI models directory:
58
+ ```
59
+ models/
60
+ β”œβ”€β”€ clip_vision/
61
+ β”‚ └── clip_vision_h.safetensors
62
+ β”œβ”€β”€ diffusion_models/
63
+ β”‚ β”œβ”€β”€ flux1-dev-Q5_0.gguf
64
+ β”‚ └── wan2.1_i2v_480p_14B_fp8_e4m3fn.safetensors
65
+ β”œβ”€β”€ text_encoders/
66
+ β”‚ β”œβ”€β”€ clip_l.safetensors
67
+ β”‚ β”œβ”€β”€ t5xxl_fp8_e4m3fn.safetensors
68
+ β”‚ └── umt5_xxl_fp8_e4m3fn_scaled.safetensors
69
+ └── vae/
70
+ β”œβ”€β”€ ae.safetensors
71
+ └── wan_2.1_vae.safetensors
72
+ ```
73
+
74
+ ## VRAM Requirements
75
+
76
+ These models are designed to run **one at a time** on 16GB VRAM:
77
+
78
+ - **Flux image generation:** ~10 GB peak VRAM
79
+ - **Wan video generation:** ~14 GB peak VRAM
80
+
81
+ ShadowForge's VRAMManager handles automatic model swapping β€” it evicts the current model before loading the next one.
82
+
83
+ ## License
84
+
85
+ Individual models retain their original licenses:
86
+ - Flux.1 Dev: [FLUX.1-dev Non-Commercial License](https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md)
87
+ - Wan 2.1: [Apache 2.0](https://huggingface.co/Wan-AI/Wan2.1-I2V-14B-480P)
88
+ - CLIP/T5 encoders: Various open licenses
89
+
90
+ This repo is a convenience bundle. Check individual model pages for license details.