jaahas commited on
Commit
c46e562
·
verified ·
1 Parent(s): 5f96326

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +72 -2
README.md CHANGED
@@ -4,6 +4,76 @@ tags:
4
  - video
5
  ---
6
 
7
- All of the necessary models to run [tarmomatic](https://codeberg.org/jaahas/tarmomatic) local edition with ComfyUI.
8
  You also need [ComfyUI-GGUF custom nodes](https://github.com/city96/ComfyUI-GGUF).
9
- Place all of the models in their respective folders in the ComfyUI `models`-folder.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  - video
5
  ---
6
 
7
+ All of the necessary models to run **[tarmomatic](https://codeberg.org/jaahas/tarmomatic)** local edition with ComfyUI.
8
  You also need [ComfyUI-GGUF custom nodes](https://github.com/city96/ComfyUI-GGUF).
9
+ Place all of the models in their respective folders in the ComfyUI `models`-folder.
10
+
11
+
12
+ ## All Models List
13
+
14
+ | Model Filename | Required ComfyUI Folder | Used In |
15
+ |---|---|---|
16
+ | `flux1-schnell-fp8.safetensors` | `models/checkpoints` | Flux |
17
+ | `flux1-schnell-Q4_K_M.gguf` | `models/unet` | Flux |
18
+ | `qwen_2.5_vl_7b_fp8_scaled.safetensors` | `models/clip` | Qwen Image Edit |
19
+ | `qwen_image_vae.safetensors` | `models/vae` | Qwen Image Edit |
20
+ | `Qwen-Image-Edit-2509-Lightning-4steps-V1.0-bf16.safetensors` | `models/loras` | Qwen Image Edit |
21
+ | `Qwen-Image-Edit-2509-Q4_K_M.gguf` | `models/unet` | Qwen Image Edit |
22
+ | `t5xxl_fp8_e4m3fn_scaled.safetensors` | `models/clip` | LTX Video |
23
+ | `ltxv-2b-0.9.8-distilled-fp8.safetensors` | `models/checkpoints` | LTX Video |
24
+ | `umt5_xxl_fp8_e4m3fn_scaled.safetensors` | `models/clip` | Wan Video |
25
+ | `wan2.2_vae.safetensors` | `models/vae` | Wan Video |
26
+ | `Wan2.2-TI2V-5B-Q5_K_M.gguf` | `models/unet` | Wan Video |
27
+
28
+ ---
29
+
30
+ ## Flux Models
31
+ Used for general image generation (Workflow: `flux_schnell-GGUF.json`).
32
+
33
+ - **`flux1-schnell-fp8.safetensors`**
34
+ - Folder: `models/checkpoints`
35
+ - **Note:** This provides the CLIP (Text Encoder) and VAE for the workflow.
36
+ - **`flux1-schnell-Q4_K_M.gguf`**
37
+ - Folder: `models/unet`
38
+ - **Note:** This provides the actual diffusion model (UNet) in a compressed (quantized) format for better performance.
39
+
40
+ ## Qwen Image Models
41
+ Used for image editing and synthesis (Workflows: `image_qwen_image_edit_2509-GGUF-*.json`).
42
+
43
+ - **`qwen_2.5_vl_7b_fp8_scaled.safetensors`**
44
+ - Folder: `models/clip`
45
+ - **`qwen_image_vae.safetensors`**
46
+ - Folder: `models/vae`
47
+ - **`Qwen-Image-Edit-2509-Lightning-4steps-V1.0-bf16.safetensors`**
48
+ - Folder: `models/loras`
49
+ - **`Qwen-Image-Edit-2509-Q4_K_M.gguf`**
50
+ - Folder: `models/unet`
51
+
52
+ ## LTX Models
53
+ Used for image-to-video generation (Workflow: `ltxv_image_to_video.json`).
54
+
55
+ - **`t5xxl_fp8_e4m3fn_scaled.safetensors`**
56
+ - Folder: `models/clip`
57
+ - **`ltxv-2b-0.9.8-distilled-fp8.safetensors`**
58
+ - Folder: `models/checkpoints`
59
+
60
+ ## Wan Models
61
+ Used for video generation (Workflow: `video_wan2_2_5B_ti2v-GGUF.json`).
62
+
63
+ - **`umt5_xxl_fp8_e4m3fn_scaled.safetensors`**
64
+ - Folder: `models/clip`
65
+ - **Note:** This is a Multilingual T5 encoder, different from the standard T5.
66
+ - **`wan2.2_vae.safetensors`**
67
+ - Folder: `models/vae`
68
+ - **`Wan2.2-TI2V-5B-Q5_K_M.gguf`**
69
+ - Folder: `models/unet`
70
+
71
+ ---
72
+
73
+ ## FAQ
74
+
75
+ ### Why does Flux need both a GGUF and a Checkpoint?
76
+ The workflow uses a "hybrid" loading strategy:
77
+ 1. **Checkpoint (`flux1-schnell-fp8.safetensors`):** Loads the **CLIP** (text understanding) and **VAE** (image decoding) components.
78
+ 2. **GGUF (`flux1-schnell-Q4_K_M.gguf`):** Loads the **UNet** (image generation core).
79
+ This setup allows you to use a highly compressed, fast UNet (GGUF) while still getting the necessary support components from the standard checkpoint.