Merge pull request #500 from THUDM/main

Merge
This commit is contained in:
Yuxuan.Zhang 2024-11-13 21:15:49 +08:00 committed by GitHub
commit 5e3e3aabe0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 5 additions and 4 deletions

View File

@ -189,7 +189,7 @@ models we currently offer, along with their foundational information.
<tr> <tr>
<td style="text-align: center;">Video Resolution</td> <td style="text-align: center;">Video Resolution</td>
<td colspan="1" style="text-align: center;">1360 * 768</td> <td colspan="1" style="text-align: center;">1360 * 768</td>
<td colspan="1" style="text-align: center;">256 <= W <=1360<br> 256 <= H <=768<br> W,H % 16 == 0</td> <td colspan="1" style="text-align: center;"> Min(W, H) = 768 <br> 768 ≤ Max(W, H) ≤ 1360 <br> Max(W, H) % 16 = 0 </td>
<td colspan="3" style="text-align: center;">720 * 480</td> <td colspan="3" style="text-align: center;">720 * 480</td>
</tr> </tr>
<tr> <tr>

View File

@ -181,7 +181,7 @@ CogVideoXは、[清影](https://chatglm.cn/video?fr=osm_cogvideox) と同源の
<tr> <tr>
<td style="text-align: center;">ビデオ解像度</td> <td style="text-align: center;">ビデオ解像度</td>
<td colspan="1" style="text-align: center;">1360 * 768</td> <td colspan="1" style="text-align: center;">1360 * 768</td>
<td colspan="1" style="text-align: center;">256 <= W <=1360<br> 256 <= H <=768<br> W,H % 16 == 0</td> <td colspan="1" style="text-align: center;"> Min(W, H) = 768 <br> 768 ≤ Max(W, H) ≤ 1360 <br> Max(W, H) % 16 = 0 </td>
<td colspan="3" style="text-align: center;">720 * 480</td> <td colspan="3" style="text-align: center;">720 * 480</td>
</tr> </tr>
<tr> <tr>

View File

@ -171,7 +171,7 @@ CogVideoX是 [清影](https://chatglm.cn/video?fr=osm_cogvideox) 同源的开源
<tr> <tr>
<td style="text-align: center;">视频分辨率</td> <td style="text-align: center;">视频分辨率</td>
<td colspan="1" style="text-align: center;">1360 * 768</td> <td colspan="1" style="text-align: center;">1360 * 768</td>
<td colspan="1" style="text-align: center;">256 <= W <=1360<br> 256 <= H <=768<br> W,H % 16 == 0</td> <td colspan="1" style="text-align: center;"> Min(W, H) = 768 <br> 768 ≤ Max(W, H) ≤ 1360 <br> Max(W, H) % 16 = 0 </td>
<td colspan="3" style="text-align: center;">720 * 480</td> <td colspan="3" style="text-align: center;">720 * 480</td>
</tr> </tr>
<tr> <tr>

View File

@ -78,8 +78,9 @@ def main():
num_frames=input_config.num_frames, num_frames=input_config.num_frames,
prompt=input_config.prompt, prompt=input_config.prompt,
num_inference_steps=input_config.num_inference_steps, num_inference_steps=input_config.num_inference_steps,
generator=torch.Generator(device="cuda").manual_seed(input_config.seed), generator=torch.Generator().manual_seed(input_config.seed),
guidance_scale=6, guidance_scale=6,
use_dynamic_cfg=True,
).frames[0] ).frames[0]
end_time = time.time() end_time = time.time()