numz commited on
Commit
5f12e71
Β·
verified Β·
1 Parent(s): c63245c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +24 -18
README.md CHANGED
@@ -5,10 +5,11 @@ base_model:
5
  - ByteDance-Seed/SeedVR2-7B
6
  ---
7
  # ComfyUI-SeedVR2_VideoUpscaler
 
8
 
9
  [![View Code](https://img.shields.io/badge/πŸ“‚_View_Code-GitHub-181717?style=for-the-badge&logo=github)](https://github.com/numz/ComfyUI-SeedVR2_VideoUpscaler)
10
 
11
- A Non official custom nodes for ComfyUI that enables Upscale Video/Images generation using [SeedVR2](https://github.com/ByteDance-Seed/SeedVR).
12
 
13
  <img src="docs/demo_01.jpg">
14
  <img src="docs/demo_02.jpg">
@@ -64,12 +65,17 @@ load venv and :
64
  pip install -r ComfyUI-SeedVR2_VideoUpscaler/requirements.txt
65
  ```
66
 
67
- install flash_attn if it ask for it
68
 
69
  ```bash
70
- pip install -r flash_attn
 
71
  ```
72
 
 
 
 
 
73
  Or use python_embeded :
74
 
75
  ```bash
@@ -110,21 +116,21 @@ python_embeded\python.exe -m pip install -r flash_attn
110
 
111
  **NVIDIA H100 93GB VRAM** (values in parentheses are from the previous benchmark):
112
 
113
- | Images | Resolution | Batch Size | Time fp8 (s) | FPS fp8 | Time fp16 (s) | FPS fp16 |
114
- | ------ | ------------------- | ---------- | ---------------- | ----------- | ---------------- | ----------- |
115
- | 3 | 512Γ—768 β†’ 1080Γ—1620 | 1 | 10.18 (58.10) | 0.29 (0.05) | 10.67 (60.13) | 0.28 (0.05) |
116
- | 15 | 512Γ—768 β†’ 1080Γ—1620 | 5 | 26.71 (135.63) | 0.56 (0.11) | 27.75 (144.18) | 0.54 (0.10) |
117
- | 27 | 512Γ—768 β†’ 1080Γ—1620 | 9 | 33.97 (163.22) | 0.79 (0.17) | 35.08 (177.61) | 0.77 (0.15) |
118
- | 39 | 512Γ—768 β†’ 1080Γ—1620 | 13 | 41.01 (189.36) | 0.95 (0.21) | 42.08 (210.11) | 0.93 (0.19) |
119
- | 51 | 512Γ—768 β†’ 1080Γ—1620 | 17 | 48.12 (215.80) | 1.06 (0.24) | 49.44 (242.64) | 1.03 (0.21) |
120
- | 63 | 512Γ—768 β†’ 1080Γ—1620 | 21 | 55.40 (241.79) | 1.14 (0.26) | 56.70 (275.55) | 1.11 (0.23) |
121
- | 75 | 512Γ—768 β†’ 1080Γ—1620 | 25 | 62.60 (267.93) | 1.20 (0.28) | 63.80 (308.51) | 1.18 (0.24) |
122
- | 123 | 512Γ—768 β†’ 1080Γ—1620 | 41 | 91.38 (373.60) | 1.35 (0.33) | 92.90 (440.01) | 1.32 (0.28) |
123
- | 243 | 512Γ—768 β†’ 1080Γ—1620 | 81 | 164.25 (642.20) | 1.48 (0.38) | 166.09 (780.20) | 1.46 (0.31) |
124
- | 363 | 512Γ—768 β†’ 1080Γ—1620 | 121 | 238.18 (913.61) | 1.52 (0.40) | 239.80 (1114.32) | 1.51 (0.33) |
125
- | 453 | 512Γ—768 β†’ 1080Γ—1620 | 151 | 296.52 (1132.01) | 1.53 (0.40) | 298.65 (1384.86) | 1.52 (0.33) |
126
- | 633 | 512Γ—768 β†’ 1080Γ—1620 | 211 | 406.65 (1541.09) | 1.56 (0.41) | 409.44 (1887.62) | 1.55 (0.34) |
127
- | 903 | 512Γ—768 β†’ 1080Γ—1620 | 301 | OOM (OOM) | OOM (OOM) | OOM (OOM) | OOM (OOM) |
128
 
129
  **NVIDIA RTX4090 24GB VRAM** (preserved_vram=off)
130
  | Model | Images | Resolution | Batch Size | Time (seconds) | FPS | Note |
 
5
  - ByteDance-Seed/SeedVR2-7B
6
  ---
7
  # ComfyUI-SeedVR2_VideoUpscaler
8
+ # ComfyUI-SeedVR2_VideoUpscaler
9
 
10
  [![View Code](https://img.shields.io/badge/πŸ“‚_View_Code-GitHub-181717?style=for-the-badge&logo=github)](https://github.com/numz/ComfyUI-SeedVR2_VideoUpscaler)
11
 
12
+ Official release of [SeedVR2](https://github.com/ByteDance-Seed/SeedVR) for ComfyUI that enables Upscale Video/Images generation.
13
 
14
  <img src="docs/demo_01.jpg">
15
  <img src="docs/demo_02.jpg">
 
65
  pip install -r ComfyUI-SeedVR2_VideoUpscaler/requirements.txt
66
  ```
67
 
68
+ install flash_attn or triton if it ask for it
69
 
70
  ```bash
71
+ pip install flash_attn
72
+ pip install triton
73
  ```
74
 
75
+ or from https://github.com/loscrossos/lib_flashattention/releases
76
+ and
77
+ https://github.com/woct0rdho/triton-windows
78
+
79
  Or use python_embeded :
80
 
81
  ```bash
 
116
 
117
  **NVIDIA H100 93GB VRAM** (values in parentheses are from the previous benchmark):
118
 
119
+ | nb frames | Resolution | Batch Size | Time fp8 (s) | FPS fp8 | Time fp16 (s) | FPS fp16 |
120
+ | --------- | ------------------- | ---------- | ---------------- | ----------- | ---------------- | ----------- |
121
+ | 3 | 512Γ—768 β†’ 1080Γ—1620 | 1 | 10.18 (58.10) | 0.29 (0.05) | 10.67 (60.13) | 0.28 (0.05) |
122
+ | 15 | 512Γ—768 β†’ 1080Γ—1620 | 5 | 26.71 (135.63) | 0.56 (0.11) | 27.75 (144.18) | 0.54 (0.10) |
123
+ | 27 | 512Γ—768 β†’ 1080Γ—1620 | 9 | 33.97 (163.22) | 0.79 (0.17) | 35.08 (177.61) | 0.77 (0.15) |
124
+ | 39 | 512Γ—768 β†’ 1080Γ—1620 | 13 | 41.01 (189.36) | 0.95 (0.21) | 42.08 (210.11) | 0.93 (0.19) |
125
+ | 51 | 512Γ—768 β†’ 1080Γ—1620 | 17 | 48.12 (215.80) | 1.06 (0.24) | 49.44 (242.64) | 1.03 (0.21) |
126
+ | 63 | 512Γ—768 β†’ 1080Γ—1620 | 21 | 55.40 (241.79) | 1.14 (0.26) | 56.70 (275.55) | 1.11 (0.23) |
127
+ | 75 | 512Γ—768 β†’ 1080Γ—1620 | 25 | 62.60 (267.93) | 1.20 (0.28) | 63.80 (308.51) | 1.18 (0.24) |
128
+ | 123 | 512Γ—768 β†’ 1080Γ—1620 | 41 | 91.38 (373.60) | 1.35 (0.33) | 92.90 (440.01) | 1.32 (0.28) |
129
+ | 243 | 512Γ—768 β†’ 1080Γ—1620 | 81 | 164.25 (642.20) | 1.48 (0.38) | 166.09 (780.20) | 1.46 (0.31) |
130
+ | 363 | 512Γ—768 β†’ 1080Γ—1620 | 121 | 238.18 (913.61) | 1.52 (0.40) | 239.80 (1114.32) | 1.51 (0.33) |
131
+ | 453 | 512Γ—768 β†’ 1080Γ—1620 | 151 | 296.52 (1132.01) | 1.53 (0.40) | 298.65 (1384.86) | 1.52 (0.33) |
132
+ | 633 | 512Γ—768 β†’ 1080Γ—1620 | 211 | 406.65 (1541.09) | 1.56 (0.41) | 409.44 (1887.62) | 1.55 (0.34) |
133
+ | 903 | 512Γ—768 β†’ 1080Γ—1620 | 301 | OOM (OOM) | OOM (OOM) | OOM (OOM) | OOM (OOM) |
134
 
135
  **NVIDIA RTX4090 24GB VRAM** (preserved_vram=off)
136
  | Model | Images | Resolution | Batch Size | Time (seconds) | FPS | Note |