mehdiPrunaAI commited on
Commit
287f858
·
verified ·
1 Parent(s): 791c905

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +43 -13
README.md CHANGED
@@ -127,19 +127,49 @@ pipeline and the
127
  [`distilled`](https://github.com/Lightricks/LTX-2/blob/main/packages/ltx-pipelines/src/ltx_pipelines/distilled.py)
128
  pipeline (recommended). (~4 s @ 24 fps)
129
 
130
- | Setting | Value |
131
- |---|---|
132
- | Model | PrunaVAED |
133
- | Precision | `bfloat16` |
134
- | Batch size | 1 |
135
- | Device | NVIDIA H100 80GB |
136
- | Decode | Full (no tiling / rolling / `torch.compile`) |
137
-
138
- | Latent set | Clips | PSNR ↑ | LPIPS ↓ | SSIM ↑ | Δ-frame PSNR ↑ |
139
- |---|---:|---:|---:|---:|---:|
140
- | Distilled two-stage · 720p | 200 | **37.87** | **0.0108** | **0.9898** | **37.28** |
141
- | TI2Vid two-stage · 720p | 200 | **38.86** | **0.0123** | **0.9803** | **38.98** |
142
- | Distilled two-stage · 1080p | 200 | **39.59** | **0.0067** | **0.9927** | **39.37** |
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
143
 
144
  **Δ-frame PSNR** is PSNR on consecutive-frame
145
  differences (temporal consistency).
 
127
  [`distilled`](https://github.com/Lightricks/LTX-2/blob/main/packages/ltx-pipelines/src/ltx_pipelines/distilled.py)
128
  pipeline (recommended). (~4 s @ 24 fps)
129
 
130
+ <table style="width:100%">
131
+ <tr><th>Setting</th><th>Value</th></tr>
132
+ <tr><td>Model</td><td>PrunaVAED</td></tr>
133
+ <tr><td>Precision</td><td><code>bfloat16</code></td></tr>
134
+ <tr><td>Batch size</td><td>1</td></tr>
135
+ <tr><td>Device</td><td>NVIDIA H100 80GB</td></tr>
136
+ <tr><td>Decode</td><td>Full (no tiling / rolling / <code>torch.compile</code>)</td></tr>
137
+ </table>
138
+
139
+ <table style="width:100%">
140
+ <tr>
141
+ <th>Clip length</th><th>LTX-2.3 VAED</th><th>PrunaVAED</th><th>Speedup</th>
142
+ </tr>
143
+ <tr>
144
+ <td>5 s @ 720p</td><td align="right">841.3 ms</td><td align="right">500.2 ms</td><td align="right"><strong>1.68×</strong></td>
145
+ </tr>
146
+ <tr>
147
+ <td>10 s @ 720p</td><td align="right">1670.7 ms</td><td align="right">998.0 ms</td><td align="right"><strong>1.67×</strong></td>
148
+ </tr>
149
+ <tr>
150
+ <td>5 s @ 1080p</td><td align="right">1959.3 ms</td><td align="right">1152.1 ms</td><td align="right"><strong>1.7×</strong></td>
151
+ </tr>
152
+ <tr>
153
+ <td>10 s @ 1080p</td><td align="right">4903 ms*</td><td align="right">2356 ms</td><td align="right"><strong>2.08×</strong></td>
154
+ </tr>
155
+ </table>
156
+
157
+ \* Tiling required on H100; 14533ms otherwise
158
+
159
+ <table style="width:100%">
160
+ <tr>
161
+ <th>Latent set</th><th>Clips</th><th>PSNR ↑</th><th>LPIPS ↓</th><th>SSIM ↑</th><th>Δ-frame PSNR ↑</th>
162
+ </tr>
163
+ <tr>
164
+ <td>Distilled two-stage · 720p</td><td align="right">200</td><td align="right"><strong>37.87</strong></td><td align="right"><strong>0.0108</strong></td><td align="right"><strong>0.9898</strong></td><td align="right"><strong>37.28</strong></td>
165
+ </tr>
166
+ <tr>
167
+ <td>TI2Vid two-stage · 720p</td><td align="right">200</td><td align="right"><strong>38.86</strong></td><td align="right"><strong>0.0123</strong></td><td align="right"><strong>0.9803</strong></td><td align="right"><strong>38.98</strong></td>
168
+ </tr>
169
+ <tr>
170
+ <td>Distilled two-stage · 1080p</td><td align="right">200</td><td align="right"><strong>39.59</strong></td><td align="right"><strong>0.0067</strong></td><td align="right"><strong>0.9927</strong></td><td align="right"><strong>39.37</strong></td>
171
+ </tr>
172
+ </table>
173
 
174
  **Δ-frame PSNR** is PSNR on consecutive-frame
175
  differences (temporal consistency).